/* =============================================================
   Las Vegas Tux — "Black-Tie Luxe" design system
   Deep tuxedo black · champagne gold · warm ivory · editorial serif
   ============================================================= */

/* ---------- tokens ---------- */
:root {
  /* ink / surfaces */
  --ink-0:      #0a0a0c;   /* page base — tuxedo black */
  --ink-1:      #0e0e11;
  --ink-2:      #121217;
  --surface-0:  #141319;
  --surface-1:  #1b1a22;
  --black-pure: #060507;

  /* hairlines */
  --line-0:     #232129;
  --line-1:     #2f2b33;
  --line-gold:  rgba(200, 162, 76, 0.28);

  /* text — warm ivory family */
  --ivory:      #f4efe4;
  --text-0:     #efe9db;
  --text-1:     #cfc8b8;
  --text-2:     #9b9484;
  --text-muted: #6c6657;

  /* champagne gold */
  --gold:       #c8a24c;
  --gold-soft:  #b9954a;
  --gold-bright:#e7c878;
  --gold-deep:  #9c7c34;
  --gold-glow:  rgba(200, 162, 76, 0.30);
  --gold-faint: rgba(200, 162, 76, 0.08);

  /* supporting jewel tone (used sparingly) */
  --oxblood:    #6e1f2a;
  --champagne:  #e8dcc0;

  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body:    'Jost', system-ui, -apple-system, Segoe UI, sans-serif;

  --radius-0:   2px;
  --radius-1:   4px;
  --radius-2:   12px;

  --ease:       cubic-bezier(.22, .61, .36, 1);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --transition: 320ms var(--ease);

  --container:  1200px;
  --container-narrow: 880px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink-0);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.15rem; }

/* serif italic accent words inside headings */
.serif-italic, h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }
.in-gold { color: var(--gold); }

p { margin: 0 0 1.1em; }
strong { color: var(--text-0); font-weight: 500; }
.muted { color: var(--text-muted); }
.lede {
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--text-1);
  font-weight: 300;
}

::selection { background: var(--gold); color: var(--black-pure); }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: clamp(44px, 6.5vw, 88px) 0;
  position: relative;
}
.section--tight { padding: clamp(30px, 4.5vw, 56px) 0; }
.section--ink-1 { background: var(--ink-1); }
.section--ink-2 { background: var(--ink-2); }
.section--black { background: var(--black-pure); }

.section__header {
  max-width: 760px;
  margin-bottom: clamp(22px, 3.5vw, 40px);
}
.section__header--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section__header h2 { margin-top: 12px; }
.section__header p { margin-top: 6px; color: var(--text-2); max-width: 60ch; }
.section__header--center p { margin-left: auto; margin-right: auto; }

/* ---------- eyebrow / overline ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--bare::before { display: none; }

/* ---------- deco divider ---------- */
.deco-rule {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--gold);
  margin: 0 auto;
}
.deco-rule::before, .deco-rule::after {
  content: ''; height: 1px; width: clamp(40px, 12vw, 140px);
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}
.deco-rule__diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(200,162,76,0.10);
}

.visually-hidden, .skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  background: var(--gold); color: var(--black-pure); padding: 10px 18px;
  letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.78rem;
  border-radius: var(--radius-1);
}

/* ---------- ambient / texture ---------- */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient-glow {
  position: absolute;
  width: 70vw; height: 70vw; max-width: 1000px; max-height: 1000px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.5;
}
.ambient-glow--gold {
  top: -25vw; right: -15vw;
  background: radial-gradient(circle, rgba(200,162,76,0.16) 0%, transparent 62%);
}
.ambient-glow--warm {
  bottom: -30vw; left: -18vw;
  background: radial-gradient(circle, rgba(110,31,42,0.14) 0%, transparent 62%);
  opacity: 0.4;
}
/* fine film grain over everything */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.04;
  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='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

body > main, body > footer, body > header { position: relative; z-index: 1; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(16px) saturate(1.1);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid var(--line-0);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
  gap: 22px;
}

