:root {
  --ink: #0f2033;
  --ink-85: rgba(15, 32, 51, .85);
  --ink-70: rgba(15, 32, 51, .68);
  --ink-45: rgba(15, 32, 51, .45);
  --ink-25: rgba(15, 32, 51, .25);
  --sage: #6f9d8d;
  --sage-deep: #33544a;
  --sage-pale: #e3ede9;
  --porcelain: #f1f5f3;
  --porcelain-deep: #e7ede9;
  --white: #ffffff;
  --brass: #b6863f;
  --line: rgba(15, 32, 51, .13);
  --line-soft: rgba(15, 32, 51, .07);
  --shadow: 0 30px 60px -25px rgba(15, 32, 51, .28);
  --ease: cubic-bezier(.19, 1, .22, 1);
  --display: 'Fraunces', serif;
  --head: 'Outfit', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media(max-width:900px) {
  .wrap {
    padding: 0 22px;
  }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

h1,
h2,
h3 {
  font-family: var(--head);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
}

.italic-line {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* ---------- Focus pull reveal system ---------- */
/* Removed filter:blur — it forces a compositing layer repaint on every frame.
       opacity + transform are the only GPU-composited properties: zero paint cost. */
.fp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.fp.in {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.fp2 {
  transition-delay: .12s;
}

.fp3 {
  transition-delay: .24s;
}

.fp4 {
  transition-delay: .36s;
}

.fp5 {
  transition-delay: .48s;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--head);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}

.btn-primary {
  background: var(--sage-deep);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-magnetic {
  transition: transform .25s cubic-bezier(.19, 1, .22, 1), box-shadow .45s var(--ease), background .3s ease;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--sage-deep);
  background: var(--white);
}

.btn-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid currentColor;
  position: relative;
  flex: none;
}

.btn-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .4;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}

.btn:hover .btn-ring::after {
  transform: scale(1.4);
  opacity: 0;
}

/* ---------- Nav ---------- */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s ease, padding .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}

header.site.scrolled {
  background: rgba(241, 245, 243, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 0;
  border-color: var(--line);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--brass), var(--sage-deep));
  /* No transition — updated via rAF, transition would cause double-animation */
  z-index: 1;
  will-change: width;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* --- Brand lockup --- */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ffffff;
  padding: 6px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 4px 14px rgba(15, 32, 51, 0.08);
  border: 1px solid rgba(15, 32, 51, 0.06);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-word,
.brand-inline {
  font-family: 'Avenir Next', 'Avenir', 'Raleway', sans-serif;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: lowercase;
  white-space: nowrap;
}

.brand-word {
  font-size: 27px;
  line-height: 1;
  display: inline-block;
}

.brand-inline {
  font-size: inherit;
  line-height: inherit;
  display: inline !important;
  white-space: nowrap;
}

.brand-inline span,
.brand-inline .brand-eye,
.brand-eye {
  letter-spacing: .18em;
  display: inline !important;
}

.brand-word em,
.brand-inline em {
  font-style: normal;
  font-weight: 500;
  color: var(--sage);
}

/* In dark contexts, buttons, or hero elements: eye is white and mitra is green (#8fc0ae) */
footer .brand-inline,
footer .brand-inline .brand-eye,
.book .brand-inline,
.book .brand-inline .brand-eye,
.btn .brand-inline,
.btn .brand-inline .brand-eye,
.btn-primary .brand-inline,
.btn-primary .brand-inline .brand-eye,
.hours-card .brand-inline,
.hours-card .brand-inline .brand-eye,
.gallery-sec .brand-inline,
.gallery-sec .brand-inline .brand-eye,
.mnav .brand-inline,
.mnav .brand-inline .brand-eye,
.equiv-col .brand-inline,
.equiv-col .brand-inline .brand-eye,
.dark .brand-inline,
.dark .brand-inline .brand-eye,
.vid-meta .brand-inline,
.vid-meta .brand-inline .brand-eye {
  color: #ffffff;
}

footer .brand-inline em,
.book .brand-inline em,
.btn .brand-inline em,
.btn-primary .brand-inline em,
.hours-card .brand-inline em,
.gallery-sec .brand-inline em,
.mnav .brand-inline em,
.equiv-col .brand-inline em,
.dark .brand-inline em,
.vid-meta .brand-inline em {
  color: #8fc0ae;
}

.brand-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--sage-deep);
  opacity: .85;
  letter-spacing: .01em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-70);
  transition: color .25s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-70);
}

.icon-sm {
  width: 15px;
  height: 15px;
  flex: none;
}

.nav-btn {
  padding: 11px 20px;
  font-size: 13px;
}

.burger {
  display: none;
  width: 22px;
  height: 16px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.4px;
  background: var(--ink);
  transition: all .3s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 7px;
}

.burger span:nth-child(3) {
  top: 14px;
}

@media(max-width:980px) {
  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .burger {
    display: block;
  }
}

@media(max-width:640px) {
  .nav-btn {
    display: none;
  }
}

@media(max-width:520px) {
  .brand-lockup {
    gap: 10px;
  }

  .brand-logo-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(15, 32, 51, 0.06);
  }

  .cred-logo-wrap,
  .foot-logo-wrap {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 6px;
  }

  .brand-logo-wrap img,
  .cred-logo-wrap img,
  .foot-logo-wrap img {
    width: 100%;
    height: 100%;
  }

  .brand-word {
    font-size: 20px;
  }

  .brand-sub {
    display: block;
    font-size: 11px;
    opacity: 0.85;
    line-height: 1.1;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  background:
    radial-gradient(900px 700px at 85% -5%, rgba(111, 157, 141, .22), transparent 55%),
    radial-gradient(600px 500px at 10% 90%, rgba(182, 134, 63, .07), transparent 60%),
    linear-gradient(180deg, var(--porcelain) 0%, #edf3f0 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230f2033' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media(max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-eyebrow {
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(64px, 9vw, 118px);
  line-height: 0.95;
  letter-spacing: -.04em;
  font-weight: 700;
}

.hero h1 span {
  display: block;
}

.hero h1 .h-sub {
  font-size: clamp(52px, 7vw, 96px);
  color: var(--ink-70);
  font-weight: 500;
  letter-spacing: -.035em;
}

.hero h1 .h-accent {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
  font-size: clamp(56px, 7.5vw, 106px);
  letter-spacing: -.02em;
}

.hero p.lede {
  margin-top: 28px;
  max-width: 500px;
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-70);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.trust-strip {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-70);
  letter-spacing: .01em;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-ico {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--brass);
  stroke-width: 1.8;
}

