/* =========================================================================
   Luxury atelier template (black and gold)
   Black & Gold. Bespoke, hand-crafted feel.
   ========================================================================= */

/* ----------------------------- Design Tokens ---------------------------- */
/* Booking Pro Sites: this :root block is REPLACED at render time by the site's
   theme tokens (theme.ts). Every color below is a variable; the *-rgb triplets
   feed the alpha variants used throughout, so changing Background / Text /
   Accent recolors the whole site coherently. Values here = the template's exact defaults. */
:root {
  --black: #0a0a0b;
  --black-rgb: 10, 10, 11;
  --black-soft: #101012;
  --black-2: #141416;
  --black-warm: #171308;
  --ivory: #f5f1e8;
  --ivory-rgb: 245, 241, 232;
  --ivory-dim: #cfc8ba;
  --muted: #8f887c;
  --gold: #c9a44c;
  --gold-rgb: 201, 164, 76;
  --gold-bright: #e7c96a;
  --gold-deep: #a67c2e;
  --gold-deep-rgb: 166, 124, 46;
  --gold-highlight: #fbf3c2;
  --error: #e0736b;
  --line: rgba(var(--gold-rgb), 0.18);
  --gold-grad: linear-gradient(115deg, var(--gold-deep) 0%, var(--gold-bright) 22%, var(--gold-highlight) 42%, var(--gold-bright) 62%, var(--gold-deep) 100%);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --container: 1280px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--ivory);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--black); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 10px; }

/* ------------------------------ Helpers --------------------------------- */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.eyebrow {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.section {
  padding: clamp(5rem, 12vh, 11rem) var(--gutter);
  max-width: var(--container);
  margin-inline: auto;
  position: relative;
}
.section__head { max-width: 720px; margin: 0 auto clamp(3rem,6vw,5rem); text-align: center; }
.section__head h2 { margin-bottom: 1.2rem; }
.section__intro { color: var(--ivory-dim); font-size: 1.08rem; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: .01em; }
/* Word-mask used by the premium heading reveal (JS-injected) */
.word { display: inline-block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; vertical-align: top; }
.word > span { display: inline-block; }
/* Booking Pro Sites fix (bug inherited from the source): gradient text inside the
   word-rise masks. background-clip:text on the parent .gold-text <em> does not paint
   through inline-block descendants, so every accent word in a split heading vanished.
   Paint the gradient on the innermost word span instead. */
.gold-text .word > span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 em, h1 em { font-style: italic; }
.lede { font-size: 1.22rem; color: var(--ivory); font-weight: 300; }
p { color: var(--ivory-dim); }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
  position: relative; overflow: hidden;
  will-change: transform;
}
.btn--gold {
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: 0 10px 30px -12px rgba(var(--gold-rgb),.6);
  background-size: 200% 100%;
}
.btn--gold:hover { transform: translateY(-3px); background-position: 100% 0; box-shadow: 0 18px 40px -12px rgba(var(--gold-rgb),.7); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ivory);
  background: rgba(var(--ivory-rgb),.02);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  transition: gap .4s var(--ease);
}
.link-arrow i { font-style: normal; transition: transform .4s var(--ease); }
.link-arrow:hover { gap: 1rem; }
.link-arrow:hover i { transform: translateX(4px); }

/* ----------------------------- Preloader -------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; align-items: baseline; gap: .1em; overflow: hidden; }
.preloader__mark { font-family: var(--serif); font-size: 4rem; font-style: italic; }
.preloader__word {
  font-family: var(--serif); font-size: 1.4rem; letter-spacing: .5em;
  color: var(--ivory); padding-left: .4em;
  animation: fadeUp 1s var(--ease) .2s both;
}
.preloader__bar { width: 160px; height: 1px; background: rgba(var(--ivory-rgb),.1); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--gold-grad); animation: load 1.4s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ------------------------- Scroll Progress ------------------------------ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 9990;
  background: var(--gold-grad); box-shadow: 0 0 12px rgba(var(--gold-rgb),.6);
  transition: width .1s linear;
}

/* --------- Cohesive editorial treatment for all placeholder photos ------
   Unifies mixed stock into one art-directed, warm, luxe look.
   Images regain full colour on hover for an elegant reveal. */
.hero__img,
.about__media img,
.gallery__tile img,
.visit__media img {
  filter: grayscale(0.32) sepia(0.18) contrast(1.06) brightness(0.9) saturate(0.9);
  transition: filter 1s var(--ease), transform 1.2s var(--ease);
}
.about__media:hover img,
.gallery__tile:hover img,
.visit__media:hover img {
  filter: grayscale(0) sepia(0.05) contrast(1.04) brightness(1) saturate(1);
}