/* brand wordmark */
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ivory); }
.brand:hover { color: var(--ivory); }
.brand__mark { display: inline-flex; filter: drop-shadow(0 1px 6px rgba(200,162,76,0.25)); }
.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand__word .amp { color: var(--gold); font-style: italic; }
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 3px;
  white-space: nowrap;
}

.site-nav__list {
  display: flex; align-items: center; gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
.site-nav__list > li > a {
  color: var(--text-1);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.site-nav__list > li > a:hover { color: var(--ivory); }
.site-nav__list > li > a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--gold);
  transition: right var(--transition);
}
.site-nav__list > li > a:hover::after,
.site-nav__list > li > a.is-active::after { right: 0; }
.site-nav__list > li > a.is-active { color: var(--ivory); }

.site-nav__cta { margin-left: 8px; }

.site-nav__toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--line-1);
  border-radius: var(--radius-1);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
}
.site-nav__toggle-bar { display: block; width: 18px; height: 1px; background: var(--ivory); transition: var(--transition); }

@media (max-width: 940px) {
  .site-nav__toggle { display: inline-flex; }
  .site-nav__list {
    position: fixed; inset: 0; top: 0;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center;
    padding: 80px 24px; gap: 30px;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 420ms var(--ease-out), visibility 420ms var(--ease-out);
  }
  .site-nav.is-open .site-nav__list { transform: translateY(0); visibility: visible; }
  .site-nav__list > li > a {
    font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.02em;
    text-transform: none; color: var(--ivory);
  }
  .site-nav.is-open .site-nav__toggle .site-nav__toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-nav.is-open .site-nav__toggle .site-nav__toggle-bar:nth-child(2) { opacity: 0; }
  .site-nav.is-open .site-nav__toggle .site-nav__toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* value strip under header */
.value-strip {
  border-top: 1px solid var(--line-0);
  background: linear-gradient(90deg, rgba(200,162,76,0.06), transparent 70%);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.value-strip__inner { display: flex; align-items: center; gap: 14px; padding: 9px 28px; }
.value-strip__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold-glow);
  animation: pulse 2.6s ease-in-out infinite; flex: 0 0 auto;
}
.value-strip__text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.value-strip__cta { color: var(--gold); white-space: nowrap; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (max-width: 620px) { .value-strip { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line-1);
  border-radius: var(--radius-0);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn .arrow { transition: transform var(--transition); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  border-color: var(--gold);
  color: var(--black-pure);
  font-weight: 600;
  box-shadow: 0 8px 30px -12px var(--gold-glow);
}
.btn--gold:hover {
  color: var(--black-pure);
  box-shadow: 0 12px 38px -10px rgba(200,162,76,0.5);
  transform: translateY(-2px);
}
.btn--outline { border-color: var(--line-1); color: var(--text-1); }
.btn--outline:hover { color: var(--ivory); border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.btn--ghost { border-color: transparent; color: var(--text-1); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { color: var(--gold); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: 0.78rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(28px, 4vw, 56px) 0 clamp(36px, 5.5vw, 76px);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 940px) { .hero__inner { grid-template-columns: 1fr; gap: 48px; } }

.hero__eyebrow { margin-bottom: 26px; }
.hero h1 { font-size: clamp(3.2rem, 8.5vw, 6.6rem); line-height: 0.98; margin-bottom: 0; }
.hero h1 .line { display: block; }
.hero__lede { margin-top: 24px; max-width: 480px; }
.hero__actions { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 36px;
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid var(--line-0);
}
.hero__meta > div {
  padding: 22px 28px 0 0; margin-right: 28px;
  border-right: 1px solid var(--line-0);
}
.hero__meta > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__meta-k {
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted);
}
.hero__meta-v { display: block; color: var(--text-0); font-size: 1.05rem; margin-top: 6px; font-weight: 400; }
.hero__meta-v a { color: var(--text-0); }
.hero__meta-v a:hover { color: var(--gold); }
@media (max-width: 480px) {
  .hero__meta > div { border-right: 0; margin-right: 0; padding-right: 0; flex: 1 1 45%; }
}

/* hero visual w/ deco frame */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--surface-1), var(--ink-1));
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(1.02) brightness(0.98);
}
.hero__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.55), transparent 45%);
  pointer-events: none;
}
.frame-deco { position: absolute; inset: 18px; pointer-events: none; z-index: 3; }
.frame-deco span {
  position: absolute; width: 26px; height: 26px;
  border: 1px solid var(--gold); opacity: 0.85;
}
.frame-deco span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.frame-deco span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.frame-deco span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.frame-deco span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hero__visual-tag {
  position: absolute; left: 30px; bottom: 30px; z-index: 4;
  font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero__visual-tag::before { content: ''; width: 22px; height: 1px; background: var(--gold); }

/* ---------- marquee ticker ---------- */
.marquee {
  border-top: 1px solid var(--line-0);
  border-bottom: 1px solid var(--line-0);
  background: var(--black-pure);
  overflow: hidden;
  padding: 20px 0;
}
.marquee__track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-2);
  display: inline-flex; align-items: center; gap: 48px;
  white-space: nowrap;
}
.marquee__item::after {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg); flex: 0 0 auto;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- collection / lookbook grid ---------- */
.lookbook {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.look {
  position: relative;
  display: block;
  background: var(--ink-2);
  border: 1px solid var(--line-0);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.look:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.look__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--surface-0); }
