:root {
  --canvas: #f7f2ee;
  --canvas-2: #fbf8f5;
  --surface-solid: #fffdfa;
  --rose: #d7b9ba;
  --rose-deep: #9f7478;
  --champagne: #c6b392;
  --ink: #292523;
  --muted: #766e69;
  --line: rgba(79,63,56,.14);
  --line-strong: rgba(79,63,56,.22);
  --shadow-soft: 0 22px 70px rgba(79,57,49,.10);
  --shadow-focal: 0 34px 90px rgba(79,57,49,.16), 0 8px 28px rgba(79,57,49,.07);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 40px));
  --ease-fast: cubic-bezier(.2,.8,.2,1);
  --ease-smooth: cubic-bezier(.16,1,.3,1);
  --ease-slow: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 7%, rgba(231,210,207,.38), transparent 25%),
    radial-gradient(circle at 90% 13%, rgba(230,222,207,.30), transparent 23%),
    linear-gradient(180deg, #fbf8f5 0%, #f6f0ec 46%, #faf7f4 100%);
  font-family: var(--sans);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::selection { background: rgba(215,185,186,.55); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid rgba(159,116,120,.62);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  width: 32vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(92px);
  pointer-events: none;
  z-index: -3;
  opacity: .22;
}
.ambient-a { left: -12vw; top: 18vh; background: rgba(222,188,190,.55); }
.ambient-b { right: -14vw; top: 56vh; background: rgba(213,202,180,.48); }
.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.v2-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 40;
}
.nav-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(247,242,238,.12);
  box-shadow: none;
  transition:
    min-height .28s var(--ease-smooth),
    background .28s var(--ease-smooth),
    border-color .28s var(--ease-smooth),
    box-shadow .28s var(--ease-smooth),
    backdrop-filter .28s var(--ease-smooth);
}
.v2-header.is-scrolled .nav-shell {
  min-height: 62px;
  background: rgba(250,246,242,.84);
  border-color: rgba(255,255,255,.72);
  backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 12px 38px rgba(70,51,45,.07);
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 224px; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,253,250,.76);
  border: 1px solid rgba(113,83,82,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  font: 600 21px/1 var(--serif);
}
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font: 600 19px/1.05 var(--serif); letter-spacing: .015em; }
.brand-copy small { font-size: 9px; letter-spacing: .16em; color: var(--muted); }
.desktop-nav { display: flex; gap: 25px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: .065em;
  color: #625a56;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--rose-deep);
  transition: right .16s var(--ease-fast);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; align-items: center; gap: 5px; font-size: 10px; letter-spacing: .12em; color: #9b918b; }
.lang-switch a { opacity: .55; }
.lang-switch a.active { opacity: 1; color: var(--ink); font-weight: 600; }
.nav-book {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 11px;
  background: #332c29;
  color: #fff;
  font-size: 10px;
  letter-spacing: .08em;
  transition: transform .18s var(--ease-fast), background .18s var(--ease-fast);
}
.nav-book:hover { transform: translateY(-1px); background: #282220; }
.menu-toggle { display: none; width: 38px; height: 38px; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; background: var(--ink); margin: 6px 0; }
.mobile-menu { display: none; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 10px;
  letter-spacing: .23em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 13px;
  font-size: 11px;
  letter-spacing: .065em;
  transition: transform .22s var(--ease-smooth), box-shadow .22s var(--ease-smooth), background .22s var(--ease-smooth), border-color .22s var(--ease-smooth);
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: #332c29; color: #fff; box-shadow: 0 10px 26px rgba(50,42,39,.14); }
.button-primary:hover { box-shadow: 0 14px 32px rgba(50,42,39,.18); }
.button-ghost { border: 1px solid rgba(68,54,50,.16); background: rgba(255,255,255,.30); }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-size: 11px; letter-spacing: .07em; }
.text-link span { transition: transform .16s var(--ease-fast); }
.text-link:hover span,
.text-link:focus-visible span { transform: translate(3px,-3px); }

.hero {
  min-height: 840px;
  padding-top: 144px;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 34px;
  perspective: 1200px;
}
.hero-copy { position: relative; z-index: 4; padding-left: 14px; }
.hero h1,
.services-copy h2,
.gallery-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.038em;
  color: #2b2623;
}
.hero h1 { font-size: clamp(68px, 7.1vw, 108px); line-height: .82; }
.hero h1 em,
.services-copy h2 em,
.gallery-heading h2 em { font-weight: 500; color: var(--rose-deep); }
.hero-lead {
  width: min(510px, 96%);
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--muted);
}
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.hero-proof {
  width: min(560px, 100%);
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-proof div {
  min-height: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 11px 16px 11px 0;
}
.hero-proof div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.hero-proof strong { font: 600 16px/1 var(--serif); }
.hero-proof span { font-size: 9px; letter-spacing: .045em; color: var(--muted); }

.hero-stage {
  position: relative;
  min-height: 630px;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.hero-stage.is-interactive .layer { will-change: transform; }
.layer { transform-style: preserve-3d; }
.stage-halo {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle at 35% 32%, rgba(255,255,255,.9), rgba(231,211,205,.60) 42%, rgba(202,176,170,.18) 72%, transparent 76%);
  filter: blur(4px);
}
.stage-plate {
  position: absolute;
  width: 62%;
  height: 65%;
  left: 21%;
  top: 18%;
  border-radius: 48% 48% 46% 44% / 34% 40% 54% 58%;
  background: linear-gradient(145deg, rgba(255,255,255,.48), rgba(230,220,211,.28));
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 24px 70px rgba(107,77,68,.06);
  transform: rotate(-6deg);
}
.hero-portrait {
  position: absolute;
  width: min(402px, 63%);
  aspect-ratio: .74;
  left: 27%;
  top: 8%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px 28px 96px 28px;
  background: #eadfd9;
  box-shadow: var(--shadow-focal);
  border: 1px solid rgba(255,255,255,.82);
}
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(49,35,31,.24));
  pointer-events: none;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(.98) brightness(1.02); }
