:root {
  --dark: #0d0d0d;
  --dark-2: #15110c;
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, .24);
  --teal: #4a7c7e;
  --cream: #f5e6d3;
  --soft: #e8e0d5;
  --muted: rgba(232, 224, 213, .72);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@supports not (height: 100svh) {
  .hero { height: 100vh; min-height: 100vh; }
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--soft);
  font-family: "Segoe UI", Arial, sans-serif;
}

a { color: inherit; }

section[id] { scroll-margin-top: 76px; }

:where(a, button):focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--teal);
}

body.modal-open { overflow: hidden; }

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #080705;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  z-index: -4;
  filter: saturate(.92) contrast(1.07) brightness(.82);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,4,4,.18), rgba(4,4,4,.18) 54%, rgba(5,5,5,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), transparent 42%, rgba(0,0,0,.28));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.08) 42%, rgba(0,0,0,.42)),
    radial-gradient(circle at 51% 48%, rgba(0,0,0,.02), rgba(0,0,0,.28) 70%);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 58px);
  color: rgba(245, 230, 211, .88);
  background: linear-gradient(180deg, rgba(5,5,5,.86), rgba(5,5,5,.58));
  border-bottom: 1px solid rgba(201,168,76,.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}

.brand-small {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .82rem;
}

.topbar nav {
  display: flex;
  gap: 22px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.topbar a {
  text-decoration: none;
  opacity: .82;
}

.topbar a:hover { opacity: 1; color: var(--gold); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(201,168,76,.45);
  background: rgba(0,0,0,.5);
  color: var(--cream);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.topbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.topbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sound-waves {
  position: absolute;
  left: -10vw;
  right: -10vw;
  bottom: 16vh;
  width: 120vw;
  height: 34vh;
  z-index: -1;
  opacity: .32;
  pointer-events: none;
  mix-blend-mode: screen;
}

.wave-path {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(201,168,76,.18));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(105px, 14vh, 150px);
  z-index: 2;
  width: min(92vw, 820px);
  transform: translateX(-50%);
  text-align: center;
  text-shadow: 0 3px 18px rgba(0,0,0,.95);
}
.hero-copy h1 { margin: 0 0 8px; color: var(--cream); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.05rem, 2.2vw, 1.55rem); font-weight: 500; letter-spacing: .08em; }
.hero-copy p { margin: 0; color: var(--gold); font-size: clamp(.72rem, 1.4vw, .9rem); letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }

.hero-actions {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 5vh, 54px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(92vw, 650px);
  transform: translateX(-50%);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(201,168,76,.72);
  background: rgba(9,8,6,.56);
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
  transition: transform .18s ease, background .18s ease;
}

.button.primary {
  background: rgba(201,168,76,.92);
  color: #17120b;
  font-weight: 700;
}