.look__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.look:hover .look__media img { transform: scale(1.05); }
.look__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.85) 0%, transparent 55%);
}
.look__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 24px;
}
.look__cat { font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.look__name { font-family: var(--font-display); font-size: 1.7rem; color: var(--ivory); margin: 6px 0 2px; line-height: 1.05; }
.look__meta { font-size: 0.82rem; color: var(--text-2); letter-spacing: 0.04em; }
.look__tag {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black-pure); background: var(--gold);
  padding: 5px 10px; font-weight: 600;
}

/* filter chips */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-chip {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-2); background: transparent;
  border: 1px solid var(--line-1); border-radius: 100px;
  padding: 9px 20px; cursor: pointer; transition: all var(--transition);
}
.filter-chip:hover { color: var(--ivory); border-color: var(--line-gold); }
.filter-chip.is-active { color: var(--black-pure); background: var(--gold); border-color: var(--gold); font-weight: 500; }
.look.is-hidden { display: none; }

/* ---------- service / step cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line-0);
  border: 1px solid var(--line-0);
}
.card {
  background: var(--ink-1);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--transition);
}
.card:hover { background: var(--surface-0); }
.card__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--gold);
}
.card__icon { color: var(--gold); margin-bottom: 4px; }
.card h3 { font-size: 1.5rem; margin: 0; }
.card p { color: var(--text-2); font-size: 0.96rem; margin: 0; }
.card__link {
  margin-top: auto; padding-top: 12px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
}
.card__link::after { content: '→'; transition: transform var(--transition); }
.card:hover .card__link::after { transform: translateX(5px); }

/* numbered steps (how it works) */
.steps { display: grid; gap: 1px; background: var(--line-0); border: 1px solid var(--line-0); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step {
  background: var(--ink-1); padding: 44px 38px;
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  transition: background var(--transition);
}
.step:hover { background: var(--surface-0); }
.step__num {
  font-family: var(--font-display); font-size: 3.4rem; line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1px var(--gold); font-weight: 600;
}
.step h3 { font-size: 1.55rem; margin: 0 0 8px; }
.step p { color: var(--text-2); margin: 0; font-size: 0.98rem; }

/* ---------- feature row ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.feature-row + .feature-row { margin-top: clamp(36px, 5.5vw, 68px); }
.feature-row--reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row--reverse > :first-child { order: 0; }
}
.feature-visual {
  aspect-ratio: 4 / 3; overflow: hidden;
  border: 1px solid var(--line-0); position: relative;
  background: var(--surface-0);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.feature-row:hover .feature-visual img { transform: scale(1.04); }
.feature-visual--tall { aspect-ratio: 3 / 4; }
.feature-body h2 { margin-bottom: 18px; }
.feature-body > p { color: var(--text-1); }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.98rem; color: var(--text-1);
}
.checklist li::before {
  content: ''; flex: 0 0 auto; margin-top: 9px;
  width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg); box-shadow: 0 0 0 3px var(--gold-faint);
}

/* ---------- stat strip ---------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px; background: var(--line-0); border: 1px solid var(--line-0);
}
.stat-cell { padding: 40px 28px; background: var(--ink-1); text-align: center; }
.stat-cell__num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 500; color: var(--gold); line-height: 1; letter-spacing: -0.01em;
}
.stat-cell__label {
  margin-top: 14px; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-2);
}

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.quote {
  background: var(--ink-1); border: 1px solid var(--line-0);
  padding: 38px 34px; position: relative;
}
.quote::before {
  content: '\201C'; font-family: var(--font-display); font-size: 5rem;
  color: var(--gold); opacity: 0.35; position: absolute; top: 6px; left: 20px; line-height: 1;
}
.quote__text {
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1.45;
  color: var(--text-0); font-weight: 400; margin: 16px 0 22px; position: relative;
}
.quote__by { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.quote__stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 6px; font-size: 0.9rem; }

/* ---------- cta block ---------- */
.cta-block {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-gold);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(200,162,76,0.12), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(110,31,42,0.14), transparent 55%),
    var(--ink-1);
  padding: clamp(48px, 8vw, 88px) clamp(32px, 6vw, 72px);
  text-align: center;
}
.cta-block .eyebrow { margin-bottom: 18px; }
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { max-width: 540px; margin: 0 auto 30px; color: var(--text-1); }
.cta-block__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- page head ---------- */
.page-head {
  padding: clamp(40px, 5.5vw, 80px) 0 clamp(30px, 4vw, 52px);
  border-bottom: 1px solid var(--line-0);
  position: relative;
}
.page-head__inner { max-width: 860px; }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-top: 16px; }
.page-head__lede { margin-top: 22px; max-width: 660px; }