.hero-portrait figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #fff;
}
.hero-portrait figcaption span { font: 600 22px/1 var(--serif); letter-spacing: .15em; }
.hero-portrait figcaption small { font-size: 9px; letter-spacing: .11em; opacity: .84; }
.pearl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, #eadfd9 55%, #cbb7ac 100%);
  box-shadow: inset -6px -8px 16px rgba(115,88,79,.10), 0 14px 30px rgba(92,68,61,.10);
}
.pearl-one { width: 52px; height: 52px; left: 16%; bottom: 17%; opacity: .9; }

.transition-band {
  width: min(1240px, calc(100vw - 20px));
  margin: -12px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: #9b8e87;
  font-size: 8px;
  letter-spacing: .22em;
}
.transition-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,86,77,.18), transparent);
  transform-origin: center;
}
.section-space { padding-top: 148px; padding-bottom: 86px; }

.services-grid {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr);
  gap: clamp(60px, 8vw, 132px);
  align-items: start;
}
.services-copy { padding-top: 4px; }
.services-copy h2 { font-size: clamp(52px, 5.4vw, 78px); line-height: .9; }
.services-lead {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.service-stack { border-top: 1px solid var(--line-strong); }
.service-row {
  display: grid;
  grid-template-columns: 54px minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 126px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.service-number { align-self: start; padding-top: 7px; font: 500 17px/1 var(--serif); color: #ad9991; }
.service-info h3 {
  margin: 0;
  font: 500 clamp(28px, 3vw, 38px)/1 var(--serif);
  letter-spacing: -.02em;
  transition: transform .18s var(--ease-fast), color .18s var(--ease-fast);
}
.service-info p { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.service-price {
  align-self: start;
  padding-top: 6px;
  color: #655b56;
  font-size: 11px;
  letter-spacing: .045em;
  transition: color .18s var(--ease-fast), transform .18s var(--ease-fast);
}
.service-row:hover .service-info h3 { transform: translateX(4px); color: #3b302c; }
.service-row:hover .service-price { transform: translateX(-2px); color: var(--rose-deep); }

.gallery-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 82px;
  background: linear-gradient(180deg, rgba(234,223,217,.26), rgba(255,255,255,.18));
  border-top: 1px solid rgba(112,90,82,.08);
  border-bottom: 1px solid rgba(112,90,82,.08);
}
.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  align-items: end;
}
.gallery-heading h2 { font-size: clamp(54px, 6vw, 86px); line-height: .9; }
.gallery-heading > p { margin: 0 0 9px; font-size: 13px; line-height: 1.8; color: var(--muted); }
.gallery-scene {
  position: relative;
  height: 700px;
  margin-top: 76px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.gallery-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 21px;
  background: #e8dcd5;
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  isolation: isolate;
  transition: box-shadow .30s var(--ease-smooth);
}
.gallery-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(40,31,28,.26));
  pointer-events: none;
  z-index: 1;
}
.gallery-card:hover { box-shadow: var(--shadow-focal); }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) brightness(1.01);
  transition: transform .30s var(--ease-smooth);
}
.gallery-card:hover img { transform: scale(1.018); }
.gallery-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255,255,255,.92);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.22);
}
.gallery-card-1 { width: 34%; height: 480px; left: 5%; top: 70px; transform: rotateY(4deg) rotateZ(-1deg) translateZ(36px); z-index: 4; }
.gallery-card-2 { width: 28%; height: 360px; left: 37%; top: 12px; transform: rotateY(-1.5deg) rotateZ(1deg) translateZ(6px); z-index: 2; }
.gallery-card-3 { width: 29%; height: 430px; right: 4%; top: 112px; transform: rotateY(-5deg) rotateZ(.5deg) translateZ(44px); z-index: 5; }
.gallery-card-4 { width: 23%; height: 280px; left: 35%; bottom: 18px; transform: rotateY(2deg) rotateZ(-1.5deg) translateZ(-6px); z-index: 1; }
.gallery-card-5 { width: 20%; height: 250px; right: 21%; bottom: 2px; transform: rotateY(-2deg) rotateZ(1.5deg) translateZ(14px); z-index: 3; }
.gallery-placeholder { display: grid; place-items: stretch; }
.placeholder-art {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 32% 26%, rgba(255,255,255,.85), transparent 18%), linear-gradient(145deg, #e9d7d4, #d9c6c0 48%, #eee5df);
}
.placeholder-art span { font: 500 clamp(54px, 8vw, 120px)/1 var(--serif); color: rgba(255,255,255,.55); }
.gallery-orbit {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 26%;
  top: 78px;
  border-radius: 50%;
  border: 1px solid rgba(155,118,119,.10);
  pointer-events: none;
  transform: rotateX(72deg) rotateZ(10deg);
}
.gallery-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.gallery-foot p { max-width: 500px; color: var(--muted); font-size: 12px; line-height: 1.78; }

