/* =========================================================
   THE OPULENCE — EDITORIAL LUXURY LANDING PAGE
   ========================================================= */

:root {
  --gold: #c99b45;
  --gold-dark: #9f7428;
  --gold-soft: #ead5a6;
  --gold-wash: #f4ead6;
  --ink: #191614;
  --deep: #171411;
  --muted: #756f68;
  --line: #e7e0d5;
  --ivory: #fbfaf7;
  --white: #ffffff;
  --max: 1240px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --shadow: 0 22px 60px rgba(29, 22, 15, .1);
  --shadow-soft: 0 12px 30px rgba(29, 22, 15, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.section { padding: 112px 0; }
.centered { text-align: center; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 2000;
  padding: 10px 14px; background: var(--ink); color: #fff;
}
.skip-link:focus { top: 16px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.eyebrow.gold { color: var(--gold-soft); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; margin: 0; }
h2 { font-size: clamp(34px, 4vw, 52px); }
p { color: var(--muted); }
.gold-rule {
  display: block; width: 50px; height: 2px; margin: 24px 0;
  background: var(--gold);
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .28s var(--ease-out), box-shadow .28s var(--ease-out), backdrop-filter .28s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(20, 15, 10, .08);
  backdrop-filter: blur(16px);
}
.site-header::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: var(--scroll-progress, 0%); height: 2px;
  background: var(--gold); transition: width .1s linear;
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { width: 46px; height: 46px; flex: 0 0 46px; object-fit: contain; transition: transform .35s var(--ease-out), filter .35s ease; }
.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.05); filter: drop-shadow(0 5px 8px rgba(159,116,40,.18)); }
.brand-copy { display: block; }
.brand strong { display: block; font-family: var(--serif); font-size: 19px; letter-spacing: .08em; }
.brand small { display: block; font-size: 7px; letter-spacing: .25em; color: var(--muted); text-align: center; }
.footer-brand .brand-logo { width: 58px; height: 58px; flex-basis: 58px; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { position: relative; padding: 8px 0; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.site-nav > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px;
  background: var(--gold); transition: right .28s var(--ease-out);
}
.site-nav > a:hover { color: var(--gold-dark); }
.site-nav > a:hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 23px; height: 1px; margin: 5px 0; background: var(--ink); transition: transform .25s var(--ease-out), opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 46px; padding: 0 22px; border: 1px solid transparent;
  text-transform: uppercase; letter-spacing: .08em; font-size: 10px; font-weight: 600;
  transition: transform .18s var(--ease-out), background .28s var(--ease-out), color .28s var(--ease-out), border-color .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; transform: translateX(-102%);
  background: rgba(255,255,255,.15); transition: transform .45s var(--ease-in-out);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(24, 18, 12, .13); }
.btn:active { transform: translateY(0) scale(.97); }
.btn:focus-visible, .text-btn:focus-visible, .circle-btn:focus-visible, .faq-question:focus-visible, .menu-toggle:focus-visible, .modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.btn-gold { color: #fff; background: var(--gold); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline { color: var(--gold-dark); background: transparent; border-color: var(--gold); }
.btn-outline::before { background: var(--gold); }
.btn-outline:hover { color: #fff; background: var(--gold); }
.btn span, .text-btn span { transition: transform .25s var(--ease-out); }
.btn:hover span, .text-btn:hover span { transform: translateX(5px); }
.text-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0; border: 0; background: transparent; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: .08em; font-size: 10px; font-weight: 600;
  transition: color .2s ease;
}
.text-btn:hover { color: var(--ink); }

/* Hero */
.hero { position: relative; min-height: 760px; height: 100vh; max-height: 900px; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-media, .hero-overlay, .final-media, .final-overlay { position: absolute; inset: 0; }
.hero-media {
  background: url("../assets/hero-luxury-lounge.jpg") center/cover no-repeat;
  transform: scale(1.05); animation: hero-drift 14s ease-out both;
}
.hero-overlay { background: linear-gradient(90deg, rgba(12,9,7,.8), rgba(12,9,7,.33) 62%, rgba(12,9,7,.12)); }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 70px 70px; mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.hero-content { position: relative; z-index: 2; padding-top: 70px; max-width: var(--max); }
.hero-content > * { opacity: 0; transform: translateY(22px); animation: hero-rise .8s var(--ease-out) forwards; }
.hero-content > *:nth-child(1) { animation-delay: .16s; }
.hero-content > *:nth-child(2) { animation-delay: .26s; }
.hero-content > *:nth-child(3) { animation-delay: .38s; }
.hero-content > *:nth-child(4) { animation-delay: .5s; }
.hero h1 { max-width: 760px; font-size: clamp(48px, 6.8vw, 88px); color: #fff; letter-spacing: -.03em; }
.hero-copy { max-width: 500px; color: rgba(255,255,255,.9); margin: 22px 0 32px; font-size: 17px; }
.hero-count { position: absolute; right: 30px; bottom: 28px; z-index: 2; font-size: 12px; letter-spacing: .1em; }
.hero-count span { margin: 0 8px; color: var(--gold-soft); }
.hero-count::before { content: ""; display: inline-block; width: 34px; height: 1px; margin: 0 12px 4px 0; background: var(--gold-soft); }

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr .55fr; gap: 44px; align-items: center; }
.image-frame { position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.image-frame::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.52); pointer-events: none; opacity: .7; transition: inset .45s var(--ease-out), opacity .3s ease; }
.image-frame:hover::after { inset: 10px; opacity: 1; }
.image-frame img { aspect-ratio: 1 / .88; object-fit: cover; transition: transform .7s var(--ease-out), filter .35s ease; }
.image-frame:hover img { transform: scale(1.06); filter: saturate(1.08); }
.about-copy h2 { max-width: 560px; }
.about-copy p { max-width: 620px; font-size: 15px; }
.stats { border-left: 1px solid var(--line); padding-left: 28px; }
.stats div { position: relative; padding: 18px 0; border-bottom: 1px solid var(--line); transition: transform .25s var(--ease-out), padding-left .25s var(--ease-out); }
.stats div::before { content: ""; position: absolute; left: -29px; top: 0; bottom: 0; width: 2px; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform .28s var(--ease-out); }
.stats div:hover { transform: translateX(6px); padding-left: 8px; }
.stats div:hover::before { transform: scaleY(1); }
.stats div:last-child { border-bottom: 0; }
.stats strong { display: block; color: var(--gold-dark); font-family: var(--serif); font-size: 32px; font-weight: 400; }
.stats span { color: var(--muted); font-size: 11px; }
.material-note { display: flex; align-items: center; gap: 13px; margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); }
.material-note img { width: 54px; height: 54px; flex: 0 0 54px; object-fit: cover; border-radius: 50%; }
.material-note .eyebrow { margin: 0 0 3px; font-size: 8px; }
.material-note p { margin: 0; font-size: 11px; }

/* Services */
.services-section { position: relative; background: var(--ivory); }
.services-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; background: radial-gradient(circle at 15% 20%, rgba(201,155,69,.11), transparent 28%), radial-gradient(circle at 88% 70%, rgba(201,155,69,.08), transparent 25%); }
.services-section .container { position: relative; }
.section-heading { margin-bottom: 42px; }
.section-heading h2 { letter-spacing: -.025em; }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  position: relative; display: grid; grid-template-columns: 80px 1.35fr .85fr 150px; gap: 26px;
  align-items: center; min-height: 126px; padding: 16px 18px;
  border-bottom: 1px solid var(--line); background: rgba(255,255,255,.55);
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.service-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform .3s var(--ease-out); }
.service-row:hover { z-index: 1; background: #fff; box-shadow: var(--shadow-soft); transform: translateX(5px); }
.service-row:hover::before { transform: scaleY(1); }
.service-number { color: var(--gold); font-family: var(--serif); font-size: 30px; transition: transform .3s var(--ease-out), color .3s ease; }
.service-row:hover .service-number { color: var(--ink); transform: translateX(5px); }
.service-row h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.service-row p { max-width: 470px; margin: 7px 0 0; font-size: 13px; }
.service-row img { height: 90px; object-fit: cover; filter: saturate(.86); transition: transform .5s var(--ease-out), filter .35s ease; }
.service-row:hover img { transform: scale(1.05); filter: saturate(1.05); }

/* Projects */
.project-grid { display: grid; grid-template-columns: 1.55fr .9fr; gap: 36px; align-items: start; }
.project-feature, .project-card { position: relative; overflow: hidden; }
.project-feature img { aspect-ratio: 1.35 / 1; object-fit: cover; transition: transform .75s var(--ease-out), filter .4s ease; }
.project-feature::after, .project-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.28)); opacity: 0; transition: opacity .35s ease; }
.project-feature:hover img, .project-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.project-feature:hover::after, .project-card:hover::after { opacity: 1; }
.project-info { position: relative; z-index: 1; padding-top: 18px; }
.project-info h3 { font-size: 25px; margin-bottom: 6px; transition: color .25s ease; }
.project-feature:hover .project-info h3, .project-card:hover .project-info h3 { color: var(--gold-dark); }
.project-info p { margin: 0 0 14px; font-size: 12px; }
.project-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-card img { aspect-ratio: 1.12 / 1; object-fit: cover; transition: transform .7s var(--ease-out), filter .4s ease; }
.center-action { margin-top: 44px; text-align: center; }

