/* AUREON — the member's engraved ephemera.
   Warm linen ground, soft stone panels, graphite ink, Marcellus inscriptional
   capitals, one champagne-brushed rule per plate. Quiet, always. */

:root {
  --linen: #F7F5F1;
  --card: #FCFBF9;
  --stone: #EDE9E1;
  --ink: #26272A;
  --ink-2: #5E5C57;
  --ink-3: #6E6B64;
  --hairline: #DFDAD0;
  --hairline-2: #EAE6DE;
  --champ: #C2A878;
  --champ-deep: #A8905F;
  --champ-light: #EADFC8;
  --error: #9C4F3B;
  --shadow-soft: 0 1px 2px rgba(38,39,42,.05), 0 10px 30px rgba(38,39,42,.06);
  --shadow-lift: 0 2px 4px rgba(38,39,42,.06), 0 18px 46px rgba(38,39,42,.09);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --serif: "Marcellus", "Georgia", serif;
  --sans: "Albert Sans", system-ui, sans-serif;
  --mono: "Fragment Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1rem; line-height: 1.65; font-weight: 380;
  color: var(--ink); background: var(--linen);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
::selection { background: var(--ink); color: var(--linen); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: .01em; text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
h2 { font-size: 1.32rem; }
h3 { font-size: 1.12rem; }
p  { max-width: 64ch; }
.page-lede { font-size: 1.08rem; color: var(--ink-2); margin-top: .7rem; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: fixed; top: -100px; left: 1rem; z-index: 100;
  background: var(--ink); color: var(--linen);
  padding: .55rem 1rem; border-radius: 4px; text-decoration: none;
  transition: top .2s var(--ease-out);
}
.skip:focus { top: 1rem; }

.ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.6rem); }

/* ============ Header ============ */
.top {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.6rem;
  padding: .7rem clamp(1.2rem, 4vw, 2.6rem);
  background: rgba(247, 245, 241, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 -1px 0 var(--hairline-2);
}
.crest { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.crest-ring { width: 34px; height: 34px; stroke: var(--champ-deep); stroke-width: 1.4; fill: none; }
.crest-name { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .22em; line-height: 1; }
.crest-name em {
  display: block; font-family: var(--mono); font-style: normal;
  font-size: .56rem; letter-spacing: .18em; color: var(--ink-3); margin-top: .25rem;
}
.top-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.top-nav a {
  font-size: .92rem; font-weight: 450; color: var(--ink-2);
  text-decoration: none; position: relative; padding: .3rem 0;
}
.top-nav a:hover { color: var(--ink); }
.top-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--champ-light), var(--champ), var(--champ-light));
  transition: right .3s var(--ease-out);
}
.top-nav a:hover::after, .top-nav a[aria-current="page"]::after { right: 0; }
.top-nav a[aria-current="page"] { color: var(--ink); }
.member-chip {
  display: flex; flex-direction: column; align-items: flex-end; gap: .1rem; line-height: 1.15;
}
.member-name { font-family: var(--serif); font-size: .92rem; letter-spacing: .04em; }
.member-no { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; color: var(--ink-3); }
.nav-burger { display: none; background: none; border: 1px solid var(--hairline); border-radius: 6px; padding: .45rem .55rem; cursor: pointer; }