.trust-strip b {
  color: var(--ink);
  font-weight: 500;
}

.trust-hours {
  display: inline-flex;
  align-items: center;
  background: rgba(111, 157, 141, 0.16);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(51, 84, 74, 0.18);
  color: var(--sage-deep) !important;
}

.vid-chip-dot.hours-dot {
  background: var(--brass);
  box-shadow: 0 0 6px rgba(182, 134, 63, 0.7);
}

/* ============ Hero visual: Circular Cinematic ============ */

.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

@media(max-width:980px) {
  .hero-visual {
    height: 380px;
    order: -1;
    margin-bottom: -10px;
  }
}

@media(max-width:480px) {
  .hero-visual {
    height: 290px;
  }
}

/* --- scene: fixed square, centred --- */
.hero-vid-scene {
  position: relative;
  width: 500px;
  height: 500px;
  flex: none;
  transition: transform .3s cubic-bezier(.19, 1, .22, 1);
  will-change: transform;
  contain: layout style;
}

@media(max-width:980px) {
  .hero-vid-scene {
    width: 350px;
    height: 350px;
  }
}

@media(max-width:480px) {
  .hero-vid-scene {
    width: 265px;
    height: 265px;
  }
}

/* --- breathing atmospheric aura BEHIND the circle --- */
.hero-vid-scene::before {
  content: "";
  position: absolute;
  inset: -70px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 45% 40%,
      rgba(111, 157, 141, .36) 0%,
      rgba(111, 157, 141, .10) 48%,
      transparent 72%),
    radial-gradient(ellipse at 70% 72%,
      rgba(182, 134, 63, .10), transparent 65%);
  animation: auraBreath 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  will-change: opacity, transform;
}

@keyframes auraBreath {

  0%,
  100% {
    opacity: .65;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

/* --- circular video container with smooth radial mask --- */
.hero-vid-wrap {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  /* Radial gradient mask: solid centre → gracefully dissolves at edge.
         The fade zone is wide (60%→100%) so there's NO hard ring. */
  -webkit-mask-image:
    radial-gradient(circle at 50% 50%,
      #000 0%, #000 54%,
      rgba(0, 0, 0, .92) 62%,
      rgba(0, 0, 0, .70) 72%,
      rgba(0, 0, 0, .35) 84%,
      transparent 100%);
  mask-image:
    radial-gradient(circle at 50% 50%,
      #000 0%, #000 54%,
      rgba(0, 0, 0, .92) 62%,
      rgba(0, 0, 0, .70) 72%,
      rgba(0, 0, 0, .35) 84%,
      transparent 100%);
  animation: circleReveal 1.8s cubic-bezier(.19, 1, .22, 1) .2s both;
}

@keyframes circleReveal {
  from {
    opacity: 0;
    transform: scale(.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- video: cinematic grade + Ken Burns that ZOOMS IN at end --- */
/* filter removed from video — composites on CPU; colour grading now via overlay tints */
.hero-vid-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  /* Starts wide, drifts gently, finishes with a slow confident zoom-in */
  animation: kenBurns 28s cubic-bezier(.37, 0, .63, 1) infinite alternate;
  transform-origin: 50% 46%;
  will-change: transform;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.14) translate(0px, 0px);
  }

  35% {
    transform: scale(1.09) translate(-5px, -3px);
  }

  70% {
    transform: scale(1.11) translate(4px, 3px);
  }

  100% {
    transform: scale(1.18) translate(0px, 0px);
  }

  /* ← zoom in */
}

/* --- sage colour grade overlay (circular) --- */
.hero-vid-tint {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%,
      rgba(111, 157, 141, .16), transparent 65%),
    radial-gradient(circle at 72% 78%,
      rgba(15, 32, 51, .12), transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

/* --- paint the page background back in from the outside edge ---
       This is the KEY trick: instead of inset box-shadow (harsh),
       we use a ::after on the scene that radiates from transparent
       (at circle edge) to the page bg colour — seamless, natural. */
.hero-vid-edge {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      transparent 48%,
      rgba(237, 243, 240, .50) 60%,
      rgba(241, 245, 243, .82) 72%,
      var(--porcelain) 84%);
  pointer-events: none;
  z-index: 3;
}

/* --- film grain: uses transform instead of background-position for GPU compositing --- */
.hero-vid-grain {
  position: absolute;
  inset: -80px;
  /* oversized so translate doesn't show edges */
  border-radius: 50%;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  pointer-events: none;
  z-index: 4;
  will-change: transform;
  animation: grainShift .75s steps(1) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0px, 0px);
  }

  25% {
    transform: translate(-20px, 16px);
  }

  50% {
    transform: translate(13px, -18px);
  }

  75% {
    transform: translate(-16px, 20px);
  }
}

/* --- floating chips (bottom of circle) --- */
.hero-vid-chips {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  animation: chipsRise 1.2s cubic-bezier(.19, 1, .22, 1) 2s both;
}

@keyframes chipsRise {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media(max-width:480px) {
  .hero-vid-chips {
    display: none;
  }
}

.vid-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(241, 245, 243, .74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 84, 74, .14);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .11em;
  color: var(--sage-deep);
  text-transform: uppercase;
  white-space: nowrap;
}

.vid-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-deep);
  flex: none;
}

.vid-chip-dot.live {
  background: #3dba6e;
  animation: chipPing .9s ease-in-out infinite alternate;
}

@keyframes chipPing {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: .45;
    transform: scale(.68);
  }
}

@media(max-width:980px) {
  .hero-vid-chips {
    bottom: 14px;
    right: 6px;
  }

  .vid-chip {
    font-size: 9px;
    padding: 5px 10px;
  }
}

@media(max-width:480px) {
  .hero-vid-chips {
    display: none;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--ink-45);
  z-index: 3;
}

@media(max-width:640px) {
  .scroll-cue {
    display: none;
  }
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--ink-45), transparent);
  animation: cue 2s ease-in-out infinite;
}

@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- section shell ---------- */
section {
  position: relative;
  padding: 130px 0;
}

