:root {
  --ink: #09090a;
  --charcoal: #131315;
  --charcoal-2: #1b1b1e;
  --paper: #f5f0e6;
  --paper-2: #ebe3d7;
  --text-dark-heading: #f4f1e8;
  --text-dark-body: #bfb6a8;
  --text-dark-muted: #91887d;
  --text-dark-strong: #e8e2d8;
  --text-dark-accent: #b08a55;
  --text-light-heading: #1e1c19;
  --text-light-body: #514b44;
  --text-light-muted: #786f65;
  --text-light-accent: #99683e;
  --text: var(--text-dark-heading);
  --muted: var(--text-dark-body);
  --ink-text: var(--text-light-heading);
  --ink-muted: var(--text-light-body);
  --gold: #caa552;
  --gold-bright: #eed588;
  --gold-deep: #8b6827;
  --line: rgba(238, 213, 136, 0.22);
  --line-dark: rgba(20, 18, 15, 0.14);
  --success: #dff0d8;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --max: 1280px;
  --header-h: 82px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --hero-perimeter-duration: 6s;
  --hero-perimeter-easing: linear;
  --hero-perimeter-delay: 0s;
  --hero-perimeter-direction: normal;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

/* Remove the injected mount from the layout box tree so the sticky navigation
   is constrained by the page viewport rather than by a short wrapper. */
[data-site-header] { display: contents; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.62;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html.menu-open {
  overflow: hidden;
  padding-right: var(--menu-scrollbar-width, 0px);
}

/* Session-scoped opening mark: CSS owns the cinematic exit so it can never block the page. */
.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  visibility: visible;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(202,165,82,.055), transparent 34%),
    #080809;
  animation: brand-intro-exit 1700ms cubic-bezier(.22,.7,.22,1) both;
}
.brand-intro.is-skipped,
.brand-intro.is-complete { display: none; }
.brand-intro__mark {
  position: relative;
  width: clamp(170px, 22vw, 286px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}
.brand-intro__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  filter: blur(7px) brightness(.7);
  transform: translate3d(0, 0, 0) scale(.97);
  animation: brand-logo-resolve 980ms cubic-bezier(.2,.75,.22,1) 120ms both;
}
.brand-intro__glint {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(225,184,97,.12) 46%, rgba(255,241,194,.58) 50%, rgba(225,184,97,.14) 54%, transparent 62%);
  filter: blur(.4px) drop-shadow(0 0 10px rgba(225,184,97,.22));
  mix-blend-mode: screen;
  transform: translate3d(-115%, 0, 0);
  animation: brand-logo-glint 560ms cubic-bezier(.35,.05,.25,1) 650ms both;
}
@keyframes brand-logo-resolve {
  0% { opacity: 0; filter: blur(7px) brightness(.7); transform: translate3d(0, 0, 0) scale(.97); }
  24% { opacity: .18; }
  100% { opacity: 1; filter: blur(0) brightness(1); transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes brand-logo-glint {
  0% { opacity: 0; transform: translate3d(-115%, 0, 0); }
  18% { opacity: .5; }
  78% { opacity: .5; }
  100% { opacity: 0; transform: translate3d(115%, 0, 0); }
}
@keyframes brand-intro-exit {
  0%, 70.5% { opacity: 1; visibility: visible; }
  99% { opacity: 0; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
strong { font-weight: 600; }
::selection { color: #0b0b0b; background: var(--gold-bright); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 900px); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 132px) 0; position: relative; }
.section--compact { padding: clamp(52px, 6vw, 86px) 0; }
.section--paper { color: var(--ink-text); background: var(--paper); }
.section--paper-alt { color: var(--ink-text); background: var(--paper-2); }
.section--charcoal { background: var(--charcoal); }
.section--border { border-top: 1px solid var(--line); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-top: 0;
}
h1 { font-size: clamp(3.3rem, 6.15vw, 7rem); line-height: .97; margin-bottom: 24px; }
h2 { font-size: clamp(2.65rem, 4.7vw, 5rem); line-height: 1.02; margin-bottom: 22px; }
h3 { font-size: clamp(1.5rem, 2.25vw, 2.2rem); font-weight: 500; line-height: 1.05; letter-spacing: -.012em; margin-bottom: 12px; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.45vw, 1.28rem); line-height: 1.62; font-weight: 400; color: var(--text-dark-body); max-width: 700px; }
.section--paper .lead, .section--paper-alt .lead { color: var(--ink-muted); }
.kicker { font-size: .92rem; color: var(--text-dark-muted); }
.section--paper .kicker { color: var(--text-light-muted); }

.utility-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--text-dark-strong);
  background: #050506;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .76rem;
  letter-spacing: .035em;
}
.utility-bar__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.utility-bar__group { display: flex; align-items: center; gap: 24px; }
.utility-bar a { text-decoration: none; }
.utility-bar a:hover { color: var(--text-dark-heading); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(9,9,10,.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(9,9,10,.92);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 210px; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand__text { display: grid; line-height: 1.1; }
.brand__text strong { font-family: var(--font-display); font-size: 1.14rem; font-weight: 500; letter-spacing: 0; }
.brand__text span { margin-top: 3px; color: var(--text-dark-muted); font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.nav__link { position: relative; color: var(--text-dark-strong); text-decoration: none; font-size: .86rem; font-weight: 500; letter-spacing: 0; }
.nav__link::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold-bright); transition: right .25s var(--ease); }
.nav__link:hover, .nav__link[aria-current='page'] { color: var(--text-dark-heading); }
.nav__link:hover::after, .nav__link[aria-current='page']::after { right: 0; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle span { margin: 4px 0; }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .nav__link:focus-visible, .menu-toggle:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible, .filter-btn:focus-visible {
  outline: 3px solid rgba(238,213,136,.45);
  outline-offset: 3px;
}
.btn--gold { color: #111; background: linear-gradient(120deg, var(--gold-bright), var(--gold)); box-shadow: 0 12px 28px rgba(202,165,82,.18); }
.btn--gold:hover { box-shadow: 0 16px 36px rgba(202,165,82,.28); }
.btn--ghost { color: var(--text-dark-strong); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.03); }
.btn--ghost:hover { border-color: var(--gold); background: rgba(202,165,82,.08); }
.btn--dark { color: var(--paper); background: var(--ink); }
.btn--dark:hover { background: #222; }
.btn--line-dark { color: var(--ink-text); border-color: var(--line-dark); background: transparent; }
.btn--line-dark:hover { border-color: var(--gold-deep); }
.btn svg { width: 18px; height: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero { position: relative; overflow: hidden; padding: clamp(58px, 6vw, 98px) 0 clamp(80px, 8vw, 125px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); gap: clamp(42px, 6vw, 90px); align-items: center; }
.hero__copy { position: relative; z-index: 2; }
.hero__copy h1 { color: var(--text-dark-heading); font-weight: 400; line-height: .97; letter-spacing: -.02em; }
.hero__copy h1 em { color: inherit; font-style: italic; }
.hero__copy .lead { max-width: 610px; }
.hero__media { position: relative; min-height: 660px; }
.hero__image {
  position: absolute;
  inset: 0 0 42px 54px;
  border-radius: 160px 24px 160px 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #25221d, #0d0d0f);
  box-shadow: var(--shadow);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.04) brightness(.75); }
.hero__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,7,.05), rgba(6,6,7,.38)); }
.hero__social-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(48%, 330px);
  padding: 10px;
  border-radius: 18px;
  color: var(--ink-text);
  background: var(--paper);
  box-shadow: 0 24px 55px rgba(0,0,0,.35);
  transform: rotate(-2deg);
  z-index: 2;
}
.hero__social-card img { width: 100%; aspect-ratio: 1.22; object-fit: cover; border-radius: 12px; }
.hero__social-card p { margin: 10px 8px 5px; font-size: .73rem; line-height: 1.45; color: var(--ink-muted); }
.hero__seal {
  position: absolute;
  top: 28px;
  right: -26px;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(9,9,10,.82);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  text-align: center;
  line-height: 1.05;
  font-size: 1rem;
  transform: rotate(8deg);
  z-index: 3;
}
.hero__seal span { display: block; font-family: var(--font-body); font-size: .54rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }

.section-heading { margin-bottom: clamp(34px,5vw,62px); }
.section-heading h2 { margin-bottom: 0; }
.section-heading--with-excerpt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: end;
}
.section-heading__excerpt {
  max-width: 430px;
  margin: 0;
  justify-self: end;
  font-size: clamp(.95rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--text-dark-heading);
  background: linear-gradient(145deg, #2d2922, #111114);
  isolation: isolate;
  border: 1px solid rgba(183,139,67,.18);
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease), filter .5s ease;
  filter: saturate(.82) contrast(1.04) brightness(.76); z-index: -2;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,6,.04) 24%, rgba(5,5,6,.92) 100%);
  transition: background .4s ease; z-index: -1;
}
.service-card__summary,
.service-card__details { position: absolute; inset: 0; padding: 30px; transition: opacity .3s ease, transform .38s var(--ease); }
.service-card__summary { display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.service-card__details {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  opacity: 0; transform: translateY(16px); pointer-events: none;
}
.service-card__category { color: var(--text-dark-accent); font-size: .72rem; font-weight: 600; letter-spacing: .03em; }
.service-card h3 { margin: 8px 0 10px; font-size: clamp(1.95rem,2.8vw,2.9rem); font-weight: 500; line-height: 1.02; }
.service-card__summary h3 { margin: 0 0 18px; }
.service-card__details h3 { margin: 6px 0; font-size: clamp(1.65rem,2.3vw,2.25rem); }
.service-card p { color: var(--text-dark-body); font-size: .92rem; margin-bottom: 18px; max-width: 42ch; }
.service-card__open,
.service-card__close {
  appearance: none; border: 0; background: transparent; padding: 0; cursor: pointer;
  color: var(--text-dark-accent); font: inherit; font-size: .78rem; font-weight: 600;
  text-transform: none; letter-spacing: .01em;
}
.service-card__open { display: inline-flex; align-items: center; gap: 9px; }
.service-card__open::after { content: '→'; transition: transform .25s ease; }
.service-card__open:hover::after { transform: translateX(5px); }
.service-card__close { position: absolute; top: 26px; right: 28px; color: var(--text-dark-strong); }
.service-card__list { margin: 6px 0 14px; padding: 0; list-style: none; width: 100%; max-width: 440px; }
.service-card__list li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .94rem; line-height: 1.35; }
.service-card__cta { display: inline-flex; align-items: center; min-height: 44px; padding: 0 17px; border: 1px solid rgba(225,184,97,.65); color: var(--text-dark-strong); text-decoration: none; font-size: .76rem; font-weight: 600; text-transform: none; letter-spacing: .01em; }
.service-card:hover:not(.is-active) img { transform: scale(1.035); filter: saturate(.9) contrast(1.04) brightness(.8); }
.service-card.is-active img { transform: scale(1.035); filter: blur(7px) saturate(.6) contrast(1.02) brightness(.38); }
.service-card.is-active::before { background: rgba(7,7,8,.62); }
.service-card.is-active .service-card__summary { opacity: 0; transform: translateY(14px); pointer-events: none; }
.service-card.is-active .service-card__details { opacity: 1; transform: translateY(0); pointer-events: auto; }
.service-card__open:focus-visible,
.service-card__close:focus-visible,
.service-card__cta:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(42px,7vw,100px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__image { overflow: hidden; border-radius: var(--radius-lg); min-height: 580px; background: #1c1a18; }
.split__image img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; filter: saturate(.78); }
.split__image--arch { border-radius: 260px 260px 30px 30px; }
.split__content .lead { margin-bottom: 26px; }

.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.experience-card { padding: 26px; min-height: 250px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); }
.experience-card__icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-bright); margin-bottom: 28px; }
.experience-card h3 { font-size: 1.65rem; }
.experience-card p { color: var(--muted); font-size: .86rem; }