/* --------------------------- Custom Cursor ------------------------------ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 34px; height: 34px; border: 1px solid var(--gold);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), opacity .3s;
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 60px; height: 60px; background: rgba(var(--gold-rgb),.15); }
@media (hover: none) { .cursor { display: none; } }

/* ------------------------------- Nav ------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s, padding .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 1.6rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .5s var(--ease);
}
.nav.scrolled {
  background: rgba(var(--black-rgb),.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav.scrolled .nav__inner { padding-top: 1.05rem; padding-bottom: 1.05rem; }
.nav.hide { transform: translateY(-100%); }

.nav__logo { display: flex; align-items: baseline; gap: .1em; }
.nav__logo-mark {
  font-family: var(--serif); font-style: italic; font-size: 1.9rem;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav__logo-text { font-family: var(--serif); font-size: 1.15rem; letter-spacing: .34em; padding-left: .35em; white-space: nowrap; }
.nav__logo-text em { font-style: italic; letter-spacing: .1em; color: var(--gold); font-size: .8em; padding-left: .2em; }
/* Booking Pro Sites: long business names. The source brand was two short words;
   a merchant's can be three or four. Tighten the wordmark, never wrap the CTA,
   and collapse to the menu earlier so the bar is never cramped. */
.nav__cta { white-space: nowrap; }
.nav--long-brand .nav__inner { gap: 2rem; }
.nav--long-brand .nav__logo { flex-shrink: 0; }
.nav--long-brand .nav__logo-text { font-size: .95rem; letter-spacing: .22em; }
.nav--long-brand .nav__links { gap: 1.25rem; }
.nav--long-brand .nav__links a, .nav--long-brand .nav__drop-toggle { letter-spacing: .12em; font-size: .74rem; }
.nav--long-brand .nav__cta { padding-inline: 1.4rem; }
@media (max-width: 1180px) {
  .nav--long-brand .nav__links, .nav--long-brand .nav__cta { display: none; }
  .nav--long-brand .nav__burger { display: block; }
}

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links > a, .nav__drop-toggle { white-space: nowrap; }
.nav__links a {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
  color: var(--ivory-dim); position: relative; padding: .3rem 0;
  transition: color .4s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-grad); transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; width: 34px; height: 22px; position: relative; }
.nav__burger span { position: absolute; left: 0; height: 1.5px; width: 100%; background: var(--ivory); transition: transform .4s var(--ease), opacity .3s; }
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { bottom: 4px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------- Mobile Menu -------------------------------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--black-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-2%);
  transition: opacity .5s var(--ease), visibility .5s, transform .5s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; text-align: center; }
.mobile-menu__links a { font-family: var(--serif); font-size: 2rem; }
.mobile-menu__links .btn { font-family: var(--sans); font-size: .8rem; margin-top: 1rem; }
.mobile-menu__foot { display: flex; gap: 2rem; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------- Hero ----------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 0 var(--gutter); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__img, .hero__video {
  position: absolute; inset: -4%; width: 108%; height: 108%; object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.16) translate(-2%, -2.5%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(var(--black-rgb),.35), transparent 60%),
    linear-gradient(to top, var(--black) 2%, rgba(var(--black-rgb),.45) 45%, rgba(var(--black-rgb),.6) 100%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Fallback if no video loads: a rich dark texture */
.hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 70% 20%, rgba(var(--gold-deep-rgb),.22), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(var(--gold-rgb),.12), transparent 50%),
    var(--black-soft);
}

.hero__content { max-width: 900px; position: relative; z-index: 1; }
.hero__title { font-size: clamp(3rem, 9vw, 8rem); line-height: .98; margin-bottom: 1.8rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
html.js .hero__title .line > span { transform: translateY(110%); }
.hero.loaded .hero__title .line > span {
  transform: translateY(0);
  transition: transform 1.1s var(--ease);
}
.hero.loaded .hero__title .line:nth-child(2) > span { transition-delay: .12s; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 30ch; color: var(--ivory-dim); margin-bottom: 2.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .8rem; z-index: 1;
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--gold); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(260%); } }
.hero__scroll-text { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }

/* Reveal-on-load for hero secondary bits */
/* Reveal elements hide ONLY when JS is confirmed healthy (html.js). If JS is
   disabled or errors, they stay visible, the page is never blank. */
html.js .reveal { opacity: 0; transform: translateY(24px); }
.hero.loaded .reveal { opacity: 1; transform: none; transition: opacity 1s var(--ease) .4s, transform 1s var(--ease) .4s; }

