:root {
  --stone: #ffffff;                      /* white marble page */
  --stone-2: rgba(255, 255, 255, 0.62);  /* translucent bands - marble reads through */
  --paper: rgba(255, 255, 255, 0.93);    /* cards */
  --navy: #182742;          /* headings, brand, footer */
  --navy-soft: #24344f;
  --ink: #2c3346;           /* body text */
  --muted: #635c49;         /* warm secondary text (AA on stone) */
  --line: rgba(24, 39, 66, 0.14);
  --line-strong: rgba(24, 39, 66, 0.26);
  --gold: #b0873f;          /* accent: rules, button, icons */
  --gold-bright: #c49a4f;
  --gold-deep: #8a6a2e;     /* gold text on stone (legible) */
  --gold-on: #fffdf6;       /* text on gold button */
  --green: #6f7d5f;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 3px;
  --shadow: 0 1px 2px rgba(24, 39, 66, .06), 0 18px 44px rgba(24, 39, 66, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  color: var(--ink);
  background-color: var(--stone);
  background-image:
    linear-gradient(rgba(255, 255, 255, .82), rgba(255, 255, 255, .88)),
    url("/static/marble-white.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }
.page { padding-top: 48px; padding-bottom: 80px; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-deep); }
p a, li a, .muted a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }

h1, h2, h3, .display, .display-sm { font-family: var(--serif); font-weight: 400; color: var(--navy); margin: 0 0 .45em; letter-spacing: .002em; }
h1 { font-size: 2.1rem; line-height: 1.15; }
h2 { font-size: 1.7rem; line-height: 1.22; }
h3 { font-size: 1.15rem; }
.display { font-size: clamp(3rem, 6.4vw, 5rem); line-height: 1.04; }
.display-sm { font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1.12; }

.muted { color: var(--muted); }
.small { font-size: .85rem; }
.eyebrow { font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold-deep); font-weight: 600; margin: 0 0 18px; }
.lede { font-size: 1.16rem; color: var(--muted); max-width: 640px; line-height: 1.72; }
code { background: rgba(176, 135, 63, .12); border: 1px solid var(--line); border-radius: var(--radius); padding: 1px 6px; font-size: .85em; }

/* Skip link (keyboard users) */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--navy); color: #fff; padding: 12px 18px; }
.skip-link:focus { left: 0; color: #fff; }

/* Countdown pill on the photo hero */
.countdown { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 18px; padding: 7px 16px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; backdrop-filter: blur(4px); background: rgba(18,26,42,.3); }
.countdown-num { font-family: var(--serif); font-size: 1.15rem; color: #fff; }
.countdown-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.85); }

.foot-social { margin-top: 14px; }
.foot-social a { display: inline-block; margin: 0 16px 0 0; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }

/* Announcement bar - dark navy anchor with gold text */
.announce {
  background: var(--navy);
  color: var(--gold-bright);
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  text-align: center; padding: 9px 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { white-space: nowrap; display: flex; align-items: center; gap: 13px; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word .bw1 { font-family: var(--serif); font-size: 1.24rem; letter-spacing: .17em; color: var(--navy); text-transform: uppercase; }
.brand-word .bw2 { font-size: .58rem; letter-spacing: .42em; color: var(--gold-deep); text-transform: uppercase; margin-top: 5px; }
.brand-rule { display: inline-block; width: 1px; height: 16px; background: var(--gold); margin: 0 12px; }
.site-nav { display: flex; gap: 24px; margin-left: auto; flex-wrap: wrap; }
.site-nav a { font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; color: var(--navy-soft); }
.site-nav a:hover { color: var(--gold-deep); }
.nav-cta { flex-shrink: 0; }
.brand-logo { height: 42px; width: auto; display: block; filter: drop-shadow(0 1px 1.5px rgba(20, 28, 45, .5)); }
.foot-logo { height: 88px; width: auto; margin-bottom: 4px; }
@media (max-width: 560px) { .brand-logo { height: 36px; } }

/* Buttons */
button, .btn {
  display: inline-block; cursor: pointer; font-family: var(--sans); font-size: .8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .15em;
  background: var(--gold); color: var(--gold-on);
  border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 13px 26px; text-align: center; transition: background .15s ease, border-color .15s ease;
}
button:hover, .btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--gold-on); }
.btn.ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn.ghost:hover { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn.big { padding: 16px 36px; }
.btn.danger { background: #9a4b46; border-color: #9a4b46; color: #fff; }
.btn.on-photo { box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.btn.ghost.on-photo { color: #fff; border-color: rgba(255,255,255,.6); }
.btn.ghost.on-photo:hover { border-color: #fff; color: #fff; }

/* Cinematic photo hero */
.photo-hero { position: relative; min-height: 82vh; display: flex; align-items: flex-end; overflow: hidden; }
.photo-hero-media { position: absolute; inset: 0; background: var(--navy) center 60% / cover no-repeat; }
.photo-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,26,42,.74) 0%, rgba(18,26,42,.42) 38%, rgba(18,26,42,.08) 66%, rgba(18,26,42,0) 100%),
    linear-gradient(0deg, rgba(18,26,42,.55) 0%, rgba(18,26,42,0) 40%);
}
.photo-hero-inner { position: relative; padding: 0 0 64px; width: 100%; }
.photo-hero .eyebrow { color: #e8c987; }
.photo-hero h1, .photo-hero .display { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.photo-hero .lede { color: rgba(255,255,255,.9); }
.photo-hero .hero-rule { background: var(--gold-bright); }
.hero-rule { width: 66px; height: 2px; background: var(--gold); margin: 28px 0; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; align-items: center; }

/* Stone hero (company) - text left, framed photo right */
.split-hero { padding: 76px 0 68px; border-bottom: 1px solid var(--line); }
.split-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split-figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 4; }
.split-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-figure figcaption { position: absolute; left: 0; bottom: 0; right: 0; padding: 14px 16px; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: linear-gradient(0deg, rgba(18,26,42,.6), transparent); }

/* Feature strip (icons) - floats up over hero base */
.feature-strip { position: relative; z-index: 5; margin-top: -46px; margin-bottom: 30px; }
.feature-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(4, 1fr);
}
.feature { display: flex; gap: 14px; align-items: flex-start; padding: 24px 24px; border-left: 1px solid var(--line); }
.feature:first-child { border-left: none; }
.feature-icon { flex-shrink: 0; width: 34px; height: 34px; color: var(--gold); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-title { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--navy); font-weight: 700; margin-bottom: 3px; }
.feature-text { font-size: .88rem; color: var(--muted); line-height: 1.5; }

/* Facts strip */
.facts-strip { border-bottom: 1px solid var(--line); background: var(--stone-2); }
.facts-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.fact { padding: 26px 18px; border-left: 1px solid var(--line); }
.fact:first-child { border-left: none; }
.fact-num { font-family: var(--serif); font-size: 1.55rem; color: var(--navy); }
.fact-num span { font-size: .95rem; color: var(--muted); margin-left: 2px; }
.fact-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin-top: 4px; }

/* Sections */
.section { padding: 78px 0; }
.section.bordered { border-top: 1px solid var(--line); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.section-head h2 { margin: 0; }
.text-link { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-deep); font-weight: 600; }
.text-link:hover { color: var(--navy); }
.statement { font-family: var(--serif); font-size: clamp(1.45rem, 2.7vw, 1.95rem); line-height: 1.5; color: var(--navy); margin: 0; }
.page-head { padding: 80px 0 8px; }
.closing { border-top: 1px solid var(--line); background: var(--stone-2); }

/* Course columns */
.course-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.course-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 16px; }
.course-col p { margin: 0; }

/* Heritage */
.heritage-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.heritage-copy { font-size: 1.08rem; line-height: 1.75; color: var(--ink); margin: 0; }
.heritage-facts { display: flex; flex-direction: column; gap: 22px; }
.h-fact { border-left: 2px solid var(--gold); padding-left: 18px; }
.h-num { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--navy); line-height: 1.15; }
.h-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* Info grid */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.info-item { border-top: 1px solid var(--line); padding: 20px 0; }
.info-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-deep); font-weight: 600; margin-bottom: 5px; }
.info-value { color: var(--ink); }
.plain-list { padding-left: 20px; }
.plain-list li { margin: 9px 0; }

/* Timeline */
.timeline { border-left: 1px solid var(--line-strong); padding-left: 36px; margin-left: 6px; }
.tl-item { position: relative; padding-bottom: 48px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -41px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.tl-now::before { background: var(--green); box-shadow: 0 0 0 4px rgba(111, 125, 95, .25); }
.tl-year { font-family: var(--serif); font-size: 1.35rem; color: var(--gold-deep); margin-bottom: 6px; }
.tl-body h3 { margin-bottom: .3em; }
.tl-body p { margin: 0; }

/* FAQs */
.faq { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.12rem; color: var(--navy); padding: 20px 30px 20px 0; position: relative; user-select: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--gold); font-family: var(--sans); }
.faq[open] summary::after { content: "\2212"; }
.faq p { margin: 0 0 20px; }