.gallery-preview { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 280px 280px; gap: 14px; }
.gallery-tile { position: relative; overflow: hidden; border-radius: var(--radius); background: #211f1b; }
.gallery-tile:first-child { grid-row: 1 / 3; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.82); transition: transform .6s var(--ease); }
.gallery-tile:hover img { transform: scale(1.035); }
.gallery-tile__label { position: absolute; left: 16px; bottom: 16px; padding: 8px 11px; border-radius: 999px; color: #fff; background: rgba(8,8,9,.66); backdrop-filter: blur(10px); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.why-card { padding: 30px; background: var(--paper); min-height: 230px; }
.why-card span { display: block; color: var(--gold-deep); font-family: var(--font-display); font-size: 2.35rem; font-weight: 500; margin-bottom: 32px; }
.why-card h3 { font-size: 1.55rem; }
.why-card p { color: var(--ink-muted); font-size: .85rem; }

.location-panel { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--charcoal); }
.location-panel__map { min-height: 480px; position: relative; overflow: hidden; background: #202024; }
.location-panel__map img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.location-panel__map::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(19,19,21,.45)); }
.location-panel__content { padding: clamp(36px,5vw,74px); align-self: center; }
.location-list { display: grid; gap: 20px; margin: 30px 0; }
.location-item { display: grid; grid-template-columns: 40px 1fr; gap: 14px; }
.location-item__icon { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-bright); }
.location-item strong { display: block; margin-bottom: 2px; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; }
.location-item span, .location-item a { color: var(--muted); font-size: .88rem; text-decoration: none; }
.location-item a:hover { color: var(--gold-bright); }

