/* ============================================================
   VOX ENTERTAINMENT — Core Stylesheet
   Minimal, cinematic, luxury-hospitality design language.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --color-bg: #FFFFFF;
  --color-bg-soft: #FAF9F6;
  --color-ink: #111111;
  --color-ink-70: rgba(17, 17, 17, 0.7);
  --color-border: rgba(17, 17, 17, 0.09);
  --color-gold: #C8A64D;
  --color-gold-dark: #B68A2A;

  /* Type */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: clamp(4rem, 8vw, 7rem);
  --space-2xl: clamp(5rem, 11vw, 9rem);

  /* Layout */
  --container-w: 1280px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);

  /* Motion */
  --ease-premium: cubic-bezier(.16, 1, .3, 1);
  --dur-fast: .3s;
  --dur-med: .6s;

  --radius: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
:focus-visible { outline: 2px solid var(--color-gold-dark); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--color-ink); color: #fff;
  padding: .75rem 1.25rem; z-index: 2000; font-size: .85rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Layout utilities ---------- */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: var(--space-2xl) 0; }
.section--soft { background: var(--color-bg-soft); }
.section__head { max-width: 640px; margin-bottom: var(--space-lg); }
.align-center { text-align: center; display: flex; justify-content: center; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--color-ink);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--color-gold); flex-shrink: 0; }
.h-1 { font-size: clamp(2.1rem, 4vw, 3.25rem); }
.h-2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .75rem; }
.lede { font-size: clamp(1rem, 1.15vw, 1.15rem); color: var(--color-ink-70); max-width: 46ch; }
.text-link {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem;
  font-size: .85rem; letter-spacing: .04em; text-transform: uppercase;
  border-bottom: 1px solid var(--color-gold); padding-bottom: .3rem;
  transition: gap var(--dur-fast) var(--ease-premium);
}
.text-link:hover { gap: .9rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 2.25rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap; cursor: pointer;
  transition: box-shadow var(--dur-fast) var(--ease-premium),
              background var(--dur-fast) var(--ease-premium);
}
.btn-sm { padding: .7rem 1.5rem; font-size: .72rem; }
/* Ink-on-gold (not white-on-gold) keeps button text at a safe contrast ratio */
.btn-gold { background: var(--color-gold); color: var(--color-ink); }
.btn-gold:hover { background: var(--color-gold-dark); box-shadow: 0 14px 28px rgba(182, 138, 42, .3); }
.btn-outline { background: transparent; border: 1px solid currentColor; color: inherit; }
.btn-outline:hover { background: rgba(255, 255, 255, .12); }
.section .btn-outline:hover, .site-footer .btn-outline:hover { background: rgba(17, 17, 17, .05); }
.btn-ripple {
  position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .5);
  transform: scale(0); opacity: .8; pointer-events: none;
  animation: btnRipple .6s ease-out forwards;
}
@keyframes btnRipple { to { transform: scale(3.2); opacity: 0; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  color: #fff; padding: 1.65rem 0;
  transition: background var(--dur-med) var(--ease-premium),
              padding var(--dur-med) var(--ease-premium),
              color var(--dur-med) var(--ease-premium),
              box-shadow var(--dur-med) var(--ease-premium);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px);
  color: var(--color-ink); padding: 1.05rem 0;
  box-shadow: 0 1px 0 var(--color-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__logo {
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .1em;
  font-weight: 600; flex-shrink: 0; display: inline-flex; align-items: center;
}
.nav__logo span { color: var(--color-gold); }
.nav__logo img { display: block; height: 42px; width: auto; transition: filter var(--dur-fast); }
.footer__top .nav__logo img { height: 46px; }
.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__link {
  position: relative; font-size: .78rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase; padding: .3rem 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-premium);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 26px; height: 20px; flex-shrink: 0;
}
.nav__toggle span { display: block; height: 1.5px; width: 100%; background: currentColor; transition: all var(--dur-fast) var(--ease-premium); }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; color: #fff;
  background: radial-gradient(ellipse at 50% 30%, #1c1c1c 0%, #0a0a0a 72%);
}
.hero__media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, .6) 55%, rgba(10, 10, 10, .7) 100%);
}
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--color-gold); opacity: 0;
  animation: floatParticle 12s ease-in-out infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0); }
  15% { opacity: .55; }
  85% { opacity: .35; }
  100% { opacity: 0; transform: translateY(-140px); }
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  padding: 0 1.25rem; max-width: 900px;
}
.hero__mark {
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: rgba(255, 255, 255, .85);
}
.hero__title { font-size: clamp(2.5rem, 7.5vw, 6rem); font-weight: 500; color: #fff; }
.shimmer-text {
  background: linear-gradient(100deg, #fff 30%, var(--color-gold) 45%, #fff 60%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmerSweep 5s linear infinite;
}
@keyframes shimmerSweep { 0% { background-position: 220% 0; } 100% { background-position: -60% 0; } }
.hero__lede { color: rgba(255, 255, 255, .82); max-width: 46ch; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .4rem; }
.hero__scroll {
  position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .7);
}
.hero__scroll .line { width: 1px; height: 34px; background: rgba(255, 255, 255, .35); overflow: hidden; position: relative; }
.hero__scroll .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--color-gold); animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }

/* ---------- Signature moment ---------- */
.moment { padding: var(--space-xl) 0; }
.moment__inner { position: relative; }
.moment__band {
  background: var(--color-ink); color: #fff; border-radius: var(--radius);
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.75rem, 7vw, 5rem);
  max-width: 780px;
}
.moment__title {
  font-size: clamp(2.25rem, 6vw, 4.25rem); text-transform: uppercase;
  color: #fff; letter-spacing: -.01em;
}
.moment__sub { margin-top: 1.1rem; font-family: var(--font-body); font-size: 1rem; color: rgba(255, 255, 255, .65); }
.moment__visual {
  position: absolute; top: -10%; right: 6%; z-index: 2;
  width: clamp(160px, 20vw, 260px); height: 122%;
  border-radius: clamp(40px, 6vw, 90px); overflow: hidden;
  box-shadow: 0 30px 70px rgba(17, 17, 17, .28); will-change: transform;
}
.moment__visual video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- About preview ---------- */
.about-preview__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg);
  align-items: start;
}

/* ---------- Location cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.location-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; background: linear-gradient(150deg, var(--color-bg-soft), #ece5d3);
}
.location-card__media { position: absolute; inset: 0; }
.location-card__media img {
  width: 100%; height: 100%; object-fit: cover; color: transparent;
  transition: transform 1s var(--ease-premium);
}
.location-card:hover .location-card__media img { transform: scale(1.07); }
.location-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 35%, rgba(10, 10, 10, .88) 100%);
}
.location-card__content { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; color: #fff; }
.location-card__title { font-size: 1.25rem; margin-bottom: .35rem; }
.location-card__desc { font-size: .84rem; color: rgba(255, 255, 255, .82); margin-bottom: 1.1rem; line-height: 1.5; }

/* ---------- Feature rows (Cinema Experience) ---------- */
.feature-row { display: flex; align-items: center; gap: 5vw; padding: var(--space-lg) 0; flex-wrap: wrap; }
.feature-row--reverse { flex-direction: row-reverse; }
.feature-row__media, .feature-row__text { flex: 1 1 380px; }
.feature-row__media {
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, var(--color-bg-soft), #ece5d3);
}
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; color: transparent; }
.feature-row__text p { color: var(--color-ink-70); max-width: 42ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-bg-soft); padding: var(--space-lg) 0 var(--space-md); }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2.5rem; padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.footer__nav { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer__nav a { font-size: .82rem; letter-spacing: .03em; }
.footer__nav a:hover { text-decoration: underline; text-decoration-color: var(--color-gold); text-underline-offset: 4px; }
.footer__social { display: flex; gap: .75rem; }
.footer__social a {
  width: 38px; height: 38px; border: 1px solid var(--color-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast);
}
.footer__social a:hover { background: var(--color-gold); border-color: var(--color-gold); }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.footer__bottom {
  padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: var(--color-ink-70);
}
.footer__bottom a:hover { color: var(--color-gold-dark); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  transition: transform var(--dur-fast) var(--ease-premium);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; position: relative; z-index: 1; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- Page header (About / Locations / Business Dev / Careers / Contact) ---------- */
.page-header {
  position: relative; overflow: hidden;
  background: var(--color-ink) center / cover no-repeat; color: #fff;
  padding: clamp(9rem, 20vh, 11.5rem) 0 clamp(3.5rem, 8vh, 5rem);
}
.page-header__media {
  position: absolute; inset: 0; z-index: 0;
  background: center / cover no-repeat; will-change: transform;
}
.page-header::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, .72) 0%, rgba(10, 10, 10, .8) 55%, rgba(10, 10, 10, .88) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { color: rgba(255, 255, 255, .75); }
.page-header__title { font-size: clamp(2.5rem, 5.5vw, 4.25rem); color: #fff; max-width: 18ch; }
.page-header__lede { margin-top: 1.1rem; color: rgba(255, 255, 255, .72); max-width: 56ch; font-size: 1.05rem; }

.page-header--about       .page-header__media { background-image: url("https://images.pexels.com/photos/7991185/pexels-photo-7991185.jpeg?auto=compress&cs=tinysrgb&w=1920"); }
.page-header--locations   .page-header__media { background-image: url("https://images.pexels.com/photos/31567537/pexels-photo-31567537.jpeg?auto=compress&cs=tinysrgb&w=1920"); }
.page-header--bizdev      .page-header__media { background-image: url("https://images.pexels.com/photos/22863012/pexels-photo-22863012.jpeg?auto=compress&cs=tinysrgb&w=1920"); }
.page-header--careers     .page-header__media { background-image: url("https://images.pexels.com/photos/8263327/pexels-photo-8263327.jpeg?auto=compress&cs=tinysrgb&w=1920"); }
.page-header--contact     .page-header__media { background-image: url("https://images.pexels.com/photos/7991303/pexels-photo-7991303.jpeg?auto=compress&cs=tinysrgb&w=1920"); }

/* ---------- Editorial photo band (About / Business Development supporting imagery) ---------- */
.photo-band { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; margin-top: var(--space-xl); }
.photo-band__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; }
.photo-band__item--tall { aspect-ratio: 3 / 4; }
.photo-band__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-premium); }
.photo-band__item:hover img { transform: scale(1.06); }
.photo-band__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, .82));
  color: #fff; font-size: .85rem; letter-spacing: .02em;
}