@media(max-width:900px) {
  section {
    padding: 86px 0;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-top: 18px;
  line-height: 1.12;
}

.section-head p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-70);
  line-height: 1.65;
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ---------- Intro / emotional ---------- */
.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media(max-width:900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.intro-statement {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.28;
}

.intro-body {
  margin-top: 28px;
  font-size: 16.5px;
  color: var(--ink-70);
  line-height: 1.75;
  max-width: 480px;
}

.intro-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}

.intro-photo .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(15, 32, 51, .82), transparent);
  color: #fff;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .03em;
  line-height: 1.5;
}

/* ---------- flow strip ---------- */
.flow {
  background: var(--porcelain);
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media(max-width:900px) {
  .flow-strip {
    grid-template-columns: 1fr 1fr;
    border-bottom: none;
  }
}

@media(max-width:480px) {
  .flow-strip {
    grid-template-columns: 1fr;
  }
}

.flow-item {
  padding: 32px 22px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .35s ease;
}

.flow-item:last-child {
  border-right: none;
}

@media(max-width:900px) {
  .flow-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 22px 16px;
  }
}

.flow-item:hover {
  background: var(--white);
}

.flow-idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: .1em;
}

.flow-title {
  font-family: var(--head);
  font-size: 17px;
  margin-top: 14px;
  font-weight: 500;
}

.flow-arrow {
  position: absolute;
  top: 34px;
  right: -11px;
  color: var(--ink-25);
  font-size: 15px;
  z-index: 2;
}

@media(max-width:900px) {
  .flow-arrow {
    display: none;
  }
}

/* ---------- tray (services) interactive VFX ---------- */
.tray {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.tray::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -120px;
  top: 15%;
  background: radial-gradient(circle, rgba(111, 157, 141, 0.12) 0%, rgba(182, 134, 63, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.tray-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}

@media(max-width: 1040px) {
  .tray-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.tray-list {
  border-top: 1px solid var(--line);
  position: relative;
}

.tray-row {
  display: grid;
  grid-template-columns: 54px 44px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  border-radius: 14px;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
  background: transparent;
  user-select: none;
}

.tray-list:hover .tray-row {
  opacity: 0.45;
}

.tray-list:hover .tray-row:hover,
.tray-row.is-active {
  opacity: 1 !important;
  background: linear-gradient(90deg, rgba(227, 237, 233, 0.7) 0%, rgba(241, 245, 243, 0.35) 100%);
  box-shadow: 0 10px 30px -10px rgba(15, 32, 51, 0.08);
  transform: translateX(6px);
}

.tray-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, var(--sage), var(--sage-deep));
  border-radius: 4px;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.tray-row.is-active::before,
.tray-row:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.tray-idx {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-45);
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.tray-row.is-active .tray-idx,
.tray-row:hover .tray-idx {
  color: var(--sage-deep);
}

.tray-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--porcelain);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease;
  flex: none;
}

.tray-row.is-active .tray-icon-wrap,
.tray-row:hover .tray-icon-wrap {
  background: var(--sage-deep);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(51, 84, 74, 0.25);
}

.tray-icon {
  width: 24px;
  height: 24px;
  color: var(--sage-deep);
  transition: color 0.35s ease;
}

.tray-row.is-active .tray-icon,
.tray-row:hover .tray-icon {
  color: #ffffff;
}

.tray-main-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.tray-title {
  font-family: var(--head);
  font-size: clamp(16.5px, 2vw, 20.5px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.tray-title .why {
  display: block;
  margin-top: 4px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.01em;
}

.tray-desc {
  font-size: 14.5px;
  color: var(--ink-70);
  line-height: 1.6;
  margin-top: 4px;
}


/* Floating / Sticky Visual Stage (Desktop) — hidden, replaced by hover popup */
.tray-stage-col {
  display: none;
}

/* ---- Floating hover image popup ---- */
#trayHoverPopup {
  position: fixed;
  z-index: 9999;
  width: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: #0f2033;
  border: 1px solid rgba(111, 157, 141, 0.32);
  box-shadow: 0 24px 60px -12px rgba(15, 32, 51, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92) translateX(12px);
  transform-origin: left center;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

#trayHoverPopup.is-visible {
  opacity: 1;
  transform: scale(1) translateX(0);
}

#trayHoverPopup.flip-left {
  transform-origin: right center;
}

#trayHoverPopup.flip-left:not(.is-visible) {
  transform: scale(0.92) translateX(-12px);
}

#trayHoverPopup .popup-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #091522;
}

#trayHoverPopup .popup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

#trayHoverPopup .popup-img.is-active {
  opacity: 1;
  transform: scale(1);
}

#trayHoverPopup .popup-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(111, 157, 141, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15, 32, 51, 0.04) 0%, rgba(15, 32, 51, 0.85) 100%);
  pointer-events: none;
  z-index: 2;
}

#trayHoverPopup .popup-hud {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(0deg, rgba(15, 32, 51, 0.95) 0%, rgba(15, 32, 51, 0.6) 60%, transparent 100%);
  z-index: 3;
}

#trayHoverPopup .popup-hud-title {
  font-family: var(--head);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

#trayHoverPopup .popup-hud-device {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--brass);
  letter-spacing: 0.06em;
  margin-top: 3px;
}

#trayHoverPopup .popup-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), var(--sage), transparent);
  box-shadow: 0 0 10px rgba(111, 157, 141, 0.8);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

#trayHoverPopup .popup-scanline.animate {
  animation: scanSweep 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media(max-width: 1040px) {
  #trayHoverPopup {
    display: none;
  }
}

.tray-stage-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0f2033;
  border: 1px solid rgba(111, 157, 141, 0.28);
  box-shadow: 0 32px 75px -18px rgba(15, 32, 51, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.tray-stage-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #091522;
}

.tray-stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08) translateZ(0);
  filter: saturate(0.96) contrast(1.03);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.55s ease;
}

.tray-stage-img.is-active {
  opacity: 1;
  transform: scale(1) translateZ(0);
  filter: saturate(1.05) contrast(1.02);
}

/* Ambient atmospheric glow */
.stage-ambient-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 12%, rgba(111, 157, 141, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15, 32, 51, 0.05) 0%, rgba(15, 32, 51, 0.88) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Telemetry scanning beam */
.stage-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), var(--sage), transparent);
  box-shadow: 0 0 16px rgba(111, 157, 141, 0.85);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