/* ---------- breadcrumb ---------- */
.crumbs {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); display: flex; gap: 10px; align-items: center;
}
.crumbs a { color: var(--text-2); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--line-1); }
.crumbs span[aria-current] { color: var(--text-0); }

/* ---------- panels / prose ---------- */
.panel {
  background: var(--ink-1); border: 1px solid var(--line-0);
  padding: 36px;
}
.panel + .panel { margin-top: 20px; }
.panel h3 { color: var(--ivory); }
.prose { max-width: 720px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; color: var(--gold); }
.prose p, .prose li { color: var(--text-1); }
.prose ul { padding-left: 1.1em; }
.prose ul li { margin-bottom: 0.5em; }

/* anchor offset for sticky header */
:target { scroll-margin-top: 120px; }

/* ---------- info / detail grid ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line-0); border: 1px solid var(--line-0); }
.detail { background: var(--ink-1); padding: 30px 26px; }
.detail__k { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.detail__v { color: var(--text-0); margin-top: 10px; font-size: 1.02rem; line-height: 1.6; }
.detail__v a { color: var(--text-0); }
.detail__v a:hover { color: var(--gold); }

/* hours list */
.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 9px 0; border-bottom: 1px solid var(--line-0);
  font-size: 0.92rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li .day { color: var(--text-1); letter-spacing: 0.08em; }
.hours li .time { color: var(--text-2); }
.hours li.is-today .day, .hours li.is-today .time { color: var(--gold); }

/* ---------- forms ---------- */
.form {
  display: grid; gap: 22px;
  background: var(--ink-1); border: 1px solid var(--line-0);
  padding: clamp(28px, 4vw, 44px);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-2);
}
.field label .req { color: var(--gold); }
.field input, .field textarea, .field select {
  background: var(--ink-2);
  border: 1px solid var(--line-1);
  color: var(--text-0);
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  border-radius: var(--radius-0);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-faint);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a24c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.field__hint { font-size: 0.82rem; color: var(--text-muted); }
.form-disclaimer { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.02em; }
.hp-field { position: absolute; left: -9999px; }

