/* ==========================================================================
   Par 19 — Golf Simulation, Beaumont TX
   Design system
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Neutrals (warm) */
  --paper:      #ffffff;
  --sand:       #f6f5f1;
  --sand-deep:  #efede6;
  --line:       #e5e3dc;
  --line-firm:  #d2cfc6;
  --body:       #56564e;
  --muted:      #8a8a80;
  --ink:        #111110;
  --dark:       #0f0f0e;
  --dark-soft:  #191917;

  /* Brand */
  --green:      #689838;
  --green-deep: #58832d;
  --green-lift: #8cbb56;

  /* Type */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Inter Tight', 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --fs-hero: clamp(2.5rem, 6vw, 4.6rem);
  --fs-h1:   clamp(2.125rem, 4.4vw, 3.375rem);
  --fs-h2:   clamp(1.75rem, 3.2vw, 2.625rem);
  --fs-h3:   clamp(1.125rem, 1.5vw, 1.3125rem);
  --fs-lead: clamp(1.0625rem, 1.25vw, 1.1875rem);

  /* Metrics */
  --gutter: clamp(20px, 4vw, 52px);
  --maxw:   1240px;
  --pad-y:  clamp(72px, 8.5vw, 124px);
  --notice: 34px;
  --header: 72px;
  --r:      2px;
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
::selection { background: var(--ink); color: #fff; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 16px;
  font-size: .8125rem; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; }