/* Records */
.rec-head { margin-bottom: 30px; }
.records-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 28px 40px; margin-bottom: 20px; }
.record-card { border-left: 2px solid var(--gold); padding-left: 18px; }
.record-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.record-time { font-family: var(--serif); font-size: 1.75rem; color: var(--navy); margin: 3px 0 2px; }
.record-holder { font-size: .92rem; color: var(--ink); }
.record-note { font-size: .8rem; color: var(--gold-deep); margin-top: 3px; }

/* Editions */
.edition { border: 1px solid var(--line); background: var(--stone-2); border-radius: var(--radius); margin-bottom: 14px; }
.edition summary { cursor: pointer; list-style: none; display: flex; align-items: baseline; gap: 16px; padding: 18px 22px; user-select: none; }
.edition summary::-webkit-details-marker { display: none; }
.edition summary::after { content: "+"; margin-left: auto; color: var(--gold); font-size: 1.1rem; }
.edition[open] summary::after { content: "\2212"; }
.edition[open] summary { border-bottom: 1px solid var(--line); }
.ed-year { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); }
.ed-open-hint { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.ed-body { padding: 20px 22px 24px; }
.ed-highlights { margin: 12px 0 20px; padding-left: 20px; }
.ed-highlights li { margin: 5px 0; }
.results-table td, .results-table th { white-space: nowrap; }
.relay-row td { background: rgba(176, 135, 63, 0.09); }

/* Forms */
.priority-form { display: flex; gap: 12px; justify-content: center; margin: 26px 0 14px; flex-wrap: wrap; }
.priority-form input { max-width: 260px; }
.memory-form { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.register-form, .admin-form, .admin-login form { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
label { font-size: .85rem; font-weight: 600; letter-spacing: .02em; display: flex; flex-direction: column; gap: 7px; color: var(--navy); }
input, textarea, select {
  font: inherit; color: var(--ink); background: #fff;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 12px 14px; width: 100%;
}
input::placeholder, textarea::placeholder { color: #9a917c; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176, 135, 63, .16); }
label.checkbox { flex-direction: row; align-items: center; gap: 10px; font-weight: 500; }
label.checkbox input { width: auto; accent-color: var(--gold); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.secure-note { font-size: .8rem; color: var(--muted); margin: 0; }
.secure-note.warn { color: var(--gold-deep); }
.form-actions { display: flex; gap: 10px; align-items: center; }
.danger-form { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.tee-note { font-weight: 400; }

/* Notices */
.notice { padding: 13px 16px; border-radius: var(--radius); margin: 16px 0; background: var(--stone-2); border: 1px solid var(--line-strong); font-size: .92rem; color: var(--ink); }
.notice.ok { border-color: rgba(111, 125, 95, .6); color: #4a5540; background: rgba(111, 125, 95, .12); }
.notice.error { border-color: rgba(154, 75, 70, .5); color: #8a3b36; background: rgba(154, 75, 70, .1); }
.notice.warn { border-color: rgba(176, 135, 63, .5); color: var(--gold-deep); background: rgba(176, 135, 63, .1); }

/* Event cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.event-card { display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); min-height: 170px; box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .12s ease; }
.event-card:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 2px 4px rgba(24,39,66,.08), 0 24px 50px rgba(24,39,66,.16); }
.event-card-body { padding: 20px 20px 8px; }
.event-card h2 { font-size: 1.25rem; margin-top: 6px; }
.event-date { color: var(--gold-deep); font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.event-card-foot { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-top: 1px solid var(--line); }
.price { font-family: var(--serif); color: var(--navy); }
.event-card-foot .link { color: var(--muted); font-size: .85rem; }
.past-heading { margin-top: 44px; color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .14em; }
.past-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.past-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.empty { color: var(--muted); background: var(--stone-2); border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 30px; text-align: center; }

/* Event detail / booking */
.back { display: inline-block; margin-bottom: 18px; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.event-detail { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.description { margin-top: 18px; color: var(--ink); }
.booking { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; position: sticky; top: 96px; }
.price-big { font-family: var(--serif); font-size: 2rem; color: var(--navy); }
.spots { margin-bottom: 8px; }
.history-link { display: flex; align-items: center; gap: 14px; margin-top: 24px; background: var(--stone-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; color: var(--ink); }
.history-link:hover { border-color: var(--gold); color: var(--ink); }
.hl-icon { display: none; }
.hl-arrow { margin-left: auto; color: var(--gold); }

/* Confirmation */
.confirm { text-align: center; max-width: 520px; margin: 40px auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 46px 30px; }
.confirm .tick { width: 60px; height: 60px; line-height: 60px; margin: 0 auto 14px; border-radius: 50%; border: 1px solid var(--green); color: var(--green); font-size: 1.7rem; }
.confirm .lead { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); }
.confirm .btn { margin-top: 20px; }

/* Admin */
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-login { max-width: 380px; margin: 40px auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); }
.admin-table th, .admin-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: .9rem; vertical-align: top; }
.admin-table th { font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); background: var(--stone-2); font-weight: 600; }
.admin-table tr:last-child td { border-bottom: none; }
.row-actions a { margin-right: 12px; font-size: .85rem; text-decoration: underline; text-decoration-color: var(--gold); }
.pill { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.pill.live { border: 1px solid rgba(111, 125, 95, .7); color: #4a5540; }
.pill.draft { border: 1px solid var(--line-strong); color: var(--muted); }
.wrap-cell { white-space: normal; min-width: 260px; }

/* About / shop / designs */
.hist-hero { margin-bottom: 34px; }
.hist-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.hist-hero .strapline { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-deep); margin: .2em 0 .5em; }
.hist-section { margin: 44px 0; }
.hist-section h2 { font-size: .95rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .18em; color: var(--gold-deep); border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 20px; }
.legs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 12px; }
.leg { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.leg-name { font-size: .74rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gold-deep); font-weight: 600; margin-bottom: 6px; }
.leg-detail { color: var(--ink); font-size: .95rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-grid h2 { font-size: .95rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .18em; color: var(--gold-deep); border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 14px; }
.about-mission p:first-of-type { font-family: var(--serif); font-style: italic; color: var(--ink); }
.tee-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; margin: 20px 0; }
.tee-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; }
.tee-card svg { width: 100%; height: auto; display: block; }
.tee-meta { margin-top: 10px; }
.tee-meta strong { color: var(--navy); }
.tee-meta p { margin: 4px 0 0; }
.sources { padding-left: 20px; }
.sources li { margin: 5px 0; }

/* Holcombe sub-navigation */
.subnav { background: rgba(255, 255, 255, 0.8); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); }
.subnav-inner { display: flex; align-items: center; gap: 24px; min-height: 48px; flex-wrap: wrap; padding-top: 7px; padding-bottom: 7px; }
.subnav-brand { font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); white-space: nowrap; }
.subnav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.subnav-links a { font-size: .74rem; text-transform: uppercase; letter-spacing: .13em; color: var(--navy-soft); }
.subnav-links a:hover { color: var(--gold-deep); }

/* Flagship event card */
.flagship-card { display: block; background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px 36px; transition: transform .12s ease; }
.flagship-card:hover { transform: translateY(-3px); }
.flagship-title { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin: 6px 0 10px; line-height: 1.15; }
.flagship-body .eyebrow { margin-bottom: 4px; }
.flagship-body p { max-width: 640px; }

/* Footer - deep navy anchor */
.site-footer { border-top: 3px solid var(--gold); background: var(--navy); color: rgba(255,255,255,.72); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: 40px; padding-top: 52px; padding-bottom: 40px; }
.foot-brand { font-family: var(--serif); font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.foot-head { font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-bright); margin-bottom: 12px; }
.site-footer .muted { color: rgba(255,255,255,.6); }
.site-footer a { display: block; color: rgba(255,255,255,.78); font-size: .92rem; margin: 7px 0; }
.site-footer a:hover { color: #fff; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; padding-bottom: 26px; color: rgba(255,255,255,.55); }

@media (max-width: 860px) {
  .heritage-grid, .about-grid, .info-grid, .footer-grid, .split-hero-grid { grid-template-columns: 1fr; }
  .feature-panel { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(odd) { border-left: none; }
  .feature:nth-child(n+3) { border-top: 1px solid var(--line); }
  .event-detail { grid-template-columns: 1fr; }
  .booking { position: static; }
  .split-hero { padding: 40px 0 56px; }
  .split-figure { aspect-ratio: 16 / 10; }
  .section { padding: 56px 0; }
  .site-nav { display: none; }
  .photo-hero { min-height: 68vh; }
}
@media (max-width: 560px) {
  .row { grid-template-columns: 1fr; }
  .priority-form { flex-direction: column; }
  .priority-form input { max-width: none; }
  .feature-panel { grid-template-columns: 1fr; }
  .feature { border-left: none !important; border-top: 1px solid var(--line); }
  .feature:first-child { border-top: none; }
  .feature-strip { margin-top: -24px; }
}