/* ============ Buttons, chips ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .74rem 1.5rem; border-radius: 4px;
  font-weight: 500; font-size: .95rem; letter-spacing: .02em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s var(--ease-out), box-shadow .25s var(--ease-out),
              background .25s, border-color .25s, color .25s;
}
.btn:active { transform: translateY(1px); }
.btn-solid {
  background: linear-gradient(180deg, #35363B, var(--ink) 60%);
  color: var(--linen);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 1px 2px rgba(38,39,42,.25), 0 8px 22px rgba(38,39,42,.16);
}
.btn-solid:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 2px 5px rgba(38,39,42,.22), 0 14px 32px rgba(38,39,42,.2); }
.btn-ghost {
  background: var(--card); color: var(--ink);
  border-color: var(--hairline);
  box-shadow: 0 1px 2px rgba(38,39,42,.04);
}
.btn-ghost:hover { border-color: var(--champ); box-shadow: var(--shadow-soft); transform: translateY(-1px); }
.btn-sm { padding: .5rem 1rem; font-size: .87rem; }
.btn[disabled] { cursor: default; opacity: .6; transform: none; }
.btn .b-spin { display: none; width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 40; stroke-dashoffset: 14; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-busy { pointer-events: none; }
.btn.is-busy .b-spin { display: block; }

.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .48rem .95rem; border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--card);
  font-size: .87rem; font-weight: 450; color: var(--ink-2);
  text-decoration: none; cursor: pointer;
  transition: border-color .25s, color .25s, background .25s, transform .18s var(--ease-out), box-shadow .25s;
}
.chip:hover { border-color: var(--champ); color: var(--ink); background: #FFFEFB; transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.chip:active { transform: translateY(0); }
.chip.is-done { border-color: var(--champ); color: var(--ink); background: var(--champ-light); pointer-events: none; }
.chip-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }

.quiet-link {
  display: inline-block; margin-top: 1rem;
  font-size: .9rem; font-weight: 450; color: var(--ink-2);
  text-decoration: underline; text-decoration-color: var(--champ); text-underline-offset: 4px;
}
.quiet-link:hover { color: var(--ink); }

/* ============ Plates & tags ============ */
.plate {
  position: relative;
  background: linear-gradient(180deg, #FEFDFB, var(--card) 70%);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem 1.5rem;
}
.plate::before {                     /* the one champagne rule per plate */
  content: ""; position: absolute; top: -1px; left: 14px; right: 14px; height: 2px;
  background: linear-gradient(90deg, rgba(194,168,120,0), var(--champ) 22%, var(--champ) 78%, rgba(194,168,120,0));
  border-radius: 2px;
}
.plate-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding-bottom: .85rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--hairline-2);
}
.serial {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
}

.tag {
  position: relative; display: flex; align-items: center; gap: .9rem;
  background: linear-gradient(180deg, #FFFEFC, #F6F3EC);
  border: 1px solid var(--hairline);
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(38,39,42,.06);
  padding: .85rem 1rem;
}
.tag-hole {
  width: 14px; height: 14px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--champ);
  background: radial-gradient(circle at 40% 35%, #FFFFFF, var(--stone) 70%);
  box-shadow: inset 0 1px 2px rgba(38,39,42,.18);
}
.tag-body { min-width: 0; }
.tag-title { font-family: var(--serif); font-size: 1.02rem; letter-spacing: .05em; }
.tag-meta { font-size: .84rem; color: var(--ink-2); margin-top: .15rem; }
.tag-end { margin-left: auto; align-self: stretch; width: 6px; flex: none; border-radius: 3px;
  background: repeating-linear-gradient(180deg, var(--champ-light) 0 2px, rgba(0,0,0,0) 2px 5px); }
.tag-lg { padding: 1.05rem 1.15rem; }
.tag-lg .tag-title { font-size: 1.15rem; }
.tag-issued { box-shadow: var(--shadow-lift); }

/* Engrave: letters settle into the plate (JS wraps letters in spans) */
.engrave span { display: inline-block; opacity: 0; transform: translateY(3px); filter: blur(1px);
  animation: engrave .5s var(--ease-out) forwards; }
@keyframes engrave { to { opacity: 1; transform: none; filter: none; } }

/* ============ Home ============ */
.home-hero { position: relative; }
.home-hero-photo { width: 100%; height: clamp(340px, 52vh, 560px); object-fit: cover; object-position: 50% 62%; }
.greeting {
  position: relative; z-index: 2;
  max-width: 560px;
  margin: -84px auto 0 clamp(1.2rem, 6vw, 5rem);
  padding: 1.5rem 1.7rem;
}
.greeting-word { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.15; }
.greeting-date { font-size: .95rem; color: var(--ink-2); margin-top: .3rem; }
.conditions-line {
  display: block;
  margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--hairline-2);
  font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; color: var(--ink-2);
  line-height: 1.8;
}
.cond-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  margin-right: .45rem; vertical-align: 1px;
  background: radial-gradient(circle at 35% 30%, var(--champ-light), var(--champ-deep));
  box-shadow: 0 0 0 1px rgba(168,144,95,.35); }