.stage-scanline.animate {
  animation: scanSweep 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes scanSweep {
  0% {
    top: 0%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 0.85;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Top HUD header overlay */
.stage-hud-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(15, 32, 51, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.stage-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3dba6e;
  box-shadow: 0 0 8px #3dba6e;
  animation: stageDotPulse 1.2s ease-in-out infinite alternate;
}

@keyframes stageDotPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 12px #3dba6e;
  }
}

.stage-step-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(15, 32, 51, 0.6);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Bottom HUD info overlay */
.stage-hud-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(0deg, rgba(15, 32, 51, 0.95) 0%, rgba(15, 32, 51, 0.7) 60%, transparent 100%);
  z-index: 3;
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-hud-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.stage-hud-title {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.stage-hud-device {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.04em;
}

.stage-hud-highlight {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

/* Mobile Inline Visual Preview */
.tray-mobile-preview {
  display: none;
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px -8px rgba(15, 32, 51, 0.25);
  border: 1px solid rgba(111, 157, 141, 0.25);
}

.tray-mobile-preview img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.tray-mobile-hud {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(15, 32, 51, 0.9) 0%, transparent 100%);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tray-mobile-hud span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
}

@media(max-width: 1040px) {
  .tray-mobile-preview {
    display: block;
  }
}

@media(max-width: 820px) {
  .tray-row {
    grid-template-columns: 36px 36px 1fr;
    gap: 12px;
    padding: 22px 12px;
  }


}

@media(max-width: 480px) {
  .tray-row {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 18px 8px;
  }

  .tray-idx {
    display: none;
  }

  .tray-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .tray-icon {
    width: 18px;
    height: 18px;
  }

  .tray-mobile-preview img {
    height: 170px;
  }
}

/* ---------- technology / same protocol table ---------- */
.tech {
  background: var(--sage-deep);
  color: var(--white);
}

.tech .eyebrow {
  color: #cfe3db;
}

.tech .eyebrow::before {
  background: var(--brass);
}

.tech .section-head h2 {
  color: #fff;
}

.tech .section-head p {
  color: rgba(255, 255, 255, .72);
}

.equiv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

@media(max-width:820px) {
  .equiv {
    grid-template-columns: 1fr;
  }
}

.equiv-col {
  padding: 30px 24px;
}

@media(max-width:480px) {
  .equiv-col {
    padding: 24px 16px;
  }
}

.equiv-col+.equiv-col {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

@media(max-width:820px) {
  .equiv-col+.equiv-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }
}

.equiv-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: #cfe3db;
  text-transform: uppercase;
}

.equiv-place {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  margin-top: 10px;
  color: #fff;
}

.equiv ul {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.equiv li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .86);
  align-items: flex-start;
  line-height: 1.5;
}

.equiv li svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--brass);
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  margin-top: 1px;
}

@media(max-width:680px) {
  .tech-stats {
    grid-template-columns: 1fr;
  }
}

.tech-stat {
  background: var(--sage-deep);
  padding: 28px 24px;
}

@media(max-width:480px) {
  .tech-stat {
    padding: 22px 16px;
  }
}

.tech-stat .num {
  font-family: var(--head);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
}

.tech-stat .num .u {
  font-family: var(--mono);
  font-size: clamp(14px, 2.5vw, 20px);
  color: var(--brass);
  font-weight: 400;
}

.tech-stat .lbl {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

/* ---------- video ---------- */
.video-sec {
  background: var(--ink);
  padding: 100px 0 110px;
}

/* ── Two-column layout ─────────────────────────────────── */
.yt-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.yt-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Feature list */
.yt-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yt-feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
}

.yt-feat-icon {
  font-size: 18px;
  flex: none;
}

/* ── Right column ──────────────────────────────────────── */
.yt-right {
  position: relative;
  display: flex;
  justify-content: center;
}


/* ── YouTube scene wrapper ─────────────────────────────── */
.yt-scene {
  position: relative;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Ambient glow orbs */
.yt-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(70px);
  opacity: 0.18;
}

.yt-glow--left {
  background: radial-gradient(circle, #6f9d8d, transparent 70%);
  left: -60px;
}

.yt-glow--right {
  background: radial-gradient(circle, #b6863f, transparent 70%);
  right: -60px;
}

/* ── Frame wrapper ──────────────────────────────────────── */
.yt-frame-wrap {
  position: relative;
  width: 340px;
  max-width: 90vw;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(111, 157, 141, .3),
    0 32px 80px rgba(0, 0, 0, .65),
    0 0 60px rgba(111, 157, 141, .1);
  background: #0a1621;
}

/* ── HUD bars ───────────────────────────────────────────── */
.yt-frame-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(10, 22, 34, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  position: relative;
  z-index: 2;
}

.yt-frame-hud--bottom {
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,.06);
  justify-content: center;
}

.yt-hud-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.yt-hud-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 6px var(--sage);
  animation: hud-blink 2s ease-in-out infinite;
  flex: none;
}

@keyframes hud-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

.yt-hud-tag {
  font-size: 9.5px;
  color: rgba(255,255,255,.4);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.yt-hud-label {
  font-size: 9px;
  color: rgba(255,255,255,.35);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Iframe ─────────────────────────────────────────────── */
.yt-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
}

.yt-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Watch button ───────────────────────────────────────── */
.yt-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ff0000;
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(255, 0, 0, .3), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .35s cubic-bezier(.19,1,.22,1), box-shadow .35s ease;
  position: relative;
  z-index: 2;
}

.yt-watch-btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.yt-watch-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(255, 0, 0, .4), 0 4px 12px rgba(0,0,0,.4);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .yt-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .yt-right { order: -1; } /* Short appears first on mobile */

  .yt-copy {
    align-items: center;
    text-align: center;
  }

  .yt-copy p { max-width: 100% !important; }
  .yt-copy .yt-feat-list { align-items: flex-start; }
}

@media (max-width: 480px) {
  .yt-frame-wrap { width: 300px; }
  .yt-glow { display: none; }
  .video-sec { padding: 70px 0 80px; }
}


/* ---------- who for ---------- */
.who {
  background: var(--white);
}

.who-list {
  border-top: 1px solid var(--line);
}

.who-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.who-row:hover {
  background: var(--porcelain);
}

.who-num {
  font-family: var(--mono);
  color: var(--ink-25);
  font-size: 14px;
}

.who-name {
  font-family: var(--head);
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 500;
}

.who-name span {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 14.5px;
  color: var(--ink-70);
  margin-top: 6px;
}