.button:hover { transform: translateY(-2px); background: rgba(201,168,76,.2); }
.button.primary:hover { background: #d8b85c; }

@media (hover: none) and (pointer: coarse) {
  .button:active { transform: scale(.97); }
  .button.primary:active { background: #c4a44a; }
  .whatsapp-float:active, .back-top:active { transform: scale(.92); }
  .gallery-photo:active img { transform: scale(1.02); }
  .topbar nav a:active { background: rgba(201,168,76,.1); }
  .faq-list summary:active { background: rgba(201,168,76,.06); }
}

.section {
  padding: clamp(58px, 8vw, 96px) 20px;
  background: var(--dark);
}

.section.alt {
  background: linear-gradient(180deg, #0d0d0d, var(--dark-2) 52%, #0d0d0d);
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  text-align: center;
}

.section-kicker--left {
  text-align: left;
}

.section-title {
  margin: 0 0 30px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.section-lead {
  max-width: 760px;
  margin: -14px auto 34px;
  color: var(--muted);
  line-height: 1.75;
  text-align: center;
  font-size: 1rem;
}

.symptom-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 900px; margin: -12px auto 30px; padding: 0; list-style: none; }
.symptom-list li { padding: 7px 11px; border: 1px solid rgba(201,168,76,.26); color: rgba(245,230,211,.8); background: rgba(0,0,0,.18); font-size: .78rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.step,
.about-panel,
.cta-panel {
  border: 1px solid rgba(201,168,76,.32);
  background: linear-gradient(180deg, rgba(245,230,211,.058), rgba(245,230,211,.024));
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.service-card {
  min-height: 230px;
  padding: 26px 22px;
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card h3,
.step h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.service-card p,
.step p,
.about-panel p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .96rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  position: relative;
  min-height: 220px;
  padding: 26px 22px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 22px;
  align-items: stretch;
}

.about-panel {
  padding: clamp(26px, 4vw, 42px);
}

.about-panel h2,
.cta-panel h2 {
  margin: 0 0 18px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.12;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding-left: 24px;
  position: relative;
  color: rgba(245,230,211,.86);
  line-height: 1.55;
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

.diagnostic-box {
  border-left: 2px solid var(--gold);
  padding: clamp(24px, 4vw, 42px);
  background: rgba(0,0,0,.18);
}

.diagnostic-box h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(90deg, rgba(201,168,76,.12), rgba(74,124,126,.08)),
    linear-gradient(180deg, rgba(245,230,211,.06), rgba(245,230,211,.02));
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  padding: 16px 18px;
  border: 1px solid rgba(201,168,76,.22);
  background: rgba(0,0,0,.18);
}

.contact-item.full {
  grid-column: 1 / -1;
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: var(--cream);
  text-decoration: none;
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.55;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-hours {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--cream);
  line-height: 1.55;
}

.contact-hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,168,76,.72);
  background: rgba(13,13,13,.78);
  color: var(--gold);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(0,0,0,.34);
  backdrop-filter: blur(8px);
}

.whatsapp-float svg { width: 25px; height: 25px; }

.gallery-section {
  background:
    radial-gradient(circle at 14% 0%, rgba(74,124,126,.12), transparent 28rem),
    linear-gradient(180deg, #090909, #12100d 48%, #0d0d0d);
}

.work-card {
  border: 1px solid rgba(201,168,76,.32);
  background: linear-gradient(180deg, rgba(245,230,211,.052), rgba(245,230,211,.018));
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
  overflow: hidden;
}

.single-gallery-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
}

.work-card-marker {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,168,76,.34);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  background: rgba(0,0,0,.24);
}

.single-gallery-card h3,
.gallery-set-head h3,
.gallery-modal-title h2 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 500;
}

.single-gallery-card p,
.gallery-set-head p,
.gallery-modal-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: .95rem;
}

.work-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.work-counts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(201,168,76,.2);
  color: rgba(245,230,211,.84);
  background: rgba(0,0,0,.18);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.work-counts strong {
  color: var(--gold);
  font-weight: 600;
}

.case-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; width: min(900px, 100%); margin: 18px auto 0; }
.case-proof figure { position: relative; margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid rgba(201,168,76,.3); background: #090909; }
.case-proof img { width: 100%; height: 100%; object-fit: cover; }
.case-proof figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 10px 8px; color: var(--cream); background: linear-gradient(transparent, rgba(0,0,0,.9)); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: clamp(16px, 4vw, 34px);
  background: rgba(0,0,0,.86);
  overflow: auto;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal-panel {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,.34);
  background: #0b0907;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.gallery-modal-title {
  padding: 28px clamp(18px, 4vw, 38px);
  border-bottom: 1px solid rgba(201,168,76,.24);
  background: rgba(255,255,255,.035);
}

.gallery-set {
  border-top: 1px solid rgba(201,168,76,.2);
}

.gallery-set-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px clamp(18px, 4vw, 34px);
  background: rgba(0,0,0,.2);
}

.gallery-set-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,168,76,.34);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.work-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201,168,76,.18);
}

.gallery-stage {
  min-width: 0;
  padding: 18px;
  background: rgba(10,9,7,.92);
}

.stage-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stage-label span {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  color: rgba(245,230,211,.72);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid rgba(245,230,211,.12);
  background: #090909;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}

.gallery-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.gallery-empty {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  margin: 0;
  width: min(1080px, 100%);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(201,168,76,.34);
}

.lightbox figcaption {
  color: var(--cream);
  text-align: center;
  font-size: .95rem;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,.62);
  background: rgba(0,0,0,.58);
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 12px 12px 0 0;
  z-index: 2;
}

.gallery-cover {
  position: relative;
  width: clamp(140px, 18vw, 220px);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(201,168,76,.32);
  background: #080705;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.25);
  isolation: isolate;
}

.gallery-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-cover-static {
  filter: saturate(.82) contrast(1.08) brightness(.58);
  transform: scale(1.03);
}

.gallery-cover::before,
.gallery-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery-cover::before {
  background:
    linear-gradient(90deg, rgba(8,7,5,.74), transparent 42%, rgba(8,7,5,.54)),
    radial-gradient(circle at 50% 42%, transparent 26%, rgba(0,0,0,.44) 82%);
}