.form-status {
  font-size: 0.92rem; padding: 14px 18px;
  border: 1px solid var(--line-1); border-radius: var(--radius-0);
}
.form-status:empty { display: none; }
.form-status--ok { color: var(--gold-bright); border-color: var(--gold); background: var(--gold-faint); }
.form-status--err { color: #e8a0a0; border-color: var(--oxblood); background: rgba(110,31,42,0.18); }

/* ---------- fitting date picker ---------- */
.picker {
  background: var(--ink-1); border: 1px solid var(--line-0); padding: 28px;
}
.picker__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.picker__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); }
.picker__nav { display: flex; gap: 8px; }
.picker__nav button {
  width: 38px; height: 38px; background: transparent;
  border: 1px solid var(--line-1); color: var(--text-1); cursor: pointer;
  font-size: 1.1rem; transition: all var(--transition);
}
.picker__nav button:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.picker__nav button:disabled { opacity: 0.25; cursor: not-allowed; }
.picker__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.picker__dow {
  text-align: center; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); padding: 6px 0;
}
.picker__day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--text-1);
  background: var(--ink-2); border: 1px solid transparent; cursor: pointer;
  transition: all var(--transition);
}
.picker__day:hover:not(:disabled) { border-color: var(--gold); color: var(--ivory); }
.picker__day:disabled { color: var(--text-muted); opacity: 0.4; cursor: not-allowed; background: transparent; }
.picker__day--out { visibility: hidden; }
.picker__day--today { color: var(--gold); font-weight: 500; }
.picker__day--selected { background: var(--gold); color: var(--black-pure); border-color: var(--gold); font-weight: 600; }
.picker__legend {
  margin-top: 18px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); display: flex; gap: 20px; flex-wrap: wrap;
}

/* ---------- footer ---------- */
.site-footer { background: var(--black-pure); border-top: 1px solid var(--line-0); padding-top: 72px; }
.site-footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 56px;
}
@media (max-width: 880px) { .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer .brand { margin-bottom: 16px; }
.site-footer__tag { color: var(--text-2); max-width: 32ch; font-size: 0.96rem; }
.site-footer__social { display: flex; gap: 14px; margin-top: 22px; }
.site-footer__social a {
  width: 38px; height: 38px; border: 1px solid var(--line-1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: all var(--transition);
}
.site-footer__social a:hover { color: var(--gold); border-color: var(--gold); }
.site-footer h3 {
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 18px;
}
.site-footer address { font-style: normal; color: var(--text-1); font-size: 0.94rem; line-height: 1.8; }
.site-footer address a { color: var(--text-1); }
.site-footer address a:hover { color: var(--gold); }
.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { padding: 5px 0; }
.link-list a { color: var(--text-1); font-size: 0.94rem; letter-spacing: 0.02em; }
.link-list a:hover { color: var(--gold); }
.site-footer__base { border-top: 1px solid var(--line-0); padding: 26px 0; }
.site-footer__base-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.08em; color: var(--text-muted);
}
.site-footer__base p { margin: 0; }
.site-footer__base a { color: var(--text-muted); }
.site-footer__base a:hover { color: var(--gold); }

/* ---------- utility ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.tag {
  display: inline-block; padding: 5px 12px;
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--line-1); color: var(--text-2); border-radius: 100px;
}
.tag--gold { color: var(--gold); border-color: var(--line-gold); }

/* faq */
.faq { border-top: 1px solid var(--line-0); }
.faq__item { border-bottom: 1px solid var(--line-0); }
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 26px 44px 26px 0; position: relative;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--ivory);
}
.faq__q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.6rem; font-family: var(--font-body); font-weight: 300;
  transition: transform var(--transition);
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease); }
.faq__a-inner { padding: 0 44px 28px 0; color: var(--text-2); }
.faq__item.is-open .faq__a { max-height: 320px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 750ms var(--ease-out), transform 750ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .ambient-glow { display: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
}