.who-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--porcelain);
  padding: 8px;
  box-sizing: border-box;
  color: var(--sage-deep);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.who-row:hover .who-arrow {
  transform: translateX(6px);
  background: var(--sage-deep);
  color: #ffffff;
  border-color: var(--sage-deep);
  box-shadow: 0 4px 12px rgba(51, 84, 74, 0.25);
}

@media(max-width:640px) {
  .who-row {
    grid-template-columns: 50px 1fr;
    row-gap: 6px;
  }

  .who-arrow {
    display: none;
  }
}

/* ---------- why us / backed by ---------- */
.backed {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #0e2a24;
}

.backed .bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.backed .bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: grayscale(.15) contrast(1.05);
}

.backed .bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14, 42, 36, .97) 10%, rgba(14, 42, 36, .86) 45%, rgba(14, 42, 36, .7) 100%);
}

.backed-inner {
  position: relative;
  z-index: 2;
}

.backed .eyebrow {
  color: #9fc6b9;
}

.backed .eyebrow::before {
  background: var(--brass);
}

.backed-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}

@media(max-width:900px) {
  .backed-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.backed h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 18px;
  line-height: 1.18;
}

.backed p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.75;
  max-width: 480px;
}

.cred-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  flex-wrap: wrap;
}

.cred-logo-wrap {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.cred-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cred-text {
  min-width: 0;
}

.cred-text b {
  display: block;
  font-family: var(--head);
  font-size: 14.5px;
  font-weight: 500;
}

.cred-text span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  margin-top: 3px;
}

.stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

.stat-cell {
  background: #0e2a24;
  padding: 24px 20px;
}

@media(max-width:480px) {
  .stat-cell {
    padding: 18px 14px;
  }
}

.stat-cell .num {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 38px);
  color: #fff;
}

.stat-cell .lbl {
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.4;
}

/* ---------- how it works ---------- */
.how {
  background: var(--porcelain);
}

.how-steps {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}

.how-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.how-steps .how-step:last-child {
  border-bottom: 1px solid var(--line);
}

.how-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 46px;
  color: var(--sage-deep);
  line-height: 1;
}

.how-body h3 {
  font-size: 21px;
  font-weight: 500;
}

.how-body p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--ink-70);
  max-width: 560px;
  line-height: 1.65;
}

@media(max-width:640px) {
  .how-step {
    grid-template-columns: 56px 1fr;
  }

  .how-num {
    font-size: 30px;
  }
}

/* ---------- areas ---------- */
.areas {
  background: var(--white);
}

.areas-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
}

@media(max-width:900px) {
  .areas-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-70);
  transition: all .3s ease;
}

.chip-ico {
  width: 12px;
  height: 12px;
  flex: none;
  color: var(--sage);
  opacity: .8;
  transition: transform .25s ease, color .25s ease;
}

.chip:hover .chip-ico {
  color: var(--sage-deep);
  transform: scale(1.15);
  opacity: 1;
}

.chip:hover {
  border-color: var(--sage-deep);
  color: var(--ink);
  background: var(--porcelain);
}

.areas-note {
  margin-top: 26px;
  font-size: 14px;
  color: var(--ink-45);
  line-height: 1.6;
}

.areas-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h2-tight {
  font-size: clamp(26px, 3vw, 38px);
  margin-top: 18px;
}

.mt-16 {
  margin-top: 16px;
}

.hday.is-today {
  outline: 1.5px solid #b6863f;
  outline-offset: 1px;
}

.hours-live-dot.is-closed {
  background: var(--ink-45);
  box-shadow: none;
  animation: none;
}

/* ---------- faq ---------- */
.faq {
  background: var(--porcelain);
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
}

@media(max-width:900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--head);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}

.faq-icon {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--sage-deep);
  transition: transform .3s ease;
}

.faq-icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq-a p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-70);
  line-height: 1.65;
}

/* ---------- booking ---------- */
.book {
  background: var(--sage-deep);
  color: #fff;
  position: relative;
}

.book .eyebrow {
  color: #cfe3db;
}

.book .eyebrow::before {
  background: var(--brass);
}

.book .section-head h2 {
  color: #fff;
}

.book .section-head p {
  color: rgba(255, 255, 255, .72);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
}

@media(max-width:900px) {
  .book-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- EyeMitra visit hours card (Booking section) --- */
.hours-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px 22px;
  margin-top: 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.25);
}

.hours-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(182, 134, 63, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hours-card-inner {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hours-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dba6e;
  box-shadow: 0 0 10px #3dba6e;
  animation: chipPing 1.2s ease-in-out infinite alternate;
}

.hours-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfe3db;
  font-weight: 500;
}

.hours-time {
  font-family: var(--head);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 10px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hours-time span {
  font-size: 16px;
  font-weight: 500;
  color: var(--brass);
  margin-left: 2px;
}

.hours-days {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hday {
  padding: 4px 9px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hday.active {
  background: rgba(111, 157, 141, 0.35);
  color: #ffffff;
  border-color: rgba(111, 157, 141, 0.6);
  font-weight: 500;
}

.hours-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.book-aside .aside-item {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.book-aside .aside-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.aside-item .k {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #cfe3db;
}

.aside-ico {
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--brass);
}

.foot-ico {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--sage);
  margin-right: 8px;
  vertical-align: -2px;
}

.aside-item .v {
  margin-top: 8px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.55;
}

.wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #fff;
  font-family: var(--head);
  font-size: 14.5px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: 4px;
}

.wa-inline svg {
  width: 17px;
  height: 17px;
}

form.booking {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  color: var(--ink);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media(max-width:520px) {
  form.booking {
    padding: 22px 16px;
  }
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width:680px) {
  .f-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-45);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.label-hint {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: .02em;
  text-transform: none;
  margin-left: 5px;
}

.field input,
.field select,
.field textarea {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  background: var(--porcelain);
  transition: border-color .25s ease, background .25s ease;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: block;
  color: var(--ink);
  scroll-margin-top: 80px;
  scroll-margin-bottom: 90px;
}

/* iOS WebKit Date & Time specific fixes */
.field input[type="date"],
.field input[type="time"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 48px;
  line-height: 1.2;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background-color: var(--porcelain);
  color: var(--ink);
}

.field input[type="date"]::-webkit-date-and-time-value,
.field input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
  min-height: 1.2em;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2333544a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #c25b4a;
  background: #fdf3f1;
}

.field-err {
  font-size: 12.5px;
  color: #c25b4a;
  min-height: 15px;
  display: block;
  margin-top: 4px;
  line-height: 1.35;
}

.field-notice {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: #27493e;
  background: rgba(111, 157, 141, 0.15);
  border: 1px solid rgba(111, 157, 141, 0.32);
  border-radius: 6px;
  padding: 7px 10px;
  margin-top: 6px;
  line-height: 1.4;
}

.field-notice.warning {
  color: #7a3e14;
  background: rgba(182, 134, 63, 0.16);
  border-color: rgba(182, 134, 63, 0.4);
}

.slot-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.slot-pill {
  padding: 5px 9px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--ink-70);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 32, 51, 0.14);
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}