.gallery-cover::after {
  border: 1px solid rgba(201,168,76,.42);
  box-shadow: inset 0 0 34px rgba(201,168,76,.12);
}

.gallery-motion {
  position: absolute;
  inset: -18%;
  z-index: 1;
  pointer-events: none;
  perspective: 620px;
}

.gallery-motion img {
  position: absolute;
  width: 48%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(245,230,211,.22);
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
  opacity: .72;
  animation: gallery-float 18s linear infinite;
  transform: translate3d(var(--start-x), 122%, var(--depth)) rotate(var(--tilt));
  filter: saturate(.88) contrast(1.08) brightness(.86);
}

.gallery-motion img:nth-child(1) { --start-x: -4%; --end-x: 18%; --depth: 0px; --tilt: -7deg; animation-duration: 18s; animation-delay: -1s; }
.gallery-motion img:nth-child(2) { --start-x: 42%; --end-x: 66%; --depth: -70px; --tilt: 5deg; animation-duration: 24s; animation-delay: -7s; opacity: .52; }
.gallery-motion img:nth-child(3) { --start-x: 18%; --end-x: -8%; --depth: -35px; --tilt: 8deg; animation-duration: 21s; animation-delay: -12s; opacity: .62; }
.gallery-motion img:nth-child(4) { --start-x: 70%; --end-x: 38%; --depth: -95px; --tilt: -5deg; animation-duration: 27s; animation-delay: -16s; opacity: .46; }
.gallery-motion img:nth-child(5) { --start-x: 8%; --end-x: 48%; --depth: -18px; --tilt: 3deg; animation-duration: 20s; animation-delay: -20s; opacity: .58; }

@keyframes gallery-float {
  from { transform: translate3d(var(--start-x), 122%, var(--depth)) rotate(var(--tilt)); }
  to { transform: translate3d(var(--end-x), -132%, var(--depth)) rotate(var(--tilt)); }
}

.faq-list { display: grid; gap: 10px; width: min(900px, 100%); margin: 0 auto; }
.faq-list details { border: 1px solid rgba(201,168,76,.28); background: rgba(245,230,211,.035); }
.faq-list summary { padding: 18px 52px 18px 20px; color: var(--cream); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; cursor: pointer; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); line-height: 1.65; }

.back-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 20;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,168,76,.72);
  background: rgba(13,13,13,.78);
  color: var(--gold);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(0,0,0,.34);
  backdrop-filter: blur(8px);
}

.back-top svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 980px) {
  .hero-bg { object-position: 42% center; }
  .service-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .single-gallery-card { grid-template-columns: 1fr; gap: 18px; }
  .gallery-cover { width: min(100%, 260px); }
  .gallery-motion img { width: 58%; }
  .work-stages { grid-template-columns: 1fr; }
  .about-layout, .cta-panel { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .sound-waves { bottom: 12vh; opacity: .24; }
  .hero-copy h1 { font-size: clamp(1.1rem, 2.6vw, 1.5rem); }
  .hero-copy p { font-size: clamp(.75rem, 1.6vw, .9rem); }
  .section { padding: clamp(48px, 7vw, 80px) 18px; }
}

@media (max-width: 700px) {
  .topbar { padding: 10px 16px; }
  .brand-small { font-size: .78rem; letter-spacing: .18em; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .topbar nav {
    position: absolute;
    top: 58px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
    border: 1px solid rgba(201,168,76,.34);
    background: rgba(8,8,8,.98);
    box-shadow: 0 18px 42px rgba(0,0,0,.55);
    border-radius: 2px;
  }
  .topbar.nav-open nav { display: flex; }
  .topbar nav a {
    display: block;
    padding: 15px 18px;
    font-size: .82rem;
    letter-spacing: .1em;
    border-bottom: 1px solid rgba(201,168,76,.1);
  }
  .topbar nav a:last-child { border-bottom: none; }
  .topbar nav a:active { background: rgba(201,168,76,.08); }

  .hero { min-height: 100svh; height: 100svh; }
  .hero-bg { object-position: 38% 42%; filter: saturate(.85) contrast(1.1) brightness(.42); }
  .hero::before { background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.45) 50%, rgba(0,0,0,.55) 100%); }
  .hero::after { background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.35) 35%, rgba(0,0,0,.78)); }
  .sound-waves { left: -40vw; width: 180vw; height: 20vh; bottom: 22vh; opacity: .14; }

  .hero-copy {
    position: absolute;
    left: 50%;
    bottom: clamp(160px, 24vh, 210px);
    width: min(90vw, 420px);
    transform: translateX(-50%);
    z-index: 2;
  }
  .hero-copy h1 {
    font-size: 1.12rem;
    line-height: 1.5;
    letter-spacing: .05em;
    margin: 0 0 10px;
    padding: 14px 18px;
    background: rgba(0,0,0,.75);
    border-left: 3px solid var(--gold);
  }
  .hero-copy p {
    font-size: .72rem;
    letter-spacing: .09em;
    line-height: 1.5;
    padding: 10px 18px;
    background: rgba(0,0,0,.65);
  }

  .hero-actions {
    bottom: 22px;
    gap: 10px;
    width: min(88vw, 340px);
  }
  .button {
    width: 100%;
    min-height: 50px;
    font-size: .8rem;
    letter-spacing: .1em;
    padding: 0 20px;
  }

  .section { padding: clamp(44px, 8vw, 68px) 16px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); letter-spacing: .04em; line-height: 1.2; }
  .section-lead { font-size: .92rem; line-height: 1.7; margin-bottom: 28px; }
  .section-kicker { font-size: .72rem; }

  .symptom-list { gap: 6px; margin-bottom: 24px; }
  .symptom-list li { padding: 6px 10px; font-size: .72rem; }

  .service-grid, .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card, .step { min-height: auto; padding: 22px 20px; }
  .service-card h3, .step h3 { font-size: 1.1rem; }
  .service-card p, .step p { font-size: .9rem; line-height: 1.6; }

  .single-gallery-card { grid-template-columns: 1fr; gap: 0; padding: 18px 16px; text-align: center; }
  .work-card-marker { margin: 0 auto 12px; }
  .gallery-cover { width: 160px; margin: 0 auto 16px; }
  .gallery-cover-static { transform: none; }
  .gallery-motion { inset: -12%; }
  .gallery-motion img { width: 44%; }
  .gallery-motion img:nth-child(n+3) { display: none; }
  .work-counts { justify-content: center; }

  .work-stages, .photo-strip, .case-proof { grid-template-columns: 1fr; }
  .case-proof { gap: 8px; }
  .case-proof figure { aspect-ratio: 16/9; }

  .about-panel, .diagnostic-box { padding: 22px 18px; }
  .about-panel h2 { font-size: 1.5rem; }
  .diagnostic-box h3 { font-size: 1.15rem; }

  .cta-panel { padding: 24px 18px; gap: 20px; }
  .cta-panel h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-panel > a { width: 100%; min-height: 50px; text-align: center; }
  .contact-details { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .contact-item { padding: 14px 16px; }
  .contact-item a, .contact-item strong { font-size: .92rem; }
  .contact-hours div { gap: 12px; }

  .faq-list { gap: 8px; }
  .faq-list summary {
    padding: 16px 48px 16px 16px;
    font-size: .95rem;
    line-height: 1.45;
    min-height: 52px;
    display: flex;
    align-items: center;
  }
  .faq-list details p { padding: 0 16px 18px; font-size: .88rem; line-height: 1.65; }

  .gallery-modal { padding: 0; }
  .gallery-modal-panel { border: none; min-height: 100svh; }
  .gallery-modal-title { padding: 18px 16px; }
  .gallery-set-head { padding: 16px; }
  .gallery-stage { padding: 14px; }
  .stage-label { font-size: .88rem; }

  .lightbox { padding: 0; background: rgba(0,0,0,.95); }
  .lightbox img { max-height: 80vh; border: none; border-bottom: 1px solid rgba(201,168,76,.2); }
  .lightbox-close { top: 10px; right: 10px; width: 42px; height: 42px; font-size: 26px; }

  .back-top, .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.show-floats .back-top, body.show-floats .whatsapp-float {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .back-top { width: 50px; height: 50px; left: 14px; bottom: 14px; }
  .back-top svg { width: 24px; height: 24px; }

  .button, .whatsapp-float, .back-top, .topbar { backdrop-filter: none; }
}

@media (max-width: 380px) {
  .hero-copy h1 { font-size: .98rem; }
  .hero-copy p { font-size: .65rem; }
  .hero-copy { bottom: clamp(150px, 22vh, 190px); width: 92vw; }
  .hero-actions { width: 88vw; }
  .section-title { font-size: 1.35rem; }
  .service-card, .step { padding: 18px 16px; }
  .button { min-height: 48px; font-size: .75rem; }
  .faq-list summary { font-size: .88rem; padding: 14px 42px 14px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .gallery-motion img { animation: none; transform: none; }
  .gallery-motion img:nth-child(n+2) { display: none; }
}