.locker {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem; padding-top: 2.2rem; padding-bottom: 3.6rem;
}
.plate-next { grid-column: 1 / -1; }
.plate-wide { grid-column: 1 / -1; }
.plate-desk { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.plate-desk .plate-head { align-self: stretch; }
.plate-desk .desk-line { flex: 1; }
.plate-desk .btn { flex: none; }

.today-list { list-style: none; }
.today-list li {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .55rem 0; border-bottom: 1px solid var(--hairline-2);
}
.today-list li:last-child { border-bottom: 0; }
.today-what { font-weight: 480; }
.today-state { font-family: var(--mono); font-size: .74rem; letter-spacing: .02em; color: var(--ink-2); text-align: right; }

.fixture-list { list-style: none; }
.fixture-list li {
  display: flex; align-items: center; gap: 1.1rem;
  padding: .8rem 0; border-bottom: 1px solid var(--hairline-2);
}
.fixture-list li:last-child { border-bottom: 0; }
.fx-date {
  flex: none; width: 52px; text-align: center;
  font-family: var(--mono); font-size: 1.05rem; color: var(--ink);
}
.fx-date strong { display: block; font-weight: 400; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .1rem; }
.fx-body { min-width: 0; flex: 1; }
.fx-name { display: block; font-family: var(--serif); font-size: 1.02rem; letter-spacing: .02em; }
.fx-meta { display: block; font-size: .84rem; color: var(--ink-2); margin-top: .1rem; }
.fx-state { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.fx-state.is-on { color: var(--champ-deep); }

.hcp-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.hcp-big span { font-family: var(--serif); font-size: 2.6rem; line-height: 1; }
.hcp-big em { display: block; font-style: normal; font-size: .78rem; color: var(--ink-2); margin-top: .3rem; }
.hcp-huge span { font-size: 4rem; }
.hcp-drift { display: inline-flex; align-items: center; gap: .45rem; font-size: .86rem; color: var(--ink-2); }
.hcp-drift .ic { color: var(--champ-deep); }
.spark { width: 100%; height: 56px; margin-top: 1rem; }
.spark polyline, .trend path { fill: none; stroke: var(--champ-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.spark circle, .trend circle { fill: var(--champ-deep); }
.trend .trend-area { fill: rgba(194,168,120,.12); stroke: none; }
.trend .trend-dot-last { fill: var(--ink); }
.spark-note { font-size: .84rem; color: var(--ink-2); margin-top: .4rem; }

.notice-list { list-style: none; display: grid; gap: 1rem; }
.notice-head { font-weight: 550; font-size: .98rem; }
.notice-body { font-size: .92rem; color: var(--ink-2); margin-top: .2rem; }
.desk-line { font-size: .95rem; color: var(--ink-2); }

/* ============ Page heads ============ */
.page-head-wrap { padding-top: 2.6rem; padding-bottom: 3.6rem; }
.page-head { max-width: 46rem; margin-bottom: 2.2rem; }
.band-head { max-width: 46rem; margin: 2.6rem 0 1.4rem; }

/* ============ Book ============ */
.book-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr); gap: 1.4rem; align-items: start; }
.book-flow { display: grid; gap: 1.3rem; }

.day-row { display: flex; gap: .55rem; flex-wrap: wrap; }
.day-btn {
  min-width: 64px; padding: .55rem .5rem .5rem;
  border: 1px solid var(--hairline); border-radius: 5px;
  background: var(--card); cursor: pointer; text-align: center;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .18s var(--ease-out);
}
.day-btn:hover { border-color: var(--champ); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.day-btn strong { display: block; font-family: var(--mono); font-weight: 400; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.day-btn em { display: block; font-family: var(--serif); font-style: normal; font-size: 1.25rem; margin-top: .15rem; }
.day-btn span { display: block; font-size: .66rem; color: var(--ink-3); margin-top: .05rem; }
.day-btn.is-on { border-color: var(--champ-deep); background: linear-gradient(180deg, #FFFEFB, var(--champ-light)); box-shadow: inset 0 0 0 1px var(--champ); }
.day-btn.is-on strong, .day-btn.is-on span { color: var(--ink-2); }

.sheet-note { font-size: .86rem; color: var(--ink-2); margin-bottom: 1rem; }
.tee-sheet { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: .55rem; }
.slot {
  display: flex; flex-direction: column; gap: .15rem; align-items: flex-start;
  padding: .6rem .75rem;
  border: 1px solid var(--hairline); border-radius: 5px;
  background: var(--card); cursor: pointer; text-align: left;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .18s var(--ease-out);
}
.slot:hover { border-color: var(--champ); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.slot-time { font-family: var(--mono); font-size: .95rem; }
.slot-state { font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.slot.is-on { border-color: var(--champ-deep); background: linear-gradient(180deg, #FFFEFB, var(--champ-light)); box-shadow: inset 0 0 0 1px var(--champ); }
.slot.is-taken, .slot.is-held { cursor: default; background: var(--stone); opacity: .75; transform: none; box-shadow: none; }
.slot.is-taken:hover, .slot.is-held:hover { border-color: var(--hairline); }
.slot.is-taken .slot-state { letter-spacing: .2em; }

.party-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.party-label { font-weight: 520; }
.stepper { display: inline-flex; align-items: center; gap: .1rem; border: 1px solid var(--hairline); border-radius: 999px; background: var(--card); padding: .2rem; }
.step-btn { display: grid; place-items: center; width: 32px; height: 32px; border: 0; border-radius: 50%; background: none; cursor: pointer; color: var(--ink-2); transition: background .2s, color .2s; }
.step-btn:hover { background: var(--stone); color: var(--ink); }
.step-count { min-width: 2.2rem; text-align: center; font-family: var(--mono); font-size: 1rem; }
.party-hint { font-size: .82rem; color: var(--ink-3); }

.guest-rows { display: grid; gap: .6rem; margin-bottom: 1.1rem; }
.guest-row { display: flex; align-items: center; gap: .7rem; }
.guest-row label { flex: none; font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); width: 64px; }
.guest-row input { flex: 1; }

.b-field { border: 0; min-width: 0; }
.b-field + .b-field { margin-top: 1.1rem; }
.b-field > label, .b-field legend {
  display: block; font-family: var(--mono); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-2); margin-bottom: .5rem;
}
.b-input {
  width: 100%; padding: .62rem .8rem;
  font-size: .98rem;
  color: var(--ink); background: #FFFEFC;
  border: 1px solid var(--hairline); border-radius: 5px;
  transition: border-color .2s, box-shadow .2s;
}
.b-input::placeholder { color: #74716A; }
.b-input:hover { border-color: var(--champ); }
.b-input:focus { outline: none; border-color: var(--champ-deep); box-shadow: 0 0 0 3px rgba(194,168,120,.22); }
.b-input[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(156,79,59,.14); }
.b-area { resize: vertical; min-height: 96px; }
.b-hint { font-size: .78rem; color: var(--ink-3); margin-top: .4rem; }
.b-hint.is-error { color: var(--error); }
select.b-input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 2.2rem; }

.toggle-rows { display: grid; gap: .3rem; }
.toggle-row {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .7rem .6rem; border-radius: 6px; cursor: pointer;
  transition: background .2s;
}
.toggle-row:hover { background: #FFFEFB; }
.toggle-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.toggle-pip {
  flex: none; width: 20px; height: 20px; margin-top: .15rem; border-radius: 50%;
  border: 1.5px solid var(--hairline);
  background: #FFFEFC;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.toggle-row input:checked ~ .toggle-pip {
  border-color: var(--champ-deep);
  background: radial-gradient(circle at 38% 32%, var(--champ-light), var(--champ-deep));
  box-shadow: inset 0 1px 2px rgba(38,39,42,.2);
}
.toggle-row input:focus-visible ~ .toggle-pip { outline: 2px solid var(--ink); outline-offset: 3px; }
.toggle-body strong { display: block; font-weight: 520; font-size: .97rem; }
.toggle-body em { display: block; font-style: normal; font-size: .84rem; color: var(--ink-2); margin-top: .1rem; }

.folio { position: sticky; top: 84px; display: grid; gap: 1.3rem; }
.folio-lines { display: grid; gap: 0; margin-bottom: 1.2rem; }
.folio-lines > div {
  display: grid; grid-template-columns: 88px 1fr; gap: 1rem; align-items: baseline;
  padding: .55rem 0; border-bottom: 1px solid var(--hairline-2);
}
.folio-lines dt { font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.folio-lines dd { font-size: .95rem; }
.folio-lines dd.is-set { font-weight: 500; }
.btn-issue { width: 100%; }
.folio-fine { font-size: .78rem; color: var(--ink-3); margin-top: .8rem; }
.anticipate-word { font-family: var(--serif); font-size: 1rem; letter-spacing: .03em; margin-top: 1.2rem; }
.issued .chip-row { margin-top: .7rem; }

/* ============ Game ============ */
.game-top { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 1.4rem; align-items: stretch; margin-bottom: 1.4rem; }
.game-fig { position: relative; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--hairline); }
.game-fig img { width: 100%; height: 100%; object-fit: cover; }
.game-fig figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.2rem 1.2rem .9rem;
  background: linear-gradient(180deg, rgba(38,39,42,0), rgba(38,39,42,.55));
  color: #F3F1EC; font-size: .84rem;
}
.trend { width: 100%; height: 150px; margin-top: 1.2rem; }
.trend-axis { display: flex; justify-content: space-between; margin-top: .3rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }

.rounds { display: grid; }
.round { border-bottom: 1px solid var(--hairline-2); }
.round:last-child { border-bottom: 0; }
.round summary {
  display: grid; grid-template-columns: 96px 1.4fr auto auto auto 24px;
  align-items: center; gap: 1rem;
  padding: .85rem .4rem; cursor: pointer; list-style: none;
  transition: background .2s;
}
.round summary::-webkit-details-marker { display: none; }
.round summary:hover { background: #FFFEFB; }
.rd-date { font-family: var(--mono); font-size: .8rem; color: var(--ink-2); }
.rd-comp { font-weight: 480; }
.rd-gross strong { font-family: var(--serif); font-size: 1.35rem; }
.rd-gross em { font-style: normal; font-size: .68rem; color: var(--ink-3); margin-left: .3rem; }
.rd-net, .rd-putts { font-family: var(--mono); font-size: .78rem; color: var(--ink-2); white-space: nowrap; }
.rd-chev { color: var(--ink-3); transition: transform .3s var(--ease-out); justify-self: end; }
.round[open] .rd-chev { transform: rotate(180deg); }
.card-strip { padding: .4rem .4rem 1.1rem; }
.holes { display: flex; flex-wrap: wrap; list-style: none; border: 1px solid var(--hairline); border-radius: 5px; overflow: hidden; }
.holes li {
  flex: 1 0 44px; display: flex; flex-direction: column; align-items: center; gap: .05rem;
  padding: .45rem .2rem .5rem;
  border-right: 1px solid var(--hairline-2);
  background: linear-gradient(180deg, #FFFEFC, #F8F5EF);
}
.holes li:last-child { border-right: 0; }
.holes li.nine { border-right: 2px solid var(--champ); }
.holes span { font-family: var(--mono); font-size: .58rem; color: var(--ink-3); }
.holes strong { font-family: var(--mono); font-weight: 400; font-size: .95rem; }
.card-note { font-size: .88rem; color: var(--ink-2); margin-top: .8rem; }

.game-lower { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 1.4rem; margin-top: 1.4rem; }
.pro-note p { font-size: 1.05rem; line-height: 1.6; }
.pro-note cite { display: block; font-style: normal; font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; color: var(--ink-3); margin-top: .8rem; }
.pro-note { margin-bottom: 1.2rem; }
.bests { list-style: none; display: grid; gap: .9rem; margin-bottom: 1.1rem; }
.bests li { display: flex; align-items: baseline; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--hairline-2); }
.bests li:last-child { border-bottom: 0; }
.bests strong { font-family: var(--serif); font-size: 1.7rem; min-width: 96px; }
.bests span { font-size: .95rem; font-weight: 480; }
.bests em { display: block; font-style: normal; font-size: .8rem; font-weight: 380; color: var(--ink-3); margin-top: .1rem; }

/* ============ Club ============ */
.club-hero { position: relative; margin-bottom: 2.4rem; }
.club-hero-photo { width: 100%; height: clamp(300px, 44vh, 480px); object-fit: cover; object-position: 50% 55%; }
.club-hero-copy { position: relative; margin-top: -70px; z-index: 2; }
.club-hero-copy h1, .club-hero-copy .page-lede { max-width: 620px; }
.club-hero-copy h1 {
  display: inline-block; background: var(--linen);
  padding: .9rem 1.4rem .2rem; border-radius: 6px 6px 0 0;
}
.club-hero-copy .page-lede { background: var(--linen); padding: .2rem 1.4rem 0; border-radius: 0 6px 0 0; margin-top: 0; }

.wrap > .plate { margin-bottom: 2.2rem; }
.fixture-list-lg .fx-meta { max-width: 52ch; }
.fixture-list-lg .rsvp { flex: none; min-width: 158px; }
.rsvp.is-on { border-color: var(--champ-deep); background: var(--champ-light); color: var(--ink); }

.dining-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 1.4rem; align-items: stretch; margin-bottom: 2.2rem; scroll-margin-top: 90px; }
.dining-fig { border-radius: 6px; overflow: hidden; border: 1px solid var(--hairline); box-shadow: var(--shadow-soft); }
.dining-fig img { width: 100%; height: 100%; object-fit: cover; }
.rooms { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.3rem; }
.rooms li { display: grid; gap: .1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--hairline-2); }
.rooms li:last-child { border-bottom: 0; }
.rooms strong { font-family: var(--serif); font-weight: 400; font-size: 1.02rem; letter-spacing: .02em; }
.rooms span { font-size: .86rem; color: var(--ink-2); }
.table-form .tf-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1rem; }
.tf-field { flex: 1 1 100px; display: grid; gap: .4rem; }
.tf-field > span { font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.tf-field select {
  padding: .55rem .7rem; border: 1px solid var(--hairline); border-radius: 5px;
  background: #FFFEFC; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%);
  background-position: calc(100% - 16px) 55%, calc(100% - 11px) 55%;
  background-size: 5px 5px; background-repeat: no-repeat;
  transition: border-color .2s, box-shadow .2s;
}
.tf-field select:hover { border-color: var(--champ); }
.tf-field select:focus { outline: none; border-color: var(--champ-deep); box-shadow: 0 0 0 3px rgba(194,168,120,.22); }
.tf-confirm { font-family: var(--serif); font-size: .98rem; letter-spacing: .02em; margin-top: .9rem; min-height: 1.4em; }

.amenities-wrap { margin-bottom: 2.2rem; }
.amenities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.amenity {
  background: linear-gradient(180deg, #FEFDFB, var(--card) 70%);
  border: 1px solid var(--hairline); border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.amenity:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.amenity img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.amenity-body { padding: 1.1rem 1.2rem 1.3rem; }
.amenity-body p { font-size: .92rem; color: var(--ink-2); margin: .45rem 0 1rem; }

.cond-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--hairline); border-radius: 5px; overflow: hidden;
  margin-bottom: 1.4rem;
}
.cond-cell {
  padding: .8rem 1rem;
  background: linear-gradient(180deg, #FFFEFC, #F8F5EF);
  border-right: 1px solid var(--hairline-2); border-bottom: 1px solid var(--hairline-2);
}
.cond-cell:nth-child(3n) { border-right: 0; }
.cond-cell:nth-last-child(-n+3) { border-bottom: 0; }
.cond-cell span { display: block; font-family: var(--mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .2rem; }
.cond-cell strong { font-weight: 480; font-size: .95rem; }

/* ============ Concierge ============ */
.desk-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr); gap: 1.4rem; align-items: start; }
.plate-compose .btn { margin-top: 1.3rem; }
.desk-side { display: grid; gap: 1.3rem; }
.keeper-name { font-family: var(--serif); font-size: 1.35rem; letter-spacing: .03em; }
.keeper-role { font-size: .84rem; color: var(--ink-2); margin-bottom: .8rem; }
.keeper-line { font-size: .9rem; color: var(--ink-2); margin-top: .9rem; }
.keeper-line strong { font-family: var(--mono); font-weight: 400; font-size: .85rem; color: var(--ink); }

.ledger { list-style: none; display: grid; gap: .8rem; }
.ledger li {
  display: grid; gap: .25rem;
  padding: .85rem .95rem;
  background: linear-gradient(180deg, #FFFEFC, #F6F3EC);
  border: 1px solid var(--hairline); border-radius: 5px;
  animation: settle .6s var(--ease-out) both;
}
.ledger-head { display: flex; justify-content: space-between; gap: .8rem; align-items: baseline; }
.ledger-kind { font-family: var(--serif); font-size: .98rem; letter-spacing: .02em; }
.ledger-serial { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; color: var(--ink-3); }
.ledger-text { font-size: .86rem; color: var(--ink-2); overflow-wrap: anywhere; }
.ledger-foot { display: flex; justify-content: space-between; gap: .8rem; align-items: center; margin-top: .2rem; }
.ledger-when { font-size: .76rem; color: var(--ink-3); }
.ledger-state {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 999px;
  border: 1px solid var(--champ); color: var(--champ-deep); background: #FFFEFB;
}
.ledger-empty { font-size: .9rem; color: var(--ink-3); }

@keyframes settle {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ============ Footer, toast ============ */
.foot { padding-bottom: 1.6rem; }
.foot-rule {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  padding-top: 1.3rem; margin-top: 2rem; border-top: 1px solid var(--hairline);
}
.foot-crest { font-family: var(--serif); letter-spacing: .18em; font-size: .9rem; }
.foot-crest em { font-family: var(--mono); font-style: normal; font-size: .62rem; letter-spacing: .12em; color: var(--ink-3); }
.foot-rule nav { display: flex; gap: 1.3rem; margin-left: auto; }
.foot-rule nav a { font-size: .84rem; color: var(--ink-2); text-decoration: none; }
.foot-rule nav a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--champ); text-underline-offset: 4px; }
.foot-fine { flex-basis: 100%; font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; color: var(--ink-3); }

.toast {
  position: fixed; left: 50%; bottom: 1.4rem; z-index: 90;
  transform: translate(-50%, calc(100% + 2.2rem));
  display: flex; align-items: center; gap: .6rem;
  max-width: min(92vw, 520px);
  padding: .8rem 1.2rem;
  background: var(--ink); color: var(--linen);
  border-radius: 5px; box-shadow: 0 14px 44px rgba(38,39,42,.35);
  font-size: .92rem;
  transition: transform .45s var(--ease-out);
  pointer-events: none;
}
.toast.is-on { transform: translate(-50%, 0); }
.toast .ic { width: 16px; height: 16px; color: var(--champ); }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .engrave span { opacity: 1; transform: none; filter: none; animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1020px) {
  .book-grid, .desk-grid { grid-template-columns: 1fr; }
  .folio { position: static; }
  .game-top, .game-lower { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr 1fr; }
  .dining-band { grid-template-columns: 1fr; }
  .dining-fig img { max-height: 320px; }
}
@media (max-width: 820px) {
  .top { flex-wrap: wrap; gap: .8rem 1rem; }
  .top-nav {
    display: none; order: 4; flex-basis: 100%; flex-direction: column; gap: .1rem;
    border-top: 1px solid var(--hairline-2); padding-top: .6rem;
  }
  .top-nav.is-open { display: flex; }
  .top-nav a { padding: .55rem .2rem; }
  .top-nav a::after { display: none; }
  .top-nav a[aria-current="page"] { font-weight: 600; }
  .member-chip { margin-left: auto; }
  .nav-burger { display: block; }
  .locker { grid-template-columns: 1fr; }
  .greeting { margin-left: 1rem; margin-right: 1rem; }
  .amenities { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: 1fr 1fr; }
  .cond-cell:nth-child(3n) { border-right: 1px solid var(--hairline-2); }
  .cond-cell:nth-child(2n) { border-right: 0; }
  .cond-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--hairline-2); }
  .cond-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .round summary { grid-template-columns: 80px 1fr auto 24px; }
  .rd-net, .rd-putts { display: none; }
  .holes li { flex-basis: 36px; }
  .fixture-list-lg li { flex-wrap: wrap; }
  .fixture-list-lg .rsvp { margin-left: 68px; }
}