/* --- Layout -------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 860px; }
.section { padding-block: var(--pad-y); }
.section--tight { padding-block: clamp(56px, 6vw, 88px); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--dark); color: #fff; }
.section--line { border-top: 1px solid var(--line); }
main { display: block; }

/* --- Typography ---------------------------------------------------------- */
.display,
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark .display { color: #fff; }

.t-hero { font-size: var(--fs-hero); letter-spacing: -.038em; line-height: 1.02; }
.t-h1   { font-size: var(--fs-h1); letter-spacing: -.034em; }
.t-h2   { font-size: var(--fs-h2); letter-spacing: -.03em; }
.t-h3   { font-size: var(--fs-h3); letter-spacing: -.02em; line-height: 1.3; }

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.section--dark .eyebrow { color: var(--green-lift); }
.eyebrow--muted { color: var(--muted); }

.lead { font-size: var(--fs-lead); line-height: 1.62; color: var(--body); max-width: 62ch; }
.section--dark .lead, .section--dark p { color: rgba(255,255,255,.66); }
.prose p + p { margin-top: 1.1em; }
.small { font-size: .875rem; }
.muted { color: var(--muted); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lead { margin-top: 20px; }
.section-head--split {
  max-width: none; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.section-head--split > div { max-width: 640px; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--r);
  padding: 14px 26px;
  font-size: .78125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--green { --btn-bg: var(--green); --btn-bd: var(--green); }
.btn--green:hover { --btn-bg: var(--green-deep); --btn-bd: var(--green-deep); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-firm); }
.btn--ghost:hover { --btn-bd: var(--ink); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--light:hover { --btn-bg: rgba(255,255,255,.88); --btn-bd: rgba(255,255,255,.88); }
.btn--onDark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.34); }
.btn--onDark:hover { --btn-bd: #fff; }
.btn--wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

.link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-firm); padding-bottom: 4px;
  transition: border-color .18s, color .18s;
}
.link:hover { border-color: var(--green); color: var(--green-deep); }
.section--dark .link { color: #fff; border-color: rgba(255,255,255,.3); }
.section--dark .link:hover { border-color: #fff; color: #fff; }

/* --- Notice bar ---------------------------------------------------------- */
.notice {
  position: fixed; inset: 0 0 auto; z-index: 60;
  height: var(--notice); background: var(--ink); color: rgba(255,255,255,.82);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding-inline: 16px;
  font-size: .75rem; letter-spacing: .04em;
}
.notice b { color: #fff; font-weight: 600; }
.notice__sep { color: rgba(255,255,255,.3); }
.notice a { color: var(--green-lift); text-decoration: none; border-bottom: 1px solid transparent; }
.notice a:hover { border-color: currentColor; }

/* --- Header -------------------------------------------------------------- */
.header {
  position: fixed; top: var(--notice); left: 0; right: 0; z-index: 55;
  height: var(--header);
  display: flex; align-items: center; gap: 32px;
  padding-inline: var(--gutter);
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: border-color .25s;
}
.header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.header__logo img { height: 34px; width: auto; object-fit: contain; }
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__list a {
  font-size: .8125rem; font-weight: 500; letter-spacing: .01em;
  color: var(--body); text-decoration: none;
  padding-block: 6px; border-bottom: 1px solid transparent;
  transition: color .18s, border-color .18s;
}
.nav__list a:hover { color: var(--ink); }
.nav__list a[aria-current="page"] { color: var(--ink); border-color: var(--green); }
.header__cta { flex-shrink: 0; }
.header__cta .btn { padding: 11px 22px; }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; margin-right: -9px; margin-left: auto;
  background: none; border: 0; cursor: pointer;
}
.burger span {
  display: block; height: 1.5px; width: 21px; margin-inline: auto;
  background: var(--ink); transition: transform .28s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: calc(var(--notice) + var(--header)) 0 0; z-index: 54;
  background: var(--paper); padding: 8px var(--gutter) 40px;
  overflow-y: auto; display: none;
}
.mobile-nav[data-open] { display: block; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); font-size: 1.5rem; font-weight: 500; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav a[aria-current="page"] { color: var(--green-deep); }
.mobile-nav__foot { margin-top: 28px; display: grid; gap: 10px; }
.mobile-nav__meta { margin-top: 26px; font-size: .875rem; color: var(--muted); display: grid; gap: 4px; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  margin-top: calc(var(--notice) + var(--header));
  min-height: min(86vh, 800px);
  display: flex; align-items: flex-end;
  background: var(--dark); overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(8,8,7,.86) 0%, rgba(8,8,7,.48) 38%, rgba(8,8,7,.14) 72%, rgba(8,8,7,.28) 100%);
}
.hero__inner { padding-block: clamp(44px, 6vw, 84px); width: 100%; }

/* Centered logo lockup (home) */
.hero--center { align-items: center; text-align: center; min-height: min(92vh, 900px); }
.hero--center .hero__media img { opacity: .5; }
.hero--center::after {
  background:
    radial-gradient(115% 85% at 50% 42%, rgba(8,8,7,.5) 0%, rgba(8,8,7,.8) 58%, rgba(8,8,7,.95) 100%);
}
.hero--center .hero__inner { padding-block: clamp(56px, 8vw, 112px); }
.hero__lockup { display: grid; justify-items: center; gap: clamp(26px, 3.2vw, 42px); }
.hero__mark { width: clamp(216px, 27vw, 380px); height: auto; }
.hero--center h1 { max-width: none; }
.hero__slogan {
  max-width: 21ch; margin-inline: auto;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.6875rem, 4vw, 3rem);
  letter-spacing: -.032em; line-height: 1.12; color: #fff;
  text-wrap: balance;
}
.hero__slogan em { font-style: normal; color: var(--green-lift); }
.hero__note {
  margin: 18px auto 0; max-width: 52ch;
  font-size: var(--fs-lead); line-height: 1.6; color: rgba(255,255,255,.7);
}
.hero--center .btn-row { justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: .8125rem; }
.hero__eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 22px;
}
.hero h1 { color: #fff; max-width: 17ch; }
.hero__sub {
  margin-top: 22px; max-width: 46ch;
  font-size: var(--fs-lead); line-height: 1.6; color: rgba(255,255,255,.76);
}
.hero .btn-row { margin-top: 34px; }

/* Page header (interior pages) */
.pagehead {
  position: relative; margin-top: calc(var(--notice) + var(--header));
  background: var(--dark); overflow: hidden; isolation: isolate;
  display: flex; align-items: flex-end; min-height: min(62vh, 560px);
}
.pagehead__media { position: absolute; inset: 0; z-index: -2; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(8,8,7,.88) 0%, rgba(8,8,7,.5) 46%, rgba(8,8,7,.22) 100%);
}
.pagehead__inner { padding-block: clamp(40px, 5vw, 72px); width: 100%; }
.pagehead h1 { color: #fff; max-width: 20ch; }
.pagehead__sub {
  margin-top: 18px; max-width: 54ch;
  font-size: var(--fs-lead); line-height: 1.6; color: rgba(255,255,255,.74);
}
.pagehead .eyebrow { color: rgba(255,255,255,.6); }
.pagehead .btn-row { margin-top: 30px; }

/* --- Facts strip --------------------------------------------------------- */
.facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.fact { padding: 26px var(--gutter); border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact__k {
  font-size: .6875rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.fact__v { font-family: var(--display); font-size: 1.0625rem; font-weight: 500; color: var(--ink); letter-spacing: -.015em; }
.fact__v a { text-decoration: none; }
.fact__v a:hover { color: var(--green-deep); }
.fact__n { font-size: .8125rem; color: var(--muted); margin-top: 3px; }

/* --- Split (media + copy) ------------------------------------------------ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.split--wide-media { grid-template-columns: 1.15fr 1fr; }
.split--flip .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); }
.split__media--tall { aspect-ratio: 4 / 5; }
.split__media--wide { aspect-ratio: 4 / 3; }
.split__cap {
  margin-top: 14px; font-size: .8125rem; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.split__cap::before { content: ''; width: 16px; height: 1px; background: var(--line-firm); }

/* --- Numbered feature rows ---------------------------------------------- */
.rows { border-top: 1px solid var(--line); }
.section--dark .rows { border-color: rgba(255,255,255,.12); }
.row {
  display: grid; grid-template-columns: 40px 1fr; gap: 4px 20px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.section--dark .row { border-color: rgba(255,255,255,.12); }
.row__n {
  font-family: var(--display); font-size: .8125rem; font-weight: 600;
  color: var(--green-deep); padding-top: 3px; letter-spacing: 0;
}
.section--dark .row__n { color: var(--green-lift); }
.row__t { font-family: var(--display); font-size: 1.0625rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; margin-bottom: 6px; }
.section--dark .row__t { color: #fff; }
.row__b { font-size: .9375rem; line-height: 1.62; color: var(--body); }
.section--dark .row__b { color: rgba(255,255,255,.6); }

/* --- Card grid ---------------------------------------------------------- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.section--dark .grid { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); }
.card { background: var(--paper); padding: clamp(26px, 3vw, 38px); }
.section--sand .card { background: var(--sand); }
.section--dark .card { background: var(--dark); }
.card__k {
  font-size: .6875rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.card__t { font-family: var(--display); font-size: 1.0625rem; font-weight: 600; letter-spacing: -.02em; color: var(--ink); margin-bottom: 9px; }
.section--dark .card__t { color: #fff; }
.card__b { font-size: .9375rem; line-height: 1.62; }
.section--dark .card__b { color: rgba(255,255,255,.6); }

/* --- Gallery ------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.gallery figure { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--dark); }
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: .6875rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.6);
}

/* --- Rate table --------------------------------------------------------- */
.rates { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); overflow: hidden; }
.rates table { width: 100%; border-collapse: collapse; }
.rates th, .rates td { text-align: left; padding: 20px clamp(18px, 2.4vw, 30px); border-bottom: 1px solid var(--line); }
.rates thead th {
  font-family: var(--sans); font-size: .6875rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  background: var(--sand); border-bottom: 1px solid var(--line);
}
.rates tbody tr:last-child th, .rates tbody tr:last-child td { border-bottom: 0; }
.rates tbody th {
  font-family: var(--display); font-size: 1rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em;
}
.rates tbody th span { display: block; font-family: var(--sans); font-size: .8125rem; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-top: 3px; }
.rate { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--ink); letter-spacing: -.03em; }
.rate small { font-family: var(--sans); font-size: .8125rem; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-left: 3px; }
.rates td.is-peak { background: color-mix(in srgb, var(--green) 6%, transparent); }
.rate-notes { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-top: 0; }
.rate-note { background: var(--paper); padding: 20px clamp(18px, 2.4vw, 30px); }
.rate-note__k { font-family: var(--display); font-size: .9375rem; font-weight: 600; color: var(--ink); letter-spacing: -.015em; margin-bottom: 4px; }
.rate-note__b { font-size: .875rem; color: var(--body); line-height: 1.55; }

/* --- Menu --------------------------------------------------------------- */
.menu-group + .menu-group { margin-top: clamp(48px, 6vw, 80px); }
.menu-group__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.section--dark .menu-group__head { border-color: rgba(255,255,255,.14); }
.menu-group__note { font-size: .8125rem; color: var(--muted); }
.menu-items { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 clamp(32px, 5vw, 72px); }
.menu-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.section--dark .menu-item { border-color: rgba(255,255,255,.09); }
.menu-item__t { font-family: var(--display); font-size: 1.0625rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.section--dark .menu-item__t { color: #fff; }
.menu-item__b { font-size: .875rem; line-height: 1.6; color: var(--body); margin-top: 5px; }
.section--dark .menu-item__b { color: rgba(255,255,255,.55); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tag {
  font-size: .625rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-firm); border-radius: var(--r); padding: 4px 9px;
}
.section--dark .tag { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.18); }
.tag--green { color: var(--green-deep); border-color: color-mix(in srgb, var(--green) 45%, transparent); }
.section--dark .tag--green { color: var(--green-lift); border-color: color-mix(in srgb, var(--green-lift) 40%, transparent); }

/* --- Packages ----------------------------------------------------------- */
.pkg { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; }
.pkg--feature { border-color: var(--ink); }
.pkg__k { font-size: .6875rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.pkg--feature .pkg__k { color: var(--green-deep); }
.pkg__t { font-family: var(--display); font-size: 1.375rem; font-weight: 600; letter-spacing: -.028em; color: var(--ink); }
.pkg__cap { font-size: .875rem; color: var(--muted); margin-top: 5px; }
.pkg ul { list-style: none; margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.pkg li { position: relative; padding-left: 20px; font-size: .9375rem; line-height: 1.55; }
.pkg li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.pkg__act { margin-top: 28px; padding-top: 0; }
.pkg__act .btn { width: 100%; }

/* --- Accordion ---------------------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 22px 0;
  font-family: var(--display); font-size: 1.0625rem; font-weight: 500; letter-spacing: -.02em; color: var(--ink);
  transition: color .18s;
}
.acc__q:hover { color: var(--green-deep); }
.acc__icon { position: relative; flex-shrink: 0; width: 13px; height: 13px; }
.acc__icon::before, .acc__icon::after {
  content: ''; position: absolute; inset: 50% 0 auto; height: 1.5px; background: var(--ink);
  transition: transform .3s ease;
}
.acc__icon::after { transform: rotate(90deg); }
.acc__q[aria-expanded="true"] .acc__icon::after { transform: rotate(0deg); }
.acc__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .34s cubic-bezier(.4,0,.2,1);
}
.acc__item.is-open .acc__body { max-height: 32rem; }
.acc__body p { font-size: .9375rem; line-height: 1.7; padding-bottom: 24px; max-width: 68ch; }

/* --- Map + contact ------------------------------------------------------ */
.map { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 11; background: var(--sand); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.04); }
.contact-list { display: grid; gap: 26px; }
.contact-list dt {
  font-size: .6875rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.contact-list dd { font-family: var(--display); font-size: 1.0625rem; font-weight: 500; color: var(--ink); letter-spacing: -.015em; }
.contact-list dd a { text-decoration: none; }
.contact-list dd a:hover { color: var(--green-deep); }

.hours { border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 3vw, 36px); background: var(--paper); }
.hours__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 12px 0; }
.hours__row + .hours__row { border-top: 1px solid var(--line); }
.hours__d { font-size: .9375rem; color: var(--body); }
.hours__t { font-family: var(--display); font-size: 1.0625rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.hours__note { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .875rem; line-height: 1.6; color: var(--muted); }

/* --- Forms -------------------------------------------------------------- */
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 3.4vw, 40px); }
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: .6875rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--paper); border: 1px solid var(--line-firm); border-radius: var(--r);
  padding: 12px 14px; font-size: .9375rem; color: var(--ink);
  outline: none; transition: border-color .18s; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238a8a80'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 118px; resize: vertical; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__note { margin-top: 14px; font-size: .8125rem; line-height: 1.55; color: var(--muted); }

/* --- Callout / band ----------------------------------------------------- */
.callout { border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 3vw, 32px); background: var(--sand); }
.section--dark .callout { background: var(--dark-soft); border-color: rgba(255,255,255,.1); }
.callout__t { font-family: var(--display); font-size: 1rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; margin-bottom: 7px; }
.section--dark .callout__t { color: #fff; }
.callout__b { font-size: .9375rem; line-height: 1.6; }
.callout__b a { color: var(--green-deep); text-decoration: none; border-bottom: 1px solid currentColor; }
.section--dark .callout__b a { color: var(--green-lift); }

.band { position: relative; isolation: isolate; background: var(--dark); overflow: hidden; }
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(8,8,7,.9) 0%, rgba(8,8,7,.66) 50%, rgba(8,8,7,.42) 100%);
}
.band__inner { padding-block: clamp(72px, 8vw, 116px); }
.band h2 { color: #fff; max-width: 22ch; }
.band .lead { color: rgba(255,255,255,.7); margin-top: 18px; }
.band .btn-row { margin-top: 30px; }

/* --- CTA ---------------------------------------------------------------- */
.cta { background: var(--dark); color: #fff; text-align: center; padding-block: clamp(80px, 9vw, 140px); }
.cta h2 { color: #fff; margin-inline: auto; max-width: 20ch; }
.cta .lead { color: rgba(255,255,255,.62); margin: 20px auto 0; max-width: 46ch; }
.cta .btn-row { justify-content: center; margin-top: 36px; }
.cta__meta { margin-top: 26px; font-size: .875rem; color: rgba(255,255,255,.42); }
.cta__meta a { color: rgba(255,255,255,.68); text-decoration: none; }
.cta__meta a:hover { color: #fff; }

/* --- Footer ------------------------------------------------------------- */
.footer { background: var(--dark); color: rgba(255,255,255,.55); padding-block: clamp(56px, 6vw, 80px) 32px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: clamp(32px, 4vw, 56px); }
.footer__logo { display: inline-block; margin-bottom: 18px; }
.footer__logo img { height: 32px; width: auto; object-fit: contain; }
.footer__slogan {
  font-family: var(--display); font-size: 1rem; font-weight: 500;
  letter-spacing: -.02em; color: rgba(255,255,255,.82); margin-bottom: 10px;
}
.footer__about { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.5); max-width: 34ch; }
.footer__badge {
  display: inline-block; margin-top: 18px; padding: 6px 12px; border-radius: var(--r);
  border: 1px solid rgba(140,187,86,.35); color: var(--green-lift);
  font-size: .6875rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
}
.footer__h {
  font-size: .6875rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.42); margin-bottom: 18px;
}
.footer__list { list-style: none; display: grid; gap: 11px; }
.footer__list a, .footer__list span { font-size: .875rem; color: rgba(255,255,255,.6); text-decoration: none; }
.footer__list a:hover { color: #fff; }
.footer__bottom {
  margin-top: clamp(44px, 5vw, 64px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .8125rem; color: rgba(255,255,255,.34);
}

/* --- Reveal ------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(14px); }
.js [data-reveal] { transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }
[data-reveal].is-in { opacity: 1; transform: none; }
html:not(.js) [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --- Utilities ---------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.stack-sm > * + * { margin-top: 14px; }
.mt-l { margin-top: clamp(32px, 4vw, 52px); }
.mt-m { margin-top: 26px; }
.center { text-align: center; }
.center .lead, .center .section-head { margin-inline: auto; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
  .split, .split--wide-media { grid-template-columns: 1fr; gap: 36px; }
  .split--flip .split__media { order: 0; }
  .split__media--tall { aspect-ratio: 3 / 2; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2n) { border-right: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 3 / 2; }
  .menu-items { grid-template-columns: 1fr; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .field-pair { grid-template-columns: 1fr; }
  .rates th, .rates td { padding: 16px 18px; }
  .rate { font-size: 1.3125rem; }
  .hero { min-height: 0; padding-top: 22vh; }
  .pagehead { min-height: 0; padding-top: 14vh; }
}

@media (max-width: 620px) {
  :root { --notice: 32px; --header: 64px; }
  .notice { font-size: .6875rem; gap: 10px; }
  .notice__hide { display: none; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; }
  .fact + .fact { border-top: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .rates { overflow-x: auto; }
  .rates table { min-width: 460px; }
}

/* ==========================================================================
   TECHNICAL LAYER
   The simulators are the differentiator, so the interface borrows from
   instrumentation: monospaced micro-type, tabular numerals, a faint
   measurement grid on dark surfaces. Applied last so it wins the cascade.
   ========================================================================== */

/* --- Monospaced micro-type ---------------------------------------------- */
.eyebrow,
.hero__eyebrow,
.card__k,
.fact__k,
.footer__h,
.footer__badge,
.menu-group__note,
.split__cap,
.row__n,
.pkg__k,
.pkg__cap,
.tag,
.field label,
.contact-list dt,
.hours__note,
.form__note,
.notice,
.rates thead th,
.metric__l {
  font-family: var(--mono);
  font-weight: 400;
}

.eyebrow, .hero__eyebrow { font-size: .6875rem; letter-spacing: .18em; }
.card__k, .fact__k, .footer__h, .pkg__k, .field label, .contact-list dt,
.rates thead th, .tag { letter-spacing: .12em; }
.row__n { font-size: .75rem; letter-spacing: .04em; }
.split__cap, .menu-group__note { letter-spacing: .04em; font-size: .75rem; }
.notice { letter-spacing: .06em; }
.notice b { font-weight: 500; }

/* --- Instrument numerals ------------------------------------------------- */
.rate, .hours__t, .metric__n, .fact__v {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.rate {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: -.02em;
}
.rate small { font-family: var(--mono); letter-spacing: 0; }

/* --- Measurement grid on dark surfaces ---------------------------------- */
.section--dark { position: relative; isolation: isolate; }
.section--dark::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(125% 105% at 50% 0%, #000 0%, transparent 76%);
          mask-image: radial-gradient(125% 105% at 50% 0%, #000 0%, transparent 76%);
}
.section--dark > * { position: relative; z-index: 1; }

/* Registration tick, top left of every dark block */
.section--dark::after {
  content: '';
  position: absolute; top: 0; left: 0; z-index: 2;
  width: clamp(72px, 11vw, 168px); height: 2px;
  background: linear-gradient(to right, var(--green), transparent);
}

/* --- Metrics band ------------------------------------------------------- */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.015);
}
.metric-cell { padding: clamp(24px, 3vw, 34px) clamp(18px, 2.4vw, 30px); border-right: 1px solid rgba(255,255,255,.1); }
.metric-cell:last-child { border-right: 0; }
.metric__n {
  font-family: var(--mono); font-weight: 500;
  font-size: clamp(1.875rem, 3.6vw, 2.875rem);
  letter-spacing: -.045em; line-height: 1; color: #fff;
}
.metric__n span { color: var(--green-lift); }
.metric__l {
  margin-top: 12px; font-size: .6875rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.44);
}
.metric__note { margin-top: 5px; font-size: .8125rem; color: rgba(255,255,255,.3); }

/* --- Corner registration marks ------------------------------------------ */
.bracket { position: relative; }
.bracket::before, .bracket::after {
  content: ''; position: absolute; width: 11px; height: 11px;
  border-style: solid; border-color: var(--green); opacity: .5; pointer-events: none;
}
.bracket::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
.bracket::after { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* --- Hero lockup glow --------------------------------------------------- */
.hero__mark { filter: drop-shadow(0 0 46px rgba(104,152,56,.22)); }

/* --- Focus / hover polish ----------------------------------------------- */
.nav__list a { position: relative; }
.nav__list a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -1px;
  height: 1px; background: var(--green); transition: right .28s cubic-bezier(.22,.61,.36,1);
}
.nav__list a:hover::after { right: 0; }
.nav__list a[aria-current="page"] { border-color: transparent; }
.nav__list a[aria-current="page"]::after { right: 0; }

@media (max-width: 860px) {
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric-cell:nth-child(2n) { border-right: 0; }
  .metric-cell:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}