.cta-band { position: relative; overflow: hidden; text-align: center; padding: clamp(82px,10vw,150px) 0; background: radial-gradient(circle at 50% 100%, rgba(202,165,82,.15), transparent 45%), #080809; }
.cta-band::before, .cta-band::after { content: ''; position: absolute; border: 1px solid rgba(202,165,82,.13); border-radius: 50%; width: 600px; height: 600px; top: -360px; }
.cta-band::before { left: -260px; }
.cta-band::after { right: -260px; }
.cta-band h2 { max-width: 900px; margin-inline: auto; }
.cta-band .lead { margin-inline: auto; }
.cta-band .actions { justify-content: center; margin-top: 30px; }

.site-footer { padding: 70px 0 30px; background: #050506; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr .9fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-col h3 { font-family: var(--font-body); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 18px; color: var(--text-dark-accent); }
.footer-col a, .footer-col span { display: block; color: var(--text-dark-body); text-decoration: none; font-size: .82rem; margin: 9px 0; }
.footer-col a:hover { color: var(--text-dark-heading); }
.footer-bottom { display: flex; justify-content: flex-start; gap: 20px; padding-top: 32px; margin-top: 46px; border-top: 1px solid rgba(255,255,255,.07); color: var(--text-dark-muted); font-size: .68rem; }


/* Inner pages */
.page-hero { position: relative; padding: clamp(76px,8vw,128px) 0 clamp(60px,7vw,102px); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ''; position: absolute; width: 520px; height: 520px; right: -220px; top: -260px; border: 1px solid rgba(202,165,82,.18); border-radius: 50%; }
.page-hero__grid { display: grid; grid-template-columns: 1fr minmax(380px,.78fr); gap: 70px; align-items: end; }
.page-hero h1 { font-size: clamp(3.2rem,6vw,6.6rem); margin-bottom: 20px; }
.page-hero__aside { padding-left: 28px; border-left: 1px solid var(--line); color: var(--muted); font-size: .94rem; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; margin-bottom: 24px; color: #918a80; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumbs a { color: var(--gold-bright); text-decoration: none; }

.category-nav { position: sticky; top: var(--header-h); z-index: 80; background: rgba(245,240,230,.94); border-bottom: 1px solid var(--line-dark); backdrop-filter: blur(16px); }
.category-nav__inner { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0; scrollbar-width: none; }
.category-nav__inner::-webkit-scrollbar { display: none; }
.category-nav a { flex: 0 0 auto; padding: 9px 13px; color: var(--ink-muted); border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: .72rem; font-weight: 600; }
.category-nav a:hover { color: var(--ink-text); border-color: var(--line-dark); }

.service-section { scroll-margin-top: calc(var(--header-h) + 68px); }
.service-section__head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: start; margin-bottom: 34px; }
.service-section__head h2 { font-size: clamp(2.5rem,4vw,4.45rem); }
.service-section__intro { color: var(--ink-muted); max-width: 720px; }
.service-accordion { border-top: 1px solid var(--line-dark); }
.service-accordion details { border-bottom: 1px solid var(--line-dark); }
.service-accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 0; list-style: none; font-weight: 600; color: var(--ink-text); }
.service-accordion summary::-webkit-details-marker { display: none; }
.service-accordion summary::after { content: '+'; flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--gold-deep); transition: transform .25s ease; }
.service-accordion details[open] summary::after { transform: rotate(45deg); }
.service-accordion__content { padding: 0 0 24px; color: var(--ink-muted); font-size: .88rem; }
.service-name-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 28px; padding: 0; margin: 0; list-style: none; }
.service-name-grid li { padding: 10px 0; border-bottom: 1px dotted rgba(20,18,15,.16); }
.price-note { margin-top: 28px; padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(202,165,82,.08); color: var(--ink-muted); font-size: .82rem; }

.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(44px,7vw,100px); align-items: start; }
.story-sidebar { position: sticky; top: calc(var(--header-h) + 40px); }
.story-sidebar__card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.story-sidebar__card img { width: 120px; margin-bottom: 18px; }
.story-sidebar__card p { color: var(--muted); font-size: .82rem; }
.story-content h2 { font-size: clamp(2.7rem,4.8vw,5rem); }
.story-content p { color: var(--text-dark-body); font-size: 1rem; }
.story-content .pull-quote { margin: 46px 0; padding: 36px 0 36px 32px; border-left: 1px solid var(--gold); color: var(--text-dark-heading); font-family: var(--font-display); font-size: clamp(1.8rem,3vw,3rem); line-height: 1.15; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { padding: 30px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.26); }
.value-card span { color: var(--gold-deep); font-size: .7rem; letter-spacing: .12em; }
.value-card h3 { margin-top: 18px; }
.value-card p { color: var(--ink-muted); font-size: .85rem; }