.slot-pill:hover:not(:disabled) {
  background: #fff;
  border-color: var(--sage);
  color: var(--ink);
}

.slot-pill.active {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(51, 84, 74, 0.25);
}

.slot-pill:disabled {
  opacity: 0.35;
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---------- mobile field fixes: no zoom-jump, no autofill/invalid "dirty" look ---------- */
.field input:invalid,
.field select:invalid,
.field textarea:invalid {
  box-shadow: none;
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px var(--porcelain) inset;
  box-shadow: 0 0 0 1000px var(--porcelain) inset;
  transition: background-color 5000s ease-in-out 0s;
}

@media(max-width:768px) {

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12px;
  color: var(--ink-45);
  flex: 1;
  min-width: 160px;
}

/* ---------- final cta ---------- */
.final-cta {
  background: var(--porcelain);
  text-align: center;
}

.final-cta .italic-line {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto;
}

.final-cta .btn {
  margin-top: 42px;
}

/* ---------- footer ---------- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: 70px 0 30px;
  width: 100%;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.2fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

@media(max-width:900px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
    gap: 28px;
  }
}

@media(max-width:560px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-logo-wrap {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}

.foot-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.foot-brand .brand-word {
  color: #fff;
}

.foot-tagline {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  max-width: 280px;
  line-height: 1.6;
}

.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 16px;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a,
.foot-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  transition: color .25s ease;
  line-height: 1.55;
}

.foot-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
  text-decoration: none;
  transition: color .25s ease;
}

a.foot-item,
.foot-item[href] {
  cursor: pointer;
}

.foot-item:hover {
  color: #ffffff;
}

.foot-map-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.foot-item svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--sage);
  margin-top: 3px;
}

.foot-col a:hover {
  color: #fff;
}

.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.foot-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.foot-social svg {
  width: 15px;
  height: 15px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

/* ---------- sticky mobile cta ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  box-shadow: 0 -8px 24px rgba(15, 32, 51, .12);
  width: 100%;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transition: transform .25s ease;
}

.mobile-bar a {
  background: var(--white);
  padding: 14px 6px;
  text-align: center;
  font-family: var(--head);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.mobile-bar a.primary {
  background: var(--sage-deep);
  color: #fff;
}

.mobile-bar svg {
  width: 15px;
  height: 15px;
  flex: none;
}

@media(max-width:820px) {
  .mobile-bar {
    display: grid;
  }

  footer {
    padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
  }

  .final-cta {
    padding-bottom: 70px;
  }

  body.booking-input-focused .mobile-bar {
    transform: translateY(100%);
    pointer-events: none;
  }
}

@media(max-width:360px) {
  .mobile-bar a {
    padding: 12px 3px;
    font-size: 11px;
    gap: 4px;
  }

  .mobile-bar svg {
    width: 13px;
    height: 13px;
  }
}

/* mobile nav drawer */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mnav.open {
  transform: translateY(0);
}

.mnav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mnav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mnav-logo img {
  height: 26px;
  background: #fff;
  padding: 4px 6px;
  border-radius: 4px;
}

.mnav-logo-word {
  font-family: 'Avenir Next', 'Avenir', 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  letter-spacing: .04em;
  text-transform: lowercase;
  white-space: nowrap;
}

.mnav-logo-word .brand-eye {
  letter-spacing: .18em;
}

.mnav-logo-word em {
  font-style: normal;
  font-weight: 500;
  color: #8fc0ae;
}

.mnav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transition: background .25s ease, border-color .25s ease;
}

.mnav-close:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .3);
}

.mnav-close svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.mnav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}

.mnav-links a {
  font-family: var(--head);
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .55em;
  color: rgba(255, 255, 255, .85);
  transition: color .25s ease;
}

.mnav-links a:hover {
  color: #fff;
}

.mnav-links a svg {
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex: none;
  opacity: .4;
  transition: opacity .25s ease, transform .3s var(--ease);
}

.mnav-links a:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

.mnav-foot {
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mnav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: var(--head);
  font-weight: 500;
  font-size: 15px;
  transition: background .3s ease, transform .3s var(--ease), box-shadow .3s ease;
}

.mnav-btn:active {
  transform: scale(.97);
}

.mnav-btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.mnav-btn-call {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
}

.mnav-btn-call:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3);
}

.mnav-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .25);
}

.mnav-btn-wa:hover {
  background: #1fb859;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .4);
}

/* reveal helper for counters */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ---------- trust marquee ---------- */
.marquee {
  background: var(--sage-deep);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
}

.marquee-dot {
  color: var(--brass);
  font-size: 14px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- Reduced motion: respect user preference ---------- */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .fp {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-vid-parallax,
  .btn-magnetic {
    transform: none !important;
  }

  .marquee-track {
    animation: none !important;
  }

  .vision-focus-overlay,
  .vision-scan-container {
    display: none !important;
  }

  .vision-target-revealing {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
       CINEMATIC LENS / VISION SCAN NAVIGATION TRANSITION
       ========================================================================== */
section[id],
[id="top"],
[id="book"],
[id="gallery"],
[id="experience"],
[id="services"],
[id="why"],
[id="areas"],
[id="faq"] {
  scroll-margin-top: 82px;
}

/* Fixed full-screen cinematic overlay */
.vision-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease-out;
}

.vision-transition-overlay.is-active {
  opacity: 1;
}

.vision-transition-overlay.is-settling {
  opacity: 0;
  transition: opacity 0.28s ease-in;
}

/* 1. Backdrop: dark teal radial gradients & deep obsidian vignette */
.vto-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 72% 50%, rgba(70, 120, 112, 0.28) 0%, rgba(20, 50, 48, 0.18) 32%, rgba(15, 32, 51, 0.78) 55%, rgba(4, 15, 24, 0.98) 88%),
    linear-gradient(110deg, #031715 0%, #061f1d 45%, #071c1b 100%);
  opacity: 0.98;
}

/* 2. Soft atmospheric glow behind the curved lens arc */
.vto-glow {
  position: absolute;
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(143, 192, 174, 0.25) 0%,
      rgba(111, 157, 141, 0.12) 34%,
      rgba(182, 134, 63, 0.06) 55%,
      transparent 72%);
  filter: blur(42px);
  pointer-events: none;
  animation: vtoGlowPulse 2.8s ease-in-out infinite alternate;
}