/* Why */
.why-section { padding: 70px 0; background: var(--ivory); border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 45px; align-items: center; }
.why-title h2 { font-size: clamp(32px, 4vw, 46px); }
.why-items { display: grid; grid-template-columns: repeat(6, 1fr); }
.why-item { min-height: 125px; padding: 10px 16px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; transition: background .3s var(--ease-out), transform .3s var(--ease-out), border-color .3s ease; }
.why-item:hover { background: var(--gold-wash); transform: translateY(-5px); border-color: var(--gold-soft); }
.why-item span { color: var(--gold); font-size: 10px; margin-bottom: 13px; }
.why-item strong { font-family: var(--serif); font-size: 16px; font-weight: 400; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; gap: 15px;
  padding: 20px 4px; border: 0; background: transparent; text-align: left;
  color: var(--ink); font-size: 13px; font-weight: 500; transition: color .2s ease, padding-left .25s var(--ease-out);
}
.faq-question:hover { color: var(--gold-dark); padding-left: 9px; }
.faq-question span { color: var(--gold-dark); font-size: 20px; line-height: 1; transition: transform .28s var(--ease-out); }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-out); }
.faq-answer p { overflow: hidden; margin: 0; padding: 0 4px; font-size: 13px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 20px; }

/* Testimonials */
.testimonials-section { background: var(--ivory); text-align: center; }
.testimonial-wrap { max-width: 900px; }
.quote-mark { color: var(--gold); font-family: var(--serif); font-size: 68px; line-height: .8; margin-top: 15px; }
blockquote { margin: 8px auto 22px; max-width: 850px; font-family: var(--serif); font-size: clamp(23px, 3vw, 34px); line-height: 1.35; }
blockquote.is-changing { animation: quote-swap .35s var(--ease-out); }
.testimonial-person { display: flex; justify-content: center; align-items: center; gap: 12px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-dark); font-family: var(--serif); transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.testimonial-person:hover .avatar { transform: scale(1.08); box-shadow: 0 8px 18px rgba(159,116,40,.18); }
.testimonial-person strong, .testimonial-person span { display: block; }
.testimonial-person strong { font-size: 12px; }
.testimonial-person span { color: var(--muted); font-size: 11px; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 25px; }
.circle-btn { width: 36px; height: 36px; border: 1px solid var(--gold-soft); border-radius: 50%; background: #fff; color: var(--gold-dark); transition: transform .22s var(--ease-out), background .22s ease, color .22s ease, border-color .22s ease; }
.circle-btn:hover { transform: translateY(-3px); background: var(--gold); border-color: var(--gold); color: #fff; }
.circle-btn:active { transform: scale(.94); }
.dots { display: flex; gap: 7px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: #d7d1c2; border: 0; padding: 0; transition: transform .25s var(--ease-out), background .25s ease; }
.dot:hover { transform: scale(1.5); }
.dot.active { background: var(--gold); transform: scale(1.25); }

/* Final CTA */
.final-cta { position: relative; min-height: 340px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.final-media { background: url("../assets/hero-luxury-lounge.jpg") center 60%/cover no-repeat; transform: scale(1.03); }
.final-overlay { background: linear-gradient(90deg, rgba(12,9,7,.78), rgba(12,9,7,.48)); }
.final-content { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.final-content h2 { color: #fff; font-size: clamp(40px, 5vw, 64px); text-transform: capitalize; }
.final-content p:not(.eyebrow) { color: rgba(255,255,255,.85); margin: 10px 0 0; }

/* Footer */
.footer { padding: 65px 0 25px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 45px; }
.footer h3 { font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 15px; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) span { display: block; color: var(--muted); font-size: 12px; margin: 7px 0; transition: color .2s ease, transform .2s var(--ease-out); }
.footer-grid > div:not(:first-child) a:hover { color: var(--gold-dark); transform: translateX(4px); }
.footer-copy { max-width: 270px; font-size: 12px; }
.socials { display: flex !important; gap: 8px; }
.socials a { width: 30px; height: 30px; display: grid !important; place-items: center; border: 1px solid var(--line); transition: transform .25s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease; }
.socials a:hover { transform: translateY(-4px); color: #fff !important; background: var(--gold); border-color: var(--gold); }
.footer-bottom { margin-top: 50px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #888; font-size: 10px; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 1500; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.68); backdrop-filter: blur(5px); }
.modal-panel {
  position: relative; z-index: 1; width: min(540px, 100%); max-height: 92vh; overflow: auto;
  padding: 38px; background: #fff; border-top: 3px solid var(--gold); box-shadow: var(--shadow);
  transform: translateY(15px) scale(.98); transition: transform .35s var(--ease-out);
}
.modal.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 10px; right: 14px; border: 0; background: transparent; color: #555; font-size: 28px; transition: color .2s ease, transform .2s var(--ease-out); }
.modal-close:hover { color: var(--gold-dark); transform: rotate(90deg); }
.modal-panel h2 { font-size: 36px; }
.modal-intro { margin-top: 8px; font-size: 13px; }
#lead-form { display: grid; gap: 14px; margin-top: 22px; }
#lead-form label { display: grid; gap: 6px; color: #333; font-size: 11px; font-weight: 600; }
#lead-form input, #lead-form select, #lead-form textarea {
  width: 100%; border: 1px solid #ddd7cb; background: #fff; color: var(--ink);
  padding: 12px 13px; outline: none; border-radius: 0; transition: border-color .2s ease, box-shadow .2s ease;
}
#lead-form input:focus, #lead-form select:focus, #lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(199,154,50,.12); }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.full { width: 100%; }
.form-note, .form-status { margin: 0; font-size: 10px; }
.form-status { min-height: 16px; color: var(--gold-dark); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.service-row.reveal:nth-child(2), .project-card.reveal:nth-child(2), .faq-item.reveal:nth-child(2), .why-item.reveal:nth-child(2) { transition-delay: .06s; }
.service-row.reveal:nth-child(3), .project-card.reveal:nth-child(3), .faq-item.reveal:nth-child(3), .why-item.reveal:nth-child(3) { transition-delay: .12s; }
.service-row.reveal:nth-child(4), .why-item.reveal:nth-child(4) { transition-delay: .18s; }
.service-row.reveal:nth-child(5), .why-item.reveal:nth-child(5) { transition-delay: .24s; }
.service-row.reveal:nth-child(6), .why-item.reveal:nth-child(6) { transition-delay: .3s; }

@keyframes hero-drift { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes quote-swap { from { opacity: .2; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: 10px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding: 12px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); }
  .stats div { padding: 15px 18px; border-bottom: 0; border-right: 1px solid var(--line); }
  .stats div::before { left: 0; top: -13px; bottom: auto; width: 100%; height: 2px; transform: scaleX(0); transform-origin: left; }
  .stats div:hover::before { transform: scaleX(1); }
  .stats div:last-child { border-right: 0; }
  .service-row { grid-template-columns: 60px 1.3fr .8fr 130px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-items { grid-template-columns: repeat(3, 1fr); }
  .why-item:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 40px, 620px); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 68px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; top: 68px; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 20px 22px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: 0 16px 25px rgba(20,15,10,.06);
  }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 12px 0; border-bottom: 1px solid #eee; }
  .nav-cta { margin-top: 15px; }
  .hero { min-height: 720px; height: 90vh; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.35)); }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-copy { font-size: 15px; }
  .hero-count { right: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stats div:nth-child(2n) { border-right: 0; }
  .material-note { margin-top: 24px; }
  .service-row { grid-template-columns: 44px 1fr; gap: 8px 15px; padding: 20px 5px; }
  .service-row img { grid-column: 2; width: 100%; height: 140px; }
  .service-row .text-btn { grid-column: 2; }
  .service-number { font-size: 25px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-stack { grid-template-columns: 1fr; }
  .why-items { grid-template-columns: 1fr 1fr; }
  .why-item { min-height: 105px; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .final-content { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-bottom { flex-direction: column; margin-top: 35px; }
  .modal-panel { padding: 32px 22px 24px; }
}

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