.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 40px; }
.filter-btn { padding: 9px 13px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .72rem; font-weight: 600; }
.filter-btn:hover, .filter-btn.is-active { color: #111; border-color: var(--gold); background: var(--gold-bright); }
.gallery-masonry { columns: 3 300px; column-gap: 16px; }
.gallery-item { position: relative; break-inside: avoid; margin-bottom: 16px; overflow: hidden; border-radius: var(--radius); background: #202024; }
.gallery-item img { width: 100%; aspect-ratio: var(--ratio, 4/5); object-fit: cover; filter: saturate(.75) brightness(.85); transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item__caption { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: end; justify-content: space-between; gap: 14px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(7,7,8,.66); backdrop-filter: blur(12px); }
.gallery-item__caption strong { display: block; font-size: .78rem; }
.gallery-item__caption span { display: block; color: #bbb3a7; font-size: .65rem; margin-top: 3px; }
.gallery-item[hidden] { display: none; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(38px,6vw,86px); align-items: start; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.contact-card span { display: block; color: var(--text-dark-accent); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.contact-card strong, .contact-card a { color: var(--text-dark-strong); text-decoration: none; font-size: .94rem; }
.contact-card a:hover { color: var(--text-dark-heading); }
.form-card { padding: clamp(28px,4vw,52px); color: var(--ink-text); background: var(--paper); border-radius: var(--radius-lg); }
.form-card h2 { font-size: clamp(2.4rem,4vw,4rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 600; letter-spacing: .03em; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; color: var(--ink-text); border: 1px solid rgba(20,18,15,.22); border-radius: 10px; background: rgba(255,255,255,.55); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--ink-muted); font-size: .72rem; margin-top: 14px; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 10px; color: #23421f; background: var(--success); font-size: .8rem; }
.form-status.is-visible { display: block; }
.map-card { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: #202024; }
.map-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.map-card__overlay { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(7,7,8,.78); backdrop-filter: blur(14px); }
.map-card__overlay h3 { margin-bottom: 8px; }
.map-card__overlay p { color: var(--muted); font-size: .84rem; }

@media (max-width: 1120px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .hero__media { min-height: 580px; }
  .hero__image { left: 28px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero__grid { grid-template-columns: 1fr .72fr; gap: 44px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .utility-bar { display: none; }
  .site-header,
  .site-header.is-scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: rgba(11,11,12,.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background-color 420ms var(--motion-ease-soft);
  }
  .site-header.is-scrolled::before { background: rgba(9,9,10,.92); }
  .brand { min-width: auto; }
  .brand img { width: 50px; height: 50px; }
  .brand__text span { display: none; }
  .nav__links { position: fixed; inset: var(--header-h) 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 36px 24px 120px; background: rgba(8,8,9,.98); transform: translateX(100%); visibility: hidden; pointer-events: none; transition: transform .35s var(--ease), visibility 0s linear .35s; overflow-y: auto; overscroll-behavior: contain; }
  .nav__links.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .nav__link { padding: 18px 0; font-family: var(--font-body); font-size: 1.2rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__link::after { display: none; }
  .nav > .btn { display: none; }
  .menu-toggle { display: inline-flex; flex-direction: column; }
  .hero { padding-top: 56px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 760px; }
  .hero__media { min-height: 620px; }
  .hero__image { left: 9%; right: 0; }
  .split, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: initial; }
  .story-sidebar { position: static; }
  .gallery-preview { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 230px 230px; }
  .gallery-tile:first-child { grid-column: 1 / -1; grid-row: auto; }
  .location-panel { grid-template-columns: 1fr; }
  .location-panel__map { min-height: 360px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero__aside { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid var(--line); }
  .service-section__head { grid-template-columns: 1fr; gap: 16px; }
  .service-name-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .shell, .narrow { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 72px 0; }
  .section--compact { padding: 48px 0; }
  .site-header__inner { gap: 12px; }
  .brand__text strong { font-size: 1rem; }
  .hero { padding: 42px 0 74px; }
  h1 { font-size: clamp(3rem,15vw,4.5rem); }
  h2 { font-size: clamp(2.45rem,12vw,3.8rem); }
  .lead { font-size: 1rem; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .actions .btn { width: 100%; }
  .hero__media { min-height: 490px; margin-top: 8px; }
  .hero__image { inset: 0 0 42px 8%; border-radius: 110px 18px 110px 18px; }
  .hero__social-card { width: 55%; }
  .hero__seal { width: 94px; height: 94px; right: -5px; top: 16px; font-size: .82rem; }
  .service-grid, .experience-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
  .section-heading--with-excerpt { grid-template-columns: 1fr; gap: 14px; }
  .section-heading__excerpt { justify-self: start; max-width: 38ch; }
  .service-card { min-height: 470px; }
  .split__image { min-height: 430px; }
  .gallery-preview { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 300px); }
  .gallery-tile:first-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .service-name-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .map-card { min-height: 450px; }
  .category-nav { top: var(--header-h); }
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
section[id] { scroll-margin-top: var(--header-h); }
/* Anchored top-level sections should reveal their content immediately below the sticky header.
   Keep generous spacing at the bottom, but use a compact top inset for navigation landings. */
section[id]:not(#home) {
  padding-top: clamp(22px, 2.4vw, 34px);
}

.nav__link.is-active { color: var(--text-dark-accent); }
.nav__link.is-active::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

@media (max-width: 700px) {
  section[id]:not(#home) { padding-top: 18px; }
}


.brand img { width: 64px; height: 64px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.25)); }
.hero__image img { object-position: 53% center; filter: saturate(.88) contrast(1.03) brightness(.78); }
.hero__social-card img { aspect-ratio: 1.35; object-position: center; }
.wellness-teaser { background: radial-gradient(circle at 15% 0%, rgba(238,213,136,.14), transparent 35%), linear-gradient(135deg,#0b0b0c,#17130d); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.wellness-teaser__grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; padding-top:92px; padding-bottom:92px; }
.wellness-teaser h2 { max-width:680px; }
.wellness-teaser__copy { max-width:590px; justify-self:end; }
@media (max-width: 900px) { .wellness-teaser__grid { grid-template-columns:1fr; gap:20px; padding-top:68px; padding-bottom:68px; } .wellness-teaser__copy { justify-self:start; } }
@media (max-width: 620px) { .brand img { width:52px; height:52px; } }

/* 2026-08-11 APPROVED HERO — full salon image, no crop */
.hero {
  padding: clamp(54px, 5.5vw, 88px) 0 clamp(66px, 6.8vw, 104px);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(560px, 1.32fr);
  grid-template-rows: auto auto;
  column-gap: clamp(38px, 4.5vw, 70px);
  row-gap: 26px;
  align-items: center;
}
.hero__copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}
.hero__copy .lead { max-width: 560px; }
.hero__actions {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
.hero__actions .actions { margin-top: 0 !important; }
.hero__media {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  min-height: 0;
  width: 100%;
  align-self: center;
}
.hero__image {
  position: relative;
  inset: auto;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  border-radius: 20px;
  border: 0;
  padding: 9px;
  background: linear-gradient(145deg, rgba(238,213,136,.09), rgba(0,0,0,.72));
  box-shadow: 0 24px 70px rgba(0,0,0,.42), 0 0 26px rgba(202,165,82,.08);
}
.hero__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  filter: saturate(.9) contrast(1.05) brightness(.78) sepia(.14) hue-rotate(-4deg);
}
.hero__image::after { display: none; }
@property --hero-perimeter-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.75px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(
    from var(--hero-perimeter-angle),
    transparent 0 82%,
    rgba(202,165,82,.12) 85%,
    rgba(225,184,97,.62) 88%,
    rgba(255,244,201,.98) 91%,
    rgba(238,213,136,.86) 93%,
    rgba(202,165,82,.18) 96%,
    transparent 99% 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 5px rgba(225,184,97,.48));
}
@keyframes hero-perimeter-circuit {
  to { --hero-perimeter-angle: 360deg; }
}
.hero__social-card,
.hero__seal { display: none !important; }

@media (max-width: 1050px) {
  .hero__grid {
    grid-template-columns: minmax(300px, .82fr) minmax(470px, 1.18fr);
    column-gap: 34px;
  }
}

/* Keep the direct WhatsApp action available beside the mobile menu. */
@media (max-width: 900px) {
  .site-header__inner { gap: 12px; }
  .nav { gap: 10px; margin-left: auto; }
  .nav > .btn--header-whatsapp {
    display: inline-flex;
    min-height: 38px;
    padding: 0 11px;
    gap: 7px;
    font-size: .71rem;
    white-space: nowrap;
  }
  .site-header .btn--header-whatsapp svg { width: 15px; height: 15px; }
  .menu-toggle { width: 42px; height: 42px; }
}

@media (max-width: 370px) {
  .site-header__inner { gap: 8px; }
  .brand { gap: 0; }
  .brand__text { display: none; }
  .nav { gap: 8px; }
  .nav > .btn--header-whatsapp { padding: 0 9px; gap: 5px; font-size: .67rem; }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 26px;
  }
  .hero__copy,
  .hero__media,
  .hero__actions {
    grid-column: 1;
    grid-row: auto;
  }
  .hero__copy { max-width: 780px; }
  .hero__media {
    min-height: 0;
    margin-top: 0;
  }
  .hero__image {
    inset: auto;
    border-radius: 18px;
    padding: 7px;
  }
}

@media (max-width: 620px) {
  .hero { padding: 36px 0 62px; }
  .hero__grid { row-gap: 22px; }
  .hero__copy h1 { margin-bottom: 18px; }
  .hero__image { border-radius: 16px; padding: 5px; }
  .hero__actions .actions { gap: 12px; }
}

/* Approved light About treatment — editorial salon story + compact owner feature. */
.about-experience { background: var(--paper); }
.about-experience__top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: stretch;
}
.about-experience__image {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(122,88,31,.28);
  border-radius: 22px;
  background: var(--paper-2);
  box-shadow: 0 24px 65px rgba(42,28,8,.14);
}
.about-experience__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-experience__copy { align-self: center; }
.about-experience__copy h2 { margin-bottom: 18px; }
.about-experience__copy > p { color: var(--text-light-body); max-width: 620px; }
.about-experience__copy > p + p { margin-top: 16px; }
.about-experience__bottom {
  display: block;
  margin-top: 22px;
}
.owner-feature {
  border: 1px solid rgba(122,88,31,.28);
  border-radius: 20px;
  background: rgba(255,255,255,.24);
  overflow: hidden;
}
.owner-feature { display: grid; grid-template-columns: 250px 1fr; min-height: 385px; }
.owner-feature__portrait { min-height: 385px; overflow: hidden; }
.owner-feature__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.owner-feature__content { padding: clamp(28px, 3vw, 46px); align-self: center; }
.owner-feature__content h3 { font-size: clamp(2.1rem, 3vw, 3.2rem); margin: 0 0 6px; }
.owner-feature__role { color: var(--text-light-accent); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 600; }
.owner-feature__content > p:last-child { color: var(--text-light-body); line-height: 1.68; margin-top: 22px; }

/* Services holds the dark step in the page's alternating light/dark rhythm. */
.services-section { background: var(--charcoal); }
.services-section .section-heading { padding-top: 12px; padding-bottom: 26px; border-bottom: 1px solid rgba(238,213,136,.34); }
.services-section .section-heading h2 { color: var(--text-dark-heading); font-weight: 500; }
.services-section .section-heading__excerpt { color: var(--text-dark-body); }

/* Quiet architectural thresholds between the dark and champagne sections. */
.about-experience::before,
.services-section::before,
.gallery-section::before,
.booking-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--max));
  height: 1px;
  pointer-events: none;
  transform: translateX(-50%);
}
.about-experience::before,
.gallery-section::before {
  background: linear-gradient(90deg, transparent, rgba(122,88,31,.36) 8%, rgba(122,88,31,.36) 92%, transparent);
}
.services-section::before,
.booking-contact::before {
  background: linear-gradient(90deg, transparent, rgba(238,213,136,.36) 8%, rgba(238,213,136,.36) 92%, transparent);
}
@media (max-width: 680px) {
  .about-experience::before,
  .services-section::before,
  .gallery-section::before,
  .booking-contact::before { width: min(calc(100% - 32px), var(--max)); }
}

/* 2026-08-11 APPROVED GALLERY — 1 environment anchor + 3 client-work proofs */
.gallery-section { background: var(--paper); }
.gallery-intro {
  padding-top: 12px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(122,88,31,.34);
}
.gallery-intro h2 { color: var(--text-light-heading); margin-bottom: 0; font-weight: 500; }
.gallery-intro .section-heading__excerpt { color: var(--text-light-body); }
.gallery-editorial { margin-top: 34px; }
.gallery-editorial button { font: inherit; color: inherit; }
.gallery-editorial__feature, .gallery-editorial__card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(122,88,31,.38);
  border-radius: 20px;
  background: #111;
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
  box-shadow: 0 18px 45px rgba(42,28,8,.08);
}
.gallery-editorial__feature { min-height: 470px; }
.gallery-editorial__feature img, .gallery-editorial__card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s var(--ease), filter .45s var(--ease);
}
.gallery-editorial__feature img { position:absolute; inset:0; }
.gallery-editorial__feature:hover img, .gallery-editorial__card:hover img { transform: scale(1.018); filter: brightness(.92); }
.gallery-editorial__clients { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 18px; }
.gallery-editorial__card { aspect-ratio: .88; }
.gallery-editorial__card img { position:absolute; inset:0; }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox { position: fixed; inset: 0; z-index: 2000; }
.gallery-lightbox__backdrop { position:absolute; inset:0; background: rgba(2,2,2,.96); backdrop-filter: blur(12px); }
.gallery-lightbox__dialog { position:absolute; inset: 28px; display:grid; grid-template-columns: 72px minmax(0,1fr) 72px; align-items:center; }
.gallery-lightbox__figure { margin:0; justify-self:center; max-width:min(900px, calc(100vw - 210px)); max-height:calc(100vh - 80px); display:flex; flex-direction:column; align-items:center; gap:14px; }
.gallery-lightbox__figure img { display:block; max-width:100%; max-height:calc(100vh - 130px); width:auto; height:auto; object-fit:contain; border:1px solid rgba(225,189,106,.26); border-radius:10px; box-shadow:0 28px 90px rgba(0,0,0,.5); }
.gallery-lightbox__figure figcaption { color:var(--text-dark-strong); background:#111; border:1px solid rgba(225,189,106,.2); border-radius:999px; padding:8px 16px; font-size:.78rem; }
.gallery-lightbox__close, .gallery-lightbox__nav { appearance:none; border:1px solid rgba(255,255,255,.2); background:rgba(15,15,15,.72); color:var(--text-dark-strong); cursor:pointer; }
.gallery-lightbox__close { position:absolute; z-index:2; right:0; top:0; width:48px; height:48px; border-radius:50%; font-size:1.75rem; line-height:1; }
.gallery-lightbox__nav { width:52px; height:72px; border-radius:14px; font-family:var(--font-body); font-size:2.7rem; justify-self:center; }
.gallery-lightbox__nav:hover, .gallery-lightbox__close:hover { border-color: rgba(225,189,106,.7); color:var(--gold-bright); }
body.gallery-open { overflow:hidden; }

@media (max-width: 900px) {
  .about-experience__top { grid-template-columns: 1fr; }
  .about-experience__image { min-height: 520px; }
  .owner-feature { grid-template-columns: 220px 1fr; }
  .gallery-editorial__feature { min-height: 390px; }
  .gallery-lightbox__dialog { inset: 18px; grid-template-columns: 58px minmax(0,1fr) 58px; }
  .gallery-lightbox__figure { max-width: calc(100vw - 160px); }
}

@media (max-width: 680px) {
  .services-section .section-heading,
  .gallery-intro { padding-top: 8px; }
  .about-experience__image { min-height: 440px; }
  .owner-feature { grid-template-columns:1fr; }
  .owner-feature__portrait { min-height:520px; }
  .gallery-editorial__feature { min-height: 280px; }
  .gallery-editorial__clients { grid-template-columns:1fr; gap:14px; }
  .gallery-editorial__card { aspect-ratio:.83; }
  .gallery-lightbox__dialog { inset: 10px; display:block; }
  .gallery-lightbox__figure { position:absolute; inset:46px 4px 54px; max-width:none; max-height:none; justify-content:center; }
  .gallery-lightbox__figure img { max-height:calc(100vh - 160px); }
  .gallery-lightbox__nav { position:absolute; z-index:2; bottom:8px; width:52px; height:44px; font-size:2rem; }
  .gallery-lightbox__nav--prev { left:16px; }
  .gallery-lightbox__nav--next { right:16px; }
  .gallery-lightbox__close { top:6px; right:6px; }
}



/* Final approved Contact / Booking conversion end-cap */
.booking-contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(238,213,136,.075), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(202,165,82,.055), transparent 34%),
    #080809;
}
.booking-contact__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(54px,7vw,104px);
  align-items: center;
}
.booking-contact__copy { max-width: 650px; padding-top: 12px; }
.booking-contact__copy h2 { max-width: 690px; margin-bottom: 0; font-weight: 500; }
.booking-contact__actions { margin-top: 34px; }
.booking-contact__social { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }
.booking-contact__social > span { color: var(--text-dark-heading); font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; line-height: 1.1; }
.booking-contact__social-link { display: inline-grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(238,213,136,.3); border-radius: 50%; color: var(--text-dark-strong); text-decoration: none; transition: color .2s ease, border-color .2s ease, background-color .2s ease; }
.booking-contact__social-link svg { width: 17px; height: 17px; }
.booking-contact__social-link:hover { color: var(--gold-bright); border-color: var(--gold); background: rgba(202,165,82,.08); }
.booking-contact__card {
  border: 1px solid rgba(238,213,136,.24);
  border-radius: var(--radius);
  padding: clamp(34px,4vw,54px);
  background: linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.012));
  box-shadow: var(--shadow);
}
.booking-contact__card h3 {
  font-size: clamp(2rem,3vw,3.05rem);
  line-height: 1.02;
  margin-bottom: 15px;
}
.booking-contact__address { color: var(--text-dark-body); margin-bottom: 0; }
.booking-contact__rule { height: 1px; background: var(--line); margin: 32px 0; }
.booking-contact__detail { display: grid; gap: 7px; margin-top: 27px; }
.booking-contact__subheading { margin: 0; color: var(--text-dark-heading); font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; line-height: 1.1; }
.booking-contact__detail strong,
.booking-contact__detail a:not(.booking-contact__directions) {
  color: var(--text-dark-strong);
  text-decoration: none;
  font-size: clamp(1.03rem,1.5vw,1.24rem);
  font-weight: 600;
}
.booking-contact__detail--row {
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.booking-contact__detail--row > div { display: grid; gap: 7px; }
.booking-contact__directions {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: var(--text-dark-strong);
  background: rgba(255,255,255,.025);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.booking-contact__directions:hover { border-color: var(--gold); background: rgba(202,165,82,.08); color: var(--text-dark-heading); }
@media (max-width: 900px) {
  .booking-contact__grid { grid-template-columns: 1fr; gap: 42px; }
  .booking-contact__card { max-width: 650px; width: 100%; }
}
@media (max-width: 680px) {
  .booking-contact__copy { padding-top: 8px; }
}
@media (max-width: 600px) {
  .booking-contact__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .booking-contact__actions .btn { width: 100%; }
  .booking-contact__detail--row { grid-template-columns: 1fr; align-items: start; }
  .booking-contact__directions { justify-self: start; }
}

/* === The Looks Motion + Dimensional Interaction Refinement ===
   Priority: smooth visual flow, premium depth, restrained feedback, no bounce. */
:root {
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --motion-ease-soft: cubic-bezier(.25, .46, .45, .94);
  --motion-ease-emphasis: cubic-bezier(.16, 1, .3, 1);
  --motion-fast: 180ms;
  --motion-base: 320ms;
  --motion-slow: 680ms;
  --motion-image: 900ms;
}

/* Header state changes should settle smoothly while scrolling. */
.site-header {
  transition:
    background-color 420ms var(--motion-ease-soft),
    border-color 420ms var(--motion-ease-soft),
    box-shadow 520ms var(--motion-ease-soft),
    backdrop-filter 420ms var(--motion-ease-soft),
    -webkit-backdrop-filter 420ms var(--motion-ease-soft);
}

.nav__link::after { transition: right 320ms var(--motion-ease); }

/* Primary controls: tactile movement with layered surface depth. */
.btn,
.service-card__open,
.service-card__close,
.service-card__cta,
.gallery-lightbox__close,
.gallery-lightbox__nav,
.gallery-editorial__feature,
.gallery-editorial__card,
.booking-contact__directions,
.whatsapp-float,
.menu-toggle {
  transform: translate3d(0, 0, 0);
  transition:
    transform 260ms var(--motion-ease),
    background-color 280ms var(--motion-ease-soft),
    color 240ms var(--motion-ease-soft),
    border-color 280ms var(--motion-ease-soft),
    box-shadow 360ms var(--motion-ease-soft),
    opacity 240ms var(--motion-ease-soft);
}

.btn,
.service-card__open,
.service-card__cta,
.booking-contact__directions,
.whatsapp-float {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* A soft top plane + lower edge creates depth without glossy skeuomorphism. */
.btn::before,
.service-card__open::before,
.service-card__cta::before,
.booking-contact__directions::before,
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.17) 0%,
    rgba(255,255,255,.04) 42%,
    rgba(0,0,0,.09) 100%
  );
  opacity: .72;
  transition: opacity 300ms var(--motion-ease-soft);
}