@keyframes vtoGlowPulse {
  0% {
    opacity: 0.65;
    transform: translateY(-50%) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
  }
}

/* 3. Large optical lens arc */
.vto-lens-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vto-lens {
  position: absolute;
  width: min(92vw, 1020px);
  height: min(92vw, 1020px);
  right: -32vw;
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  border-radius: 50%;
  border: 1.5px solid rgba(170, 220, 211, 0.38);
  box-shadow:
    inset 0 0 90px rgba(60, 150, 140, 0.12),
    0 0 60px rgba(70, 160, 150, 0.18),
    0 0 120px rgba(182, 134, 63, 0.1);
  animation: vtoLensBreath 3.2s ease-in-out infinite;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .vto-lens {
    right: -42vw;
    width: min(115vw, 700px);
    height: min(115vw, 700px);
  }
}

@keyframes vtoLensBreath {

  0%,
  100% {
    transform: translateY(-50%) scale(0.98);
    opacity: 0.85;
  }

  50% {
    transform: translateY(-50%) scale(1.018);
    opacity: 1;
  }
}

.vto-lens-ring-inner {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px dashed rgba(182, 134, 63, 0.4);
  opacity: 0.75;
}

.vto-lens-reticle {
  position: absolute;
  inset: 58px;
  border-radius: 50%;
  border: 1px solid rgba(111, 157, 141, 0.22);
}

/* Luminous orbiting optical bead on the lens circumference */
.vto-orbit-track {
  position: absolute;
  inset: -13px;
  border-radius: 50%;
  transform: rotate(-38deg);
  animation: vtoBeadTravel 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes vtoBeadTravel {
  0% {
    transform: rotate(-48deg);
  }

  100% {
    transform: rotate(44deg);
  }
}

.vto-optical-bead {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vto-bead-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 14px #ffffff,
    0 0 28px rgba(240, 220, 160, 1),
    0 0 50px rgba(111, 157, 141, 0.95);
}

.vto-bead-halo {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 18px rgba(182, 134, 63, 0.55);
  animation: vtoBeadPulse 0.6s ease-in-out infinite alternate;
}

@keyframes vtoBeadPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.22);
    opacity: 1;
  }
}

/* 4. Horizontal laser scanning beam intersecting the lens and optical bead */
.vto-scan-beam-wrap {
  position: absolute;
  left: -5%;
  width: 110%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: vtoScanSweep 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes vtoScanSweep {
  0% {
    transform: translateY(calc(-50% - 15vh));
    opacity: 0.25;
  }

  50% {
    transform: translateY(-50%);
    opacity: 1;
  }

  100% {
    transform: translateY(calc(-50% + 15vh));
    opacity: 0.3;
  }
}

.vto-scan-beam {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(111, 157, 141, 0.15) 12%,
      rgba(182, 134, 63, 0.5) 30%,
      rgba(255, 245, 215, 1) 48%,
      rgba(255, 255, 255, 1) 52%,
      rgba(182, 134, 63, 0.7) 65%,
      rgba(111, 157, 141, 0.3) 85%,
      transparent 100%);
  box-shadow:
    0 0 10px rgba(255, 245, 215, 0.95),
    0 0 30px rgba(182, 134, 63, 0.8),
    0 0 65px rgba(111, 157, 141, 0.5);
}

.vto-scan-glow {
  position: absolute;
  left: 15%;
  right: 15%;
  top: -14px;
  height: 30px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(182, 134, 63, 0.2) 35%,
      rgba(143, 192, 174, 0.32) 50%,
      rgba(182, 134, 63, 0.2) 65%,
      transparent 100%);
  filter: blur(10px);
}

/* 5. Centered Optometric HUD Readout */
.vto-hud {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  pointer-events: none;
  animation: vtoTextFocus 0.74s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vtoTextFocus {
  0% {
    opacity: 0;
    letter-spacing: 0.55em;
    filter: blur(9px);
    transform: scale(0.94);
  }

  55% {
    opacity: 1;
    filter: blur(0px);
  }

  100% {
    opacity: 1;
    letter-spacing: 0.32em;
    filter: blur(0px);
    transform: scale(1);
  }
}

.vto-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(92vw, 520px);
  white-space: nowrap;
  font-family: var(--mono, monospace);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--sage, #8fc0ae);
  text-transform: uppercase;
  background: rgba(15, 32, 51, 0.65);
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(143, 192, 174, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vto-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fc0ae;
  box-shadow: 0 0 8px #8fc0ae;
  animation: vtoDotPulse 0.8s ease-in-out infinite alternate;
}

@keyframes vtoDotPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.vto-title {
  font-family: var(--head, 'Outfit', sans-serif);
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin: 0;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 55px rgba(111, 157, 141, 0.38);
}

@media (max-width: 520px) {
  .vto-kicker {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .vto-title {
    max-width: 92vw;
    letter-spacing: 0.16em;
  }

  .vto-sub {
    max-width: 92vw;
    text-align: center;
  }
}

.vto-sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono, monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(220, 195, 130, 0.92);
  text-transform: uppercase;
}

.vto-sep {
  color: rgba(255, 255, 255, 0.35);
}

/* Target section focus reveal styling */
.vision-target-revealing {
  filter: blur(2.5px);
  opacity: 0.9;
  transition: filter 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.32s ease-out;
}

.vision-target-focused {
  filter: blur(0px) !important;
  opacity: 1 !important;
}

/* ===== GALLERY SECTION ===== */
.gallery-sec {
  position: relative;
  padding: 96px 0 96px;
  background: var(--ink);
  overflow: hidden;
}

.gallery-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(111, 157, 141, .13) 0%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 80% 70%, rgba(182, 134, 63, .07) 0%, transparent 60%);
  pointer-events: none;
}

