:root {
    --ink: #0b0c0d;
    --ink-soft: #121416;
    --panel: #181a1c;
    --paper: #f2efe8;
    --muted: #aaa9a4;
    --gold: #c8a96b;
    --gold-light: #e6d4aa;
    --line: rgba(255, 255, 255, 0.12);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { background: var(--ink); color: var(--paper); font-family: var(--sans); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }

.header { position: fixed; inset: 0 0 auto; z-index: 50; height: 92px; border-bottom: 1px solid transparent; transition: .35s ease; }
.header.active { height: 76px; background: rgba(11, 12, 13, .88); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 40px; }
.logo { position: relative; z-index: 2; width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(200, 169, 107, .45); transition: .35s ease; }
.logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.header.active .logo { width: 58px; height: 58px; }
.menu { justify-self: center; display: flex; align-items: center; gap: 36px; }
.menu a { position: relative; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold); transition: right .3s ease; }
.menu a:hover::after, .menu a:focus-visible::after { right: 0; }
.btn-header { display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border: 1px solid rgba(200,169,107,.65); color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: .05em; transition: .3s ease; }
.btn-header i { font-size: 10px; }
.btn-header:hover { background: var(--gold); color: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }

.hero { min-height: 820px; height: 100svh; position: relative; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -3; background: url("../img/hero/porsche.jpg") center 58% / cover no-repeat; filter: saturate(.48) contrast(1.22) brightness(.48); transform: scale(1.04); animation: heroZoom 1.8s var(--ease) forwards; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(8,9,10,.96) 0%, rgba(8,9,10,.78) 43%, rgba(8,9,10,.16) 78%), linear-gradient(0deg, rgba(8,9,10,.86) 0%, transparent 40%, rgba(8,9,10,.3) 100%); }
.hero-line { position: absolute; width: 1px; height: 58%; top: 24%; left: max(24px, calc((100vw - 1180px) / 2 - 42px)); background: linear-gradient(transparent, rgba(200,169,107,.8), transparent); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 720px) 1fr; gap: 80px; align-items: end; padding-top: 90px; }
.hero-content { animation: revealUp 1s .15s var(--ease) both; }
.eyebrow, .section-kicker { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 25px; }
.eyebrow span { width: 38px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 680px; font-family: var(--serif); font-size: clamp(66px, 7.2vw, 108px); font-weight: 500; line-height: .82; letter-spacing: -.045em; }
.hero h1 em, h2 em { color: var(--gold-light); font-weight: 500; }
.hero-content > p { max-width: 585px; margin-top: 30px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.75; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 27px; border: 1px solid transparent; font-size: 12px; font-weight: 700; letter-spacing: .05em; transition: .3s ease; }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); transform: translateY(-3px); }
.button-ghost { border-color: rgba(255,255,255,.28); }
.button-ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.06); }
.hero-proof { display: flex; gap: 34px; margin-top: 58px; }
.hero-proof div { display: flex; align-items: center; gap: 12px; padding-right: 32px; border-right: 1px solid var(--line); }
.hero-proof div:last-child { border: 0; }
.hero-proof strong { color: var(--gold); font-family: var(--serif); font-size: 28px; font-weight: 500; }
.hero-proof span { color: rgba(255,255,255,.57); font-size: 10px; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }
.hero-note { max-width: 220px; justify-self: end; margin-bottom: 95px; padding: 22px 0 0 22px; border-top: 1px solid var(--gold); border-left: 1px solid rgba(200,169,107,.35); animation: revealUp 1s .45s var(--ease) both; }
.hero-note span { color: var(--gold); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.hero-note p { margin-top: 12px; font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.scroll-hint { position: absolute; left: 50%; bottom: 30px; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; animation: float 2s ease-in-out infinite; }

.about { background: var(--paper); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 125px); align-items: center; }
.about-visual { position: relative; padding: 0 0 38px 38px; }
.about-visual::before { content: ""; position: absolute; inset: 38px 38px 0 0; border: 1px solid rgba(11,12,13,.16); }
.about-visual img { position: relative; width: 100%; aspect-ratio: .83; object-fit: cover; filter: saturate(.7) contrast(1.05); }
.about-seal { position: absolute; right: -34px; bottom: 0; width: 140px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--ink); color: var(--paper); border-radius: 50%; box-shadow: 0 20px 40px rgba(0,0,0,.18); }
.about-seal strong { color: var(--gold); font-family: var(--serif); font-size: 35px; }
.about-seal span { font-size: 8px; line-height: 1.6; letter-spacing: .13em; text-transform: uppercase; }
.about-content h2, .section-heading h2 { margin-top: 16px; font-family: var(--serif); font-size: clamp(52px, 5.8vw, 78px); font-weight: 500; line-height: .95; letter-spacing: -.035em; }
.section-lead { margin-top: 30px; color: #5e5d59; font-size: 16px; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 44px; background: rgba(11,12,13,.14); border: 1px solid rgba(11,12,13,.14); }
.value { min-height: 115px; display: flex; align-items: center; gap: 15px; padding: 20px; background: var(--paper); }
.value i { width: 25px; color: #9b783e; font-size: 20px; text-align: center; }
.value span { display: flex; flex-direction: column; gap: 5px; color: #77746e; font-size: 11px; }
.value strong { color: var(--ink); font-size: 12px; }

.services { background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading p { color: var(--muted); line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 310px); gap: 18px; }
.service-card { position: relative; overflow: hidden; min-height: 280px; }
.service-card-large { grid-row: 1 / 3; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; filter: saturate(.65); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,9,10,.93), rgba(8,9,10,.08) 75%); }
.service-content { position: absolute; inset: auto 34px 32px; }
.service-content span { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.service-content h3 { margin: 8px 0 12px; font-family: var(--serif); font-size: clamp(34px, 4vw, 58px); font-weight: 500; }
.service-card:not(.service-card-large) h3 { font-size: 38px; }
.service-content p { max-width: 480px; margin-bottom: 24px; color: rgba(255,255,255,.66); line-height: 1.7; }
.service-content a { display: inline-flex; align-items: center; gap: 12px; color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-content a i { transition: transform .3s ease; }
.service-card:hover img { transform: scale(1.055); filter: saturate(.9); }
.service-card:hover a i { transform: translateX(5px); }
.packages-heading { position: relative; min-height: 420px; display: flex; align-items: center; margin-top: 110px; overflow: hidden; border: 1px solid var(--line); }
.packages-porsche { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,11,.98) 0%, rgba(9,10,11,.82) 48%, rgba(9,10,11,.12) 100%), url("../img/hero/porsche.jpg") 70% center / cover no-repeat; filter: saturate(.55) contrast(1.15); transition: transform 1s var(--ease); }
.packages-heading:hover .packages-porsche { transform: scale(1.025); }
.packages-heading-content { position: relative; z-index: 1; max-width: 640px; padding: 60px; }
.packages-heading h3 { margin: 15px 0 20px; font-family: var(--serif); font-size: clamp(44px, 5.2vw, 68px); font-weight: 500; line-height: .94; letter-spacing: -.035em; }
.packages-heading h3 em { color: var(--gold-light); font-weight: 500; }
.packages-heading p { max-width: 530px; color: rgba(255,255,255,.62); line-height: 1.75; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.package-card { position: relative; background: #111315; border: 1px solid var(--line); overflow: hidden; transition: transform .5s var(--ease), border-color .35s ease; }
.package-card-featured { border-color: rgba(200,169,107,.58); }
.package-image { overflow: hidden; background: #08090a; }
.package-image img { width: 100%; aspect-ratio: 853 / 1280; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.package-name { min-height: 86px; display: grid; grid-template-columns: 28px 1fr 30px; gap: 12px; align-items: center; padding: 18px 22px; border-top: 1px solid var(--line); }
.package-name span { color: var(--gold); font-size: 9px; letter-spacing: .12em; }
.package-name h4 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.package-name i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(200,169,107,.12); color: var(--gold-light); font-size: 14px; transition: .3s ease; }
.package-card:hover { transform: translateY(-7px); border-color: rgba(200,169,107,.7); }
.package-card:hover .package-image img { transform: scale(1.025); filter: brightness(1.08); }
.package-card:hover .package-name i { background: #1e9d50; color: white; }

.results { background: var(--ink-soft); }
.section-heading.compact { margin-bottom: 45px; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.result-grid figure { position: relative; overflow: hidden; }
.result-grid img { width: 100%; aspect-ratio: 1.72; object-fit: cover; filter: saturate(.65); transition: .7s var(--ease); }
.result-grid figure:hover img { transform: scale(1.03); filter: saturate(.9); }
.result-grid figcaption { position: absolute; inset: auto 0 0; display: flex; align-items: center; gap: 14px; padding: 28px; background: linear-gradient(transparent, rgba(0,0,0,.9)); font-family: var(--serif); font-size: 28px; }
.result-grid figcaption span { color: var(--gold); font: 10px var(--sans); letter-spacing: .12em; }

.contact { position: relative; background: var(--paper); color: var(--ink); }
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.contact-copy h2 { margin: 18px 0 24px; font-family: var(--serif); font-size: clamp(50px, 5.5vw, 75px); font-weight: 500; line-height: .94; letter-spacing: -.035em; }
.contact-copy > p { color: #67645e; line-height: 1.75; }
.contact-links { margin-top: 38px; border-top: 1px solid rgba(11,12,13,.17); }
.contact-links a { display: grid; grid-template-columns: 32px 1fr 16px; gap: 15px; align-items: center; padding: 19px 3px; border-bottom: 1px solid rgba(11,12,13,.17); transition: padding .3s ease, color .3s ease; }
.contact-links a > i:first-child { color: #9b783e; font-size: 20px; }
.contact-links a > i:last-child { font-size: 10px; }
.contact-links span { display: flex; flex-direction: column; gap: 3px; }
.contact-links small { color: #77736b; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-links strong { font-size: 13px; }
.contact-links a:hover { padding-left: 10px; color: #8b672e; }
.map-wrap { position: relative; min-height: 590px; background: #d8d3c8; overflow: hidden; }
.map-wrap::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(11,12,13,.2); }
.map-wrap iframe { width: 100%; height: 590px; border: 0; filter: grayscale(1) contrast(.92); }
.map-wrap > a { position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: rgba(11,12,13,.92); color: var(--paper); font-size: 11px; font-weight: 700; letter-spacing: .06em; backdrop-filter: blur(10px); }

.footer { padding: 42px 0; background: #08090a; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 55px; height: 55px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(200,169,107,.35); }
.footer-brand span, .footer p, .back-top { color: rgba(255,255,255,.45); font-size: 9px; line-height: 1.6; letter-spacing: .08em; text-transform: uppercase; }
.back-top { justify-self: end; display: flex; align-items: center; gap: 10px; }
.whatsapp-float { position: fixed; z-index: 40; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 12px; padding: 8px 8px 8px 17px; background: #eef1e9; color: #172119; border-radius: 50px; box-shadow: 0 12px 35px rgba(0,0,0,.28); font-size: 10px; font-weight: 700; letter-spacing: .04em; transition: .3s ease; }
.whatsapp-float i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: #1e9d50; color: white; font-size: 20px; }
.whatsapp-float:hover { transform: translateY(-4px); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.show { opacity: 1; transform: translateY(0); }
@keyframes heroZoom { to { transform: scale(1); } }
@keyframes revealUp { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 50% { transform: translateY(6px); } }

@media (max-width: 980px) {
    .section { padding: 95px 0; }
    .header-inner { grid-template-columns: 1fr auto; }
    .btn-header { display: none; }
    .menu-toggle { position: relative; z-index: 2; width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line); }
    .menu-toggle span { width: 20px; height: 1px; background: white; transition: .3s ease; }
    .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .menu { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; background: rgba(8,9,10,.97); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .35s ease; }
    .menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .menu a { font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: 0; text-transform: none; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-note { display: none; }
    .about-grid, .contact-shell { grid-template-columns: 1fr; }
    .about-visual { width: min(620px, 92%); }
    .about-seal { right: -25px; }
    .section-heading { grid-template-columns: 1fr; gap: 22px; }
    .services-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 310px; }
    .service-card-large { grid-column: 1 / 3; grid-row: auto; }
    .packages-heading { margin-top: 85px; }
    .packages-heading-content { padding: 45px; }
    .package-grid { grid-template-columns: repeat(2, 1fr); }
    .map-wrap, .map-wrap iframe { min-height: 500px; height: 500px; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 32px, 1180px); }
    .section { padding: 78px 0; }
    .header { height: 76px; }
    .logo, .header.active .logo { width: 54px; height: 54px; }
    .hero { min-height: 760px; }
    .hero-media { background-position: 64% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(8,9,10,.94), rgba(8,9,10,.42)), linear-gradient(0deg, rgba(8,9,10,.9), transparent 60%); }
    .hero-line, .scroll-hint { display: none; }
    .hero-layout { padding-top: 58px; }
    .hero h1 { font-size: clamp(54px, 17vw, 74px); line-height: .86; }
    .hero-content > p { margin-top: 24px; font-size: 14px; line-height: 1.65; }
    .hero-buttons { flex-direction: column; align-items: stretch; margin-top: 30px; }
    .button { width: 100%; }
    .hero-proof { gap: 0; margin-top: 38px; justify-content: space-between; }
    .hero-proof div { display: block; padding: 0 12px; }
    .hero-proof div:first-child { padding-left: 0; }
    .hero-proof strong { display: block; margin-bottom: 3px; font-size: 23px; }
    .hero-proof span { font-size: 7px; }
    .about-visual { width: calc(100% - 18px); padding: 0 0 24px 24px; }
    .about-seal { width: 108px; right: -18px; }
    .about-seal strong { font-size: 28px; }
    .about-content h2, .section-heading h2, .contact-copy h2 { font-size: 47px; }
    .values-grid { grid-template-columns: 1fr; }
    .value { min-height: 90px; }
    .services-grid { display: flex; flex-direction: column; }
    .service-card, .service-card-large { min-height: 390px; }
    .service-content { inset: auto 22px 24px; }
    .service-content h3, .service-card:not(.service-card-large) h3 { font-size: 37px; }
    .service-content p { font-size: 13px; }
    .packages-heading { min-height: 500px; align-items: flex-end; margin-top: 70px; }
    .packages-porsche { background: linear-gradient(0deg, rgba(9,10,11,.98) 0%, rgba(9,10,11,.64) 62%, rgba(9,10,11,.1) 100%), url("../img/hero/porsche.jpg") 62% center / cover no-repeat; }
    .packages-heading-content { padding: 30px 24px; }
    .packages-heading h3 { font-size: 43px; }
    .packages-heading p { font-size: 13px; }
    .package-grid { grid-template-columns: 1fr; gap: 14px; }
    .package-name { min-height: 76px; }
    .result-grid { grid-template-columns: 1fr; }
    .result-grid img { aspect-ratio: 1.45; }
    .map-wrap, .map-wrap iframe { min-height: 400px; height: 400px; }
    .footer-inner { grid-template-columns: 1fr auto; }
    .footer p { display: none; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { right: 16px; bottom: 16px; padding: 7px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