.btn {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -2px 0 rgba(0,0,0,.16),
    0 9px 18px rgba(0,0,0,.17),
    0 2px 5px rgba(0,0,0,.22);
}

.btn--gold {
  border-color: rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0) 38%),
    linear-gradient(120deg, var(--gold-bright), var(--gold));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.50),
    inset 0 -2px 0 rgba(98,67,18,.34),
    0 11px 24px rgba(202,165,82,.25),
    0 3px 8px rgba(0,0,0,.25);
}

/* The persistent header action stays available without competing with the Hero conversion. */
.site-header .btn--header-whatsapp {
  min-height: 42px;
  padding: 0 17px;
  color: var(--text-dark-strong);
  border-color: rgba(238,213,136,.34);
  background: rgba(255,255,255,.025);
  box-shadow: none;
}
.site-header .btn--header-whatsapp::before { opacity: .32; }
.site-header .btn--header-whatsapp:hover {
  border-color: rgba(238,213,136,.58);
  background: rgba(202,165,82,.07);
  box-shadow: none;
}

/* The Hero image and its WhatsApp actions share one clock and phase. */
.hero__image::before,
.hero .btn--whatsapp-glow::after,
.site-header .btn--header-whatsapp::after {
  animation-name: hero-perimeter-circuit;
  animation-duration: var(--hero-perimeter-duration);
  animation-timing-function: var(--hero-perimeter-easing);
  animation-delay: var(--hero-perimeter-delay);
  animation-iteration-count: infinite;
  animation-direction: var(--hero-perimeter-direction);
  animation-fill-mode: both;
}
.hero .btn--whatsapp-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 1.5px;
  border-radius: inherit;
  pointer-events: none;
  opacity: .78;
  background: conic-gradient(
    from var(--hero-perimeter-angle),
    transparent 0 82%,
    rgba(255,250,238,.12) 85%,
    rgba(255,248,226,.48) 88%,
    rgba(255,249,231,.82) 91%,
    rgba(238,213,136,.62) 93%,
    rgba(202,165,82,.16) 96%,
    transparent 99% 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 5px rgba(255,246,220,.48));
}
.site-header .btn--header-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: .76;
  background: conic-gradient(
    from var(--hero-perimeter-angle),
    transparent 0 82%,
    rgba(255,250,238,.14) 85%,
    rgba(255,248,226,.56) 88%,
    rgba(255,249,231,.9) 91%,
    rgba(238,213,136,.7) 93%,
    rgba(202,165,82,.18) 96%,
    transparent 99% 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 5px rgba(255,246,220,.48));
}

.btn--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.018));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 -1px 0 rgba(0,0,0,.30),
    0 8px 17px rgba(0,0,0,.15),
    0 2px 4px rgba(0,0,0,.18);
}

/* Service actions should visibly read as controls, not flat text links. */
.service-card__open {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(238,213,136,.42);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(238,213,136,.14), rgba(202,165,82,.055));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.34),
    0 8px 18px rgba(0,0,0,.22);
}

.service-card__cta {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(238,213,136,.11), rgba(202,165,82,.035));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    inset 0 -1px 0 rgba(0,0,0,.32),
    0 8px 18px rgba(0,0,0,.22);
}

.booking-contact__directions {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.28),
    0 8px 17px rgba(0,0,0,.15);
}

.whatsapp-float {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.48),
    inset 0 -2px 0 rgba(18,85,35,.22),
    0 16px 38px rgba(0,0,0,.34),
    0 4px 10px rgba(0,0,0,.18);
}

.gallery-lightbox__close,
.gallery-lightbox__nav,
.menu-toggle {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    inset 0 -1px 0 rgba(0,0,0,.35),
    0 8px 18px rgba(0,0,0,.24);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .service-card__open:hover,
  .service-card__cta:hover,
  .booking-contact__directions:hover,
  .whatsapp-float:hover {
    transform: translate3d(0, -2px, 0);
  }

  .btn--gold:hover {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.58),
      inset 0 -2px 0 rgba(98,67,18,.28),
      0 15px 32px rgba(202,165,82,.32),
      0 4px 10px rgba(0,0,0,.22);
  }

  .btn--ghost:hover,
  .service-card__open:hover,
  .service-card__cta:hover,
  .booking-contact__directions:hover {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.16),
      inset 0 -1px 0 rgba(0,0,0,.28),
      0 12px 24px rgba(0,0,0,.20),
      0 3px 7px rgba(0,0,0,.18);
  }

  .whatsapp-float:hover {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.56),
      inset 0 -2px 0 rgba(18,85,35,.18),
      0 20px 46px rgba(0,0,0,.40),
      0 5px 12px rgba(0,0,0,.18);
  }

  .gallery-editorial__feature:hover,
  .gallery-editorial__card:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 24px 52px rgba(42,28,8,.13);
  }

  .gallery-lightbox__close:hover,
  .gallery-lightbox__nav:hover,
  .service-card__close:hover,
  .menu-toggle:hover {
    transform: translate3d(0, -1px, 0) scale(1.025);
  }
}