/* Eyebrow + heading */
.gallery-hd {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.gallery-hd .eyebrow {
  justify-content: center;
  color: var(--sage);
  margin-bottom: 18px;
}

.gallery-hd .eyebrow::before {
  background: var(--sage);
}

.gallery-hd h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  font-weight: 500;
  letter-spacing: -.02em;
}

.gallery-hd h2 em {
  font-family: 'Avenir Next', 'Avenir', 'Raleway', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  letter-spacing: .04em;
}

.gallery-hd h2 em .g-mitra {
  color: #8fc0ae;
}

.gallery-sub {
  font-family: var(--body);
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255, 255, 255, .68);
  max-width: 620px;
  margin: 16px auto 0;
  line-height: 1.65;
  font-weight: 400;
}

/* ===== STAGE — BEAUTIFULLY ALIGNED 3-COLUMN GRID ===== */
.gallery-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== CARDS ===== */
.g-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(15, 32, 51, .6);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, .5);
  transition:
    transform .4s cubic-bezier(.16, 1, .3, 1),
    box-shadow .4s cubic-bezier(.16, 1, .3, 1),
    border-color .35s ease;
  user-select: none;
  outline: none;
}

.g-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  pointer-events: none;
  filter: brightness(.92) contrast(1.03);
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
}

/* Hover & Focus state */
.g-card:hover,
.g-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(111, 157, 141, .65);
  box-shadow:
    0 22px 48px -10px rgba(0, 0, 0, .65),
    0 0 30px rgba(111, 157, 141, .22);
}

.g-card:hover img,
.g-card:focus-visible img {
  transform: scale(1.05);
  filter: brightness(1.02) contrast(1.05);
}

/* Elegant dark vignette & hover zoom action */
.g-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 32, 51, 0) 55%, rgba(10, 20, 32, .55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background .35s ease;
}

.g-card:hover .g-card-overlay,
.g-card:focus-visible .g-card-overlay {
  background: linear-gradient(180deg, rgba(15, 32, 51, .15) 0%, rgba(10, 20, 32, .6) 100%);
}

.g-card-zoom-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 32, 51, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s ease, transform .35s cubic-bezier(.16, 1, .3, 1), background .25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}

.g-card:hover .g-card-zoom-btn,
.g-card:focus-visible .g-card-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.g-card-zoom-btn svg {
  width: 20px;
  height: 20px;
}

/* Hide any stray labels */
.g-card-label {
  display: none !important;
}

/* Featured / active border accent */
.g-card.g-active {
  border-color: rgba(111, 157, 141, .45);
}

/* ===== LIGHTBOX ===== */
.g-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.g-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.g-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 32, .93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.g-lb-img-wrap {
  position: relative;
  z-index: 2;
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  max-height: 85dvh;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(111, 157, 141, .3),
    0 40px 120px rgba(0, 0, 0, .8);
  transform: scale(.9) translateY(20px);
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
}

.g-lightbox.open .g-lb-img-wrap {
  transform: scale(1) translateY(0);
}

.g-lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 85vh;
  max-height: 85dvh;
}

/* Lightbox nav arrows */
.g-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(8px);
}

.g-lb-arrow:hover {
  background: rgba(111, 157, 141, .25);
  transform: translateY(-50%) scale(1.1);
}

.g-lb-prev {
  left: 16px;
}

.g-lb-next {
  right: 16px;
}

.g-lb-arrow svg {
  width: 20px;
  height: 20px;
}

/* Lightbox close */
.g-lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(8px);
}

.g-lb-close:hover {
  background: rgba(220, 80, 80, .3);
  transform: scale(1.1) rotate(90deg);
}

.g-lb-close svg {
  width: 18px;
  height: 18px;
}

/* Counter */
.g-lb-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
}

/* ===== FILMSTRIP SCRUBBER ===== */
.gallery-strip {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 4px 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.g-thumb {
  flex: 0 0 66px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, .12);
  transition: border-color .25s, transform .25s, opacity .25s, box-shadow .25s;
  opacity: .5;
}

.g-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.g-thumb:hover {
  opacity: .9;
  transform: translateY(-2px);
  border-color: rgba(111, 157, 141, .6);
}

.g-thumb:hover img {
  transform: scale(1.08);
}

.g-thumb.g-thumb-active {
  border-color: var(--sage);
  opacity: 1;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(111, 157, 141, .35);
}

/* ===== FLOATING HINT ===== */
.gallery-hint {
  text-align: center;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  position: relative;
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .gallery-hd {
    margin-bottom: 40px;
  }

  .gallery-stage {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .gallery-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .g-card {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }

  .g-thumb {
    flex: 0 0 54px;
    height: 38px;
  }

  .gallery-strip {
    justify-content: flex-start;
    padding: 6px 16px;
  }

  .gallery-hd h2 {
    font-size: 28px;
  }
}

/* ===== Refactor utility classes ===== */
.icon-sm {
  width: 13px;
  height: 13px;
  flex: none;
}

.icon-sage-deep {
  color: var(--sage-deep);
}

.flow--flush-y {
  padding-top: 0;
  padding-bottom: 0;
}

.wrap--flush {
  padding: 0;
}

.hero-copy-muted {
  color: rgba(255, 255, 255, .72);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
}

.is-hidden {
  display: none;
}

.f-row--message {
  grid-template-columns: 1fr;
  margin-bottom: 26px;
}

.brand-letter-spaced {
  letter-spacing: .18em;
}

.brand-accent {
  color: #8fc0ae;
  font-style: normal;
}

.brand-sub--footer {
  color: #ffffff;
  opacity: 1;
}

.foot-item--map {
  margin-top: 14px;
}

.foot-map-link {
  color: #8fc0ae;
  font-weight: 500;
}

.icon-sage-footer {
  color: #8fc0ae;
}

.booking-notice-icon {
  flex-shrink: 0;
}

/* ===== LANDSCAPE & COMPACT VIEWPORT HARDENING ===== */
@media (orientation: landscape) and (max-height: 520px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .mnav-top {
    padding: 12px 20px;
  }

  .mnav-links {
    padding: 14px 20px;
  }

  .mnav-links a {
    padding: 8px 0;
    font-size: 16px;
  }

  .g-lb-img-wrap {
    max-height: 80dvh;
  }

  .g-lb-img-wrap img {
    max-height: 80dvh;
  }
}