/* ---------- Location map embeds ---------- */
.map-embed { aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }

/* ---------- Timeline (About) ---------- */
.timeline { position: relative; max-width: 720px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 1px; background: var(--color-border); }
.timeline__item { position: relative; padding-left: 2.75rem; padding-bottom: var(--space-lg); }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: 0; top: 5px; width: 19px; height: 19px; border-radius: 50%; background: var(--color-bg); border: 1px solid var(--color-gold); }
.timeline__dot::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--color-gold); }
.timeline__item h3 { margin-bottom: .6rem; }
.timeline__item p { color: var(--color-ink-70); max-width: 56ch; }

/* ---------- Location detail cards (Locations page) ---------- */
.location-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.location-detail { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.location-detail__banner { aspect-ratio: 16 / 9; background: linear-gradient(150deg, var(--color-bg-soft), #ece5d3); overflow: hidden; }
.location-detail__banner img { width: 100%; height: 100%; object-fit: cover; color: transparent; }
.location-detail__body { padding: 1.85rem; }
.location-detail__title { font-size: 1.5rem; margin-bottom: .5rem; }
.location-detail__desc { color: var(--color-ink-70); margin-bottom: 1.4rem; }
.amenity-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.amenity-tag {
  font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 500;
  padding: .5rem .9rem; border: 1px solid var(--color-border); border-radius: 20px; color: var(--color-ink-70);
}
.location-detail__meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  padding: 1.25rem 0 1.5rem; border-top: 1px solid var(--color-border);
}
.location-detail__meta h4 {
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-body); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-ink-70); margin-bottom: .4rem; font-weight: 600;
}
.location-detail__meta h4 svg { width: 14px; height: 14px; color: var(--color-gold-dark); flex-shrink: 0; }
.map-placeholder {
  aspect-ratio: 16 / 9; border-radius: var(--radius);
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 26px 26px; background-color: var(--color-bg-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  color: var(--color-ink-70); font-size: .78rem; text-align: center;
}
.map-placeholder svg { width: 22px; height: 22px; color: var(--color-gold-dark); }

/* ---------- Service cards (Business Development — "What We Do") ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card { padding: 2.1rem 1.6rem; border: 1px solid var(--color-border); border-radius: var(--radius); transition: border-color var(--dur-fast); }
.service-card:hover { border-color: var(--color-gold); }
.service-card__mark { display: block; width: 24px; height: 2px; background: var(--color-gold); margin-bottom: 1.4rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: .55rem; }
.service-card p { font-size: .88rem; color: var(--color-ink-70); }

/* ---------- Phases (Business Development) ---------- */
.phase { padding: var(--space-lg) 0; border-top: 1px solid var(--color-border); }
.phase__head { display: flex; align-items: baseline; gap: 1.5rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.phase__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-gold-dark); letter-spacing: .04em; flex-shrink: 0; }
.phase__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2.5rem; }
.phase__list li { padding-left: 1.4rem; position: relative; }
.phase__list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--color-gold); }
.phase__list strong { display: block; margin-bottom: .3rem; font-size: .98rem; }
.phase__list span { color: var(--color-ink-70); font-size: .88rem; }