.btn:active,
.service-card__open:active,
.service-card__cta:active,
.booking-contact__directions:active,
.whatsapp-float:active,
.gallery-lightbox__close:active,
.gallery-lightbox__nav:active,
.menu-toggle:active {
  transform: translate3d(0, 1px, 0) scale(.985);
  transition-duration: 110ms;
  box-shadow:
    inset 0 2px 5px rgba(0,0,0,.22),
    inset 0 -1px 0 rgba(255,255,255,.07),
    0 3px 7px rgba(0,0,0,.14);
}

.btn:active::before,
.service-card__open:active::before,
.service-card__cta:active::before,
.booking-contact__directions:active::before,
.whatsapp-float:active::before { opacity: .42; }

/* Images drift slowly rather than snapping into zoom states. */
.service-card img,
.gallery-editorial img,
.about-experience__image img,
.owner-feature__portrait img,
.hero__image img {
  transition:
    transform var(--motion-image) var(--motion-ease),
    filter 700ms var(--motion-ease-soft),
    opacity 420ms var(--motion-ease-soft);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover:not(.is-active) img { transform: translateZ(0) scale(1.035); }
  .gallery-editorial__feature:hover img,
  .gallery-editorial__card:hover img { transform: translateZ(0) scale(1.025); }
}

/* Service-card state change: content hands off smoothly from summary to details. */
.service-card--interactive {
  isolation: isolate;
  transition:
    transform 420ms var(--motion-ease),
    box-shadow 520ms var(--motion-ease-soft),
    border-color 420ms var(--motion-ease-soft);
}