.experience-panel {
  padding: 54px;
  border-radius: 28px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: var(--shadow-soft);
}
.experience-panel h2 { margin: 0; font: 500 clamp(54px,6vw,82px)/.9 var(--serif); }
.experience-panel h2 em { color: var(--rose-deep); font-weight: 500; }
.experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.experience-grid article { padding-top: 18px; border-top: 1px solid var(--line); }
.experience-grid span { font: 500 16px/1 var(--serif); color: var(--rose-deep); }
.experience-grid h3 { margin: 18px 0 8px; font: 500 25px/1.05 var(--serif); }
.experience-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.72; }

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr auto;
  gap: 40px;
  align-items: end;
  padding: 50px;
  border-radius: 28px;
  background: #332c29;
  color: #f8f1ec;
}
.contact-card .eyebrow { color: #d7b9ba; }
.contact-card h2 { margin: 0; color: #f9f5f1; font: 500 clamp(48px,5vw,72px)/.9 var(--serif); }
.contact-card h2 em { color: #d8bcbc; font-weight: 500; }
.contact-details { display: grid; gap: 10px; }
.contact-details p { margin: 0; font-size: 12px; color: rgba(255,255,255,.68); line-height: 1.6; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; }
.contact-card .button-primary { background: #f5ebe6; color: #332c29; }
.contact-card .button-ghost { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05); }
.v2-footer { display: flex; justify-content: space-between; padding: 38px 0 44px; color: #918680; font-size: 9px; letter-spacing: .10em; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal {
  opacity: .96;
  transform: translateY(14px);
  transition: opacity .56s var(--ease-slow), transform .56s var(--ease-slow);
}
.motion-ready .reveal.reveal-media {
  opacity: .99;
  transform: translateY(20px) scale(1.008);
  transition-duration: .68s;
}
.motion-ready .reveal.reveal-hero { transition-duration: .62s; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 28px, 900px); }
  .desktop-nav, .nav-book { display: none; }
  .menu-toggle { display: block; }
  .brand { min-width: 0; margin-right: auto; }
  .nav-shell { gap: 14px; background: rgba(250,246,242,.46); }
  .v2-header.is-scrolled .nav-shell { background: rgba(250,246,242,.90); }
  .mobile-menu {
    width: var(--shell);
    margin: 8px auto 0;
    padding: 12px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.76);
    background: rgba(252,248,244,.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 42px rgba(70,51,45,.08);
  }
  .mobile-menu.open { display: grid; gap: 8px; }
  .mobile-menu a { padding: 9px 0; font-size: 12px; }

  .hero { grid-template-columns: 1fr; padding-top: 136px; min-height: auto; }
  .hero-copy { padding-left: 0; }
  .hero h1 { font-size: clamp(66px, 12vw, 100px); }
  .hero-stage { min-height: 610px; margin-top: -18px; }
  .hero-portrait { width: min(402px, 56vw); left: 31%; }

  .services-grid { grid-template-columns: 1fr; gap: 54px; }
  .services-copy { max-width: 620px; }
  .service-row { min-height: 112px; }

  .gallery-heading { grid-template-columns: 1fr; gap: 24px; }
  .gallery-heading > p { max-width: 520px; }
  .gallery-scene { height: 610px; }
  .gallery-card-1 { width: 38%; height: 420px; left: 1%; }
  .gallery-card-2 { width: 31%; height: 320px; left: 36%; }
  .gallery-card-3 { width: 34%; height: 390px; right: 0; }
  .gallery-card-4 { width: 25%; height: 250px; }
  .gallery-card-5 { width: 23%; height: 220px; right: 18%; }

  .experience-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr 1fr; }
  .contact-actions { grid-column: 1 / -1; flex-direction: row; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 22px); }
  body {
    background:
      radial-gradient(circle at 5% 7%, rgba(231,210,207,.32), transparent 22%),
      linear-gradient(180deg, #fbf8f5 0%, #f6f0ec 46%, #faf7f4 100%);
  }
  .ambient { display: none; }
  .grain { opacity: .018; }
  .v2-header { top: 8px; }
  .nav-shell { min-height: 60px; border-radius: 15px; padding: 9px 11px; }
  .v2-header.is-scrolled .nav-shell { min-height: 58px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 17px; }
  .brand-mark { width: 36px; height: 36px; font-size: 19px; }
  .lang-switch { font-size: 10px; }

  .hero { padding-top: 112px; gap: 20px; }
  .hero h1 { font-size: clamp(58px, 17.5vw, 82px); }
  .hero-lead { font-size: 14px; line-height: 1.72; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 28px; }
  .hero-proof { margin-top: 44px; }
  .hero-proof div { min-height: 64px; padding: 10px 8px 10px 0; }
  .hero-proof div + div { padding-left: 9px; }
  .hero-proof strong { font-size: 14px; }
  .hero-proof span { font-size: 10px; line-height: 1.25; }
  .hero-stage { min-height: 455px; margin-top: 4px; }
  .stage-halo { width: 330px; height: 330px; }
  .stage-plate { width: 76%; height: 65%; left: 12%; top: 16%; transform: rotate(-4deg); }
  .hero-portrait { width: 72%; left: 13%; top: 7%; border-radius: 22px 22px 70px 22px; }
  .hero-portrait figcaption { left: 16px; right: 16px; bottom: 15px; }
  .hero-portrait figcaption span { font-size: 18px; }
  .hero-portrait figcaption small { font-size: 8px; }
  .pearl-one { width: 40px; height: 40px; left: 5%; bottom: 13%; }

  .transition-band { grid-template-columns: 1fr; text-align: center; margin-top: 8px; font-size: 8px; line-height: 1.4; }
  .transition-band .transition-line { display: none; }
  .section-space { padding-top: 102px; padding-bottom: 52px; }

  .services-grid { gap: 44px; }
  .services-copy h2, .gallery-heading h2 { font-size: clamp(46px, 14.5vw, 64px); }
  .services-lead { font-size: 13px; }
  .service-row { grid-template-columns: 34px minmax(0,1fr); gap: 11px; min-height: 0; padding: 24px 0; }
  .service-number { font-size: 15px; padding-top: 5px; }
  .service-info h3 { font-size: 27px; }
  .service-info p { margin-top: 7px; font-size: 11px; }
  .service-price { grid-column: 2; padding-top: 2px; font-size: 11px; }
  .service-row:hover .service-info h3,
  .service-row:hover .service-price { transform: none; }

  .gallery-wrap { margin-top: 46px; }
  .gallery-scene { height: 530px; margin-top: 50px; }
  .gallery-card { border-radius: 17px; }
  .gallery-card-1 { width: 58%; height: 340px; left: -4%; top: 70px; transform: rotateZ(-.7deg) translateZ(22px); }
  .gallery-card-2 { width: 46%; height: 255px; left: 40%; top: 4px; transform: rotateZ(.7deg) translateZ(4px); }
  .gallery-card-3 { width: 52%; height: 306px; right: -9%; top: 175px; transform: rotateZ(.3deg) translateZ(26px); }
  .gallery-card-4,
  .gallery-card-5,
  .gallery-orbit { display: none; }
  .gallery-card figcaption { font-size: 8px; }
  .gallery-foot { align-items: flex-start; flex-direction: column; gap: 12px; }

  .experience-panel { padding: 28px 19px; border-radius: 22px; }
  .experience-grid { margin-top: 34px; }
  .contact-card { grid-template-columns: 1fr; padding: 28px 20px; border-radius: 22px; gap: 26px; }
  .contact-actions { grid-column: auto; flex-direction: column; align-items: stretch; }
  .v2-footer { flex-direction: column; gap: 8px; padding-top: 28px; }

  .motion-ready .reveal,
  .motion-ready .reveal.reveal-media { transform: translateY(10px); opacity: .98; }
}

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