/* ---------- Final CTA band ---------- */
.final-cta { background: var(--color-ink); color: #fff; text-align: center; }
.final-cta .h-1, .final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255, 255, 255, .72); margin: 1.1rem auto 2rem; }

/* ---------- Forms (Careers / Contact) ---------- */
.form-field { margin-bottom: 1.4rem; }
.form-field label { display: block; font-size: .75rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .55rem; color: var(--color-ink-70); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--color-border); border-radius: 4px;
  font-family: var(--font-body); font-size: .95rem; color: var(--color-ink); background: #fff;
  transition: border-color var(--dur-fast);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--color-gold-dark); outline: none; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input[type="file"] { padding: .65rem 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-note { font-size: .78rem; color: var(--color-ink-70); margin-top: -.4rem; margin-bottom: 1.4rem; }
.form-banner { display: none; padding: 1rem 1.25rem; border-radius: 4px; margin-bottom: 1.75rem; font-size: .9rem; }
.form-banner.is-visible { display: block; }
.form-banner--success { background: #f0f6ee; color: #33562b; border: 1px solid #cfe3c6; }
.form-banner--error { background: #fbeeee; color: #7a2b2b; border: 1px solid #eecccc; }
.honeypot-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- Contact split layout ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
.contact-info__item { display: flex; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--color-border); }
.contact-info__item:first-child { padding-top: 0; }
.contact-info__icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--color-gold-dark); margin-top: .1rem; }
.contact-info__item h3 { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-ink-70); margin-bottom: .35rem; font-weight: 600; }
.contact-info__item a:hover { color: var(--color-gold-dark); }
.contact-info .btn { margin-top: 1.75rem; }

/* ---------- Word-split headline reveals ---------- */
.split-line { display: block; }
.reveal-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.reveal-word__inner { display: inline-block; will-change: transform; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 3000; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--color-gold); opacity: 0; }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(17, 17, 17, .4); opacity: 0;
  transition: width .25s var(--ease-premium), height .25s var(--ease-premium),
              border-color .25s var(--ease-premium), background-color .25s var(--ease-premium);
}
.cursor-ring.is-hover { width: 60px; height: 60px; background: rgba(200, 166, 77, .12); border-color: var(--color-gold); }
.cursor-ring.is-dark { border-color: rgba(255, 255, 255, .55); }
.cursor-ring.is-dark.is-hover { background: rgba(200, 166, 77, .2); border-color: var(--color-gold); }
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a, body.has-custom-cursor button, body.has-custom-cursor [role="button"] { cursor: none; }
body.has-custom-cursor input, body.has-custom-cursor textarea, body.has-custom-cursor select { cursor: auto; }

/* ---------- Card tilt (JS-driven transform; this just sets up 3D context) ---------- */
.location-card, .service-card, .location-detail { transform-style: preserve-3d; will-change: transform; }

/* ---------- Nav hover pill ---------- */
.nav__link { position: relative; z-index: 1; }
.nav__pill {
  position: absolute; left: 0; top: 0; height: 100%; width: 0;
  border-radius: 20px; background: rgba(255, 255, 255, .14); opacity: 0; z-index: 0;
}
.site-header.is-scrolled .nav__pill { background: rgba(17, 17, 17, .06); }

/* ---------- Film-grain overlay ---------- */
.grain-overlay {
  position: fixed; inset: 0; z-index: 2500; pointer-events: none; opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Ticker marquee ---------- */
.ticker { overflow: hidden; background: var(--color-bg-soft); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 1.15rem 0; }
.ticker__track { display: flex; gap: 2.25rem; width: max-content; white-space: nowrap; animation: tickerScroll 30s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .01em; color: var(--color-ink-70); }
.ticker__track span.dot { color: var(--color-gold); font-family: var(--font-body); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

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