/* ------------------------------ Marquee --------------------------------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--black-soft);
  padding: 1.5rem 0; overflow: hidden; white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; gap: 2.5rem; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--ivory-dim); }
.marquee__track .dot { color: var(--gold); font-style: normal; font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------- About ---------------------------------- */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media-badge {
  position: absolute; bottom: 1.4rem; right: 1.4rem;
  background: rgba(var(--black-rgb),.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line); padding: 1rem 1.4rem; border-radius: 2px;
  display: flex; flex-direction: column; text-align: right; line-height: 1.1;
}
.about__media-badge span { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; }
.about__media-badge strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; font-style: italic; }
.about__body h2 { margin: .4rem 0 1.6rem; }
.about__body p { margin-bottom: 1.2rem; }
.about__stats { display: flex; gap: 2.4rem; margin: 2.2rem 0; flex-wrap: wrap; }
.about__stats strong { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.about__stats span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------ Services -------------------------------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service-card {
  position: relative; overflow: hidden; border-radius: 2px;
  border: 1px solid var(--line); background: var(--black-soft);
  min-height: 420px; display: flex; align-items: flex-end;
}
.service-card__img { position: absolute; inset: 0; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter 1.1s var(--ease); filter: grayscale(.35) sepia(.15) brightness(.6) saturate(.9); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(var(--black-rgb),.95) 8%, rgba(var(--black-rgb),.15) 60%, transparent); }
.service-card__body { position: relative; z-index: 1; padding: 2rem; }
.service-card__num { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--gold); }
.service-card__body h3 { font-size: 1.9rem; margin: .3rem 0 .7rem; }
.service-card__body p { color: var(--ivory-dim); font-size: .95rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease), opacity .6s var(--ease), margin .6s var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.06); filter: grayscale(0) sepia(.05) brightness(.75) saturate(1); }
.service-card:hover .service-card__body p { max-height: 120px; opacity: 1; }

/* ------------------------------ Process --------------------------------- */
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-step { background: var(--black); padding: 2.6rem 2rem; transition: background .5s var(--ease); }
.process-step:hover { background: var(--black-soft); }
.process-step__num { font-family: var(--serif); font-size: 3rem; font-style: italic; display: block; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.6rem; margin-bottom: .8rem; }
.process-step p { font-size: .95rem; }

/* ------------------------------ Gallery --------------------------------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 1rem; }
.gallery__tile { position: relative; overflow: hidden; border-radius: 2px; background: var(--black-2); }
.gallery__tile--tall { grid-row: span 2; }
.gallery__tile--wide { grid-column: span 2; }
.gallery__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s var(--ease); filter: brightness(.8); }
.gallery__tile:hover img { transform: scale(1.07); filter: brightness(1); }
.gallery__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border: 1px solid rgba(var(--ivory-rgb),.6); border-radius: 50%;
  display: grid; place-items: center; transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.gallery__play::after { content: ""; border-left: 13px solid var(--ivory); border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 4px; transition: border-left-color .4s; }
.gallery__tile:hover .gallery__play { background: var(--gold); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.08); }
.gallery__tile:hover .gallery__play::after { border-left-color: var(--black); }
.gallery__cta { text-align: center; margin-top: 3rem; }

/* ---------------------------- Testimonials ------------------------------ */
.testimonials { text-align: center; }
.testimonials__viewport { overflow: hidden; max-width: 860px; margin-inline: auto; }
.testimonials__track { display: flex; transition: transform .8s var(--ease); }
.testimonial { min-width: 100%; padding: 0 1rem; }
.testimonial blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.32; font-style: italic; color: var(--ivory); margin-bottom: 1.6rem; }
.testimonial blockquote em { color: var(--gold); }
.testimonial figcaption { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.testimonials__nav { display: flex; justify-content: center; gap: 1rem; margin-top: 2.6rem; }
.testi-btn { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; color: var(--ivory); transition: border-color .4s, color .4s, background .4s; }
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ------------------------------- Visit ---------------------------------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.visit__media { aspect-ratio: 5/4; overflow: hidden; border-radius: 2px; }
.visit__media img { width: 100%; height: 100%; object-fit: cover; }
.visit__body h2 { margin: .4rem 0 1.4rem; }
.visit__details { list-style: none; margin: 2rem 0; border-top: 1px solid var(--line); }
.visit__details li { display: flex; gap: 1.5rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.visit__details span { min-width: 110px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* ------------------------------- Book ----------------------------------- */
.book { max-width: 100%; background: var(--black-soft); border-top: 1px solid var(--line); }
.book__inner { max-width: var(--container); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.book__intro h2 { margin: .4rem 0 1.4rem; }
/* ------------------------------- Icons ---------------------------------- */
.ico { width: 1.2em; height: 1.2em; fill: currentColor; display: inline-block; vertical-align: middle; flex: none; }

.book__contact { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.4rem; }
.book__contact-btn {
  display: flex; align-items: center; gap: 1.2rem; padding: 1rem 1.4rem;
  border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.book__contact-btn__ico {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.book__contact-btn__ico .ico { width: 22px; height: 22px; }
.book__contact-btn__txt { display: flex; flex-direction: column; line-height: 1.25; }
.book__contact-btn__txt small { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.book__contact-btn__txt strong { font-weight: 400; font-size: 1.05rem; color: var(--ivory); }
.book__contact-btn:hover { border-color: var(--gold); transform: translateX(4px); }
.book__contact-btn:hover .book__contact-btn__ico { background: var(--gold-grad); color: var(--black); border-color: transparent; }

.book__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
/* Spam trap: never shown, never tabbed to; a filled value marks the submission as a bot. */
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 1.1rem 0 .6rem; color: var(--ivory); font-family: var(--sans); font-size: 1rem;
  transition: border-color .4s var(--ease);
}
.field textarea { resize: vertical; }
.field select { color: var(--ivory); }
.field select option { background: var(--black-2); color: var(--ivory); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field label {
  position: absolute; left: 0; top: 1.1rem; color: var(--muted); font-size: 1rem;
  pointer-events: none; transition: transform .35s var(--ease), font-size .35s var(--ease), color .35s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field.label--float label {
  transform: translateY(-1.35rem); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.label--static { position: static !important; transform: none !important; display: block; margin-bottom: -.2rem;
  font-size: .68rem !important; letter-spacing: .16em; text-transform: uppercase; color: var(--gold) !important; }
.book__form .btn { grid-column: 1 / -1; margin-top: .6rem; }
.book__form-note { grid-column: 1 / -1; font-size: .85rem; color: var(--gold); min-height: 1.2rem; }

/* ------------------------------ Footer ---------------------------------- */
.footer { background: var(--black); border-top: 1px solid var(--line); padding: clamp(3.5rem,7vw,6rem) var(--gutter) 2.4rem; }
.footer__top { max-width: var(--container); margin-inline: auto; display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer__logo { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .28em; display: inline-flex; align-items: baseline; }
.footer__logo em { color: var(--gold); font-size: .7em; letter-spacing: .1em; padding-left: .3em; font-style: italic; }
.footer__brand p { margin-top: 1rem; max-width: 34ch; color: var(--muted); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__links h4 { font-family: var(--sans); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 500; }
.footer__links a { display: flex; align-items: center; gap: .55em; color: var(--ivory-dim); font-size: .95rem; padding: .35rem 0; transition: color .3s, padding-left .3s; }
.footer__links a .ico, .mobile-menu__foot a .ico { width: .95em; height: .95em; color: var(--gold); }
.mobile-menu__foot a { display: inline-flex; align-items: center; gap: .5em; }
.footer__links a:hover { color: var(--gold); padding-left: .4rem; }
.footer__bottom { max-width: var(--container); margin: 1.8rem auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .78rem; color: var(--muted); }

/* ----------------------------- Lightbox --------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 9997; background: rgba(var(--black-rgb),.94);
  display: flex; align-items: center; justify-content: center; padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__stage { width: min(500px, 92vw); aspect-ratio: 9/16; max-height: 88vh; }
.lightbox__stage video { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; background: var(--black); }
.lightbox__close { position: absolute; top: 1.8rem; right: 2rem; font-size: 1.4rem; color: var(--ivory); width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; transition: border-color .3s, color .3s; }
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

/* --------------------------- Scroll Reveal ------------------------------ */
html.js .reveal-media, html.js .reveal-stagger, html.js [data-reveal] { opacity: 0; }
.is-in { opacity: 1 !important; transform: none !important; clip-path: none !important; }

/* Self-healing failsafe: if main.js never signalled ready, force everything
   visible (added by an inline <head> timer). */
html.reveal-all .reveal,
html.reveal-all .reveal-media,
html.reveal-all .reveal-stagger,
html.reveal-all [data-reveal],
html.reveal-all .hero__title .line > span { opacity: 1 !important; transform: none !important; clip-path: none !important; }
html.reveal-all .preloader,
html.reveal-all .page-fade { display: none !important; }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 980px) {
  .about__grid, .visit__grid, .book__inner { grid-template-columns: 1fr; }
  .about__media, .visit__media { aspect-ratio: 16/11; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .service-card__body p { max-height: 120px; opacity: 1; } /* always show on touch */
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__tile--wide { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .book__form { grid-template-columns: 1fr; }
  .cursor { display: none; }
}
@media (max-width: 460px) {
  .footer__links { grid-template-columns: 1fr 1fr; }
  .about__stats { gap: 1.4rem; }
  .process__steps { grid-template-columns: 1fr; }
}

/* Collapse nav to the mobile menu earlier, so the desktop bar is never cramped */
@media (max-width: 1000px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}