.service-card__summary,
.service-card__details {
  transition:
    opacity 300ms var(--motion-ease-soft),
    transform 440ms var(--motion-ease-emphasis),
    visibility 0s linear 440ms;
}
.service-card__summary {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.service-card__details {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}
.service-card.is-active .service-card__summary {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  visibility: hidden;
  transition-delay: 0ms;
}
.service-card.is-active .service-card__details {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 90ms;
  transition-property: opacity, transform, visibility;
  transition-duration: 360ms, 480ms, 0s;
  transition-timing-function: var(--motion-ease-soft), var(--motion-ease-emphasis), linear;
}

/* Lightbox opens as one continuous surface rather than appearing abruptly. */
.gallery-lightbox:not([hidden]) .gallery-lightbox__backdrop { opacity: 0; }
.gallery-lightbox:not([hidden]) .gallery-lightbox__dialog {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(.985);
}
.gallery-lightbox.motion-active .gallery-lightbox__backdrop {
  opacity: 1;
  transition: opacity 360ms var(--motion-ease-soft);
}
.gallery-lightbox.motion-active .gallery-lightbox__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 360ms var(--motion-ease-soft),
    transform 520ms var(--motion-ease-emphasis);
}
.gallery-lightbox__figure img {
  transition: opacity 240ms var(--motion-ease-soft), transform 420ms var(--motion-ease);
}
.gallery-lightbox.motion-changing .gallery-lightbox__figure img {
  opacity: .2;
  transform: scale(.992);
}

@media (max-width: 900px) {
  .nav__links {
    transition: transform 440ms var(--motion-ease-emphasis), opacity 320ms var(--motion-ease-soft);
  }
  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    transition: transform 320ms var(--motion-ease), opacity 220ms var(--motion-ease-soft);
  }
}

/* Touch devices do not inherit desktop hover lift. */
@media (hover: none), (pointer: coarse) {
  .btn:hover,
  .service-card:hover,
  .gallery-editorial__feature:hover,
  .gallery-editorial__card:hover,
  .whatsapp-float:hover { transform: none; }
}

/* Respect operating-system reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .brand-intro { display: none !important; }
  .hero__image::before,
  .hero .btn--whatsapp-glow::after,
  .site-header .btn--header-whatsapp::after {
    --hero-perimeter-angle: 28deg;
    animation: none !important;
  }
  .hero .btn--whatsapp-glow::after { opacity: .42 !important; }
  .site-header .btn--header-whatsapp::after { opacity: .26 !important; }
  .gallery-lightbox__dialog,
  .gallery-lightbox__backdrop,
  .service-card__summary,
  .service-card__details {
    opacity: 1;
    transform: none;
  }
}
