@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@400;500;600&display=swap');

:root{
  --navy-950: #060f22;
  --navy-900: #0a1730;
  --navy-800: #0f2140;
  --navy-700: #16304f;
  --gold-300: #f0dca6;
  --gold-400: #e3c383;
  --gold-500: #cba55b;
  --gold-600: #a9843f;
  --cream: #f3ede0;
  --ink-muted: #a9b4c9;
  --ink-faint: #6d7994;
  --line: rgba(227, 195, 131, 0.18);
  --success: #7fae87;
  --radius: 2px;
  --maxw: 460px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: radial-gradient(1200px 800px at 50% -10%, #0d1c38 0%, var(--navy-950) 55%, #050b18 100%);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.serif{ font-family: 'Cormorant Garamond', serif; }

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; }

/* Text links must look clickable (charity, history, gazette, etc.) */
a.more, a.text-link{
  color: var(--gold-400);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a.more:hover, a.text-link:hover{ color: var(--gold-300); }

/* ---------- shell ---------- */
.shell{
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20,38,68,0.35), rgba(6,15,34,0.1));
}

.topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.topbar .back{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold-400);
}

.topbar .brand{
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--gold-300);
}

.topbar .step{
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}

main{ flex: 1; padding: 26px 22px 40px; }

/* ---------- headings ---------- */
h1,h2,h3{ font-family: 'Cormorant Garamond', serif; font-weight: 500; margin: 0; color: var(--cream); }
.page-title{ font-size: 30px; letter-spacing: 0.01em; margin-bottom: 4px; }
.page-sub{ color: var(--ink-muted); font-size: 14px; margin-bottom: 26px; }

.section-label{
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  margin: 30px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after{
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{ transform: scale(0.98); }

.btn-gold{
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  font-weight: 600;
}
.btn-gold:hover{ box-shadow: 0 6px 22px rgba(203,165,91,0.28); }

.btn-outline{
  background: transparent;
  border-color: var(--line);
  color: var(--gold-400);
}
.btn-outline:hover{ border-color: var(--gold-500); }

.btn-ghost{
  background: rgba(227,195,131,0.06);
  color: var(--cream);
  border-color: var(--line);
}

.btn[disabled]{ opacity: 0.45; cursor: not-allowed; }

/* ---------- cards ---------- */
.card{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-radius: var(--radius);
  padding: 18px;
}

/* ---------- form fields ---------- */
.field{ margin-bottom: 18px; }
.field label{
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.field input, .field textarea{
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 13px 14px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
}
.field input:focus, .field textarea:focus, .radio-row:focus-within{
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(203,165,91,0.15);
}
.field textarea{ resize: vertical; min-height: 70px; }
.field .valid-mark{
  position: relative;
}

/* ---------- radio option list ---------- */
.opt{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.opt:hover{ border-color: rgba(227,195,131,0.4); }
.opt input{ position: absolute; opacity: 0; pointer-events: none; }
.opt .dot{
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-faint);
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
}
.opt input:checked ~ .dot{ border-color: var(--gold-400); }
.opt input:checked ~ .dot::after{
  content:'';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--gold-400);
}
.opt.selected{ border-color: var(--gold-500); background: rgba(227,195,131,0.05); }
.opt .opt-title{ font-size: 15px; color: var(--cream); }
.opt .opt-desc{ font-size: 12.5px; color: var(--ink-faint); margin-top: 2px; }

/* ---------- table plan grid ---------- */
.table-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.table-node{
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  padding: 8px;
}
.table-node:hover{ border-color: rgba(227,195,131,0.5); }
.table-node.mine{
  border-color: var(--gold-400);
  background: radial-gradient(circle, rgba(227,195,131,0.12), transparent 70%);
  box-shadow: 0 0 0 1px var(--gold-400) inset;
}
.table-node .table-head{ text-align: center; }
.table-node .table-head .name{ font-family:'Cormorant Garamond',serif; font-size: 17px; line-height: 1.15; }
.table-node .table-head .role{
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}
.table-node .seats{ font-size: 10.5px; color: var(--ink-faint); margin-top: 6px; letter-spacing: 0.04em; }
.table-node.mine .seats,
.table-node.mine .table-head .role{ color: var(--gold-400); }
.table-node .check{
  position: absolute;
  top: 10px;
  color: var(--gold-400);
  font-size: 13px;
}

.toggle-row{
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
}
.toggle-row button{
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink-muted);
  padding: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.toggle-row button.active{
  background: rgba(227,195,131,0.12);
  color: var(--gold-300);
}

/* ---------- list rows (table list view / auction / etc) ---------- */
.list-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.list-row .name{ font-family:'Cormorant Garamond', serif; font-size: 17px; }
.list-row .meta{ font-size: 12px; color: var(--ink-faint); margin-top: 2px; }

/* ---------- status list (my booking) ---------- */
.status-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.status-item:last-child{ border-bottom: none; }
.status-icon{
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}
.status-icon.done{ background: var(--success); color: var(--navy-950); }
.status-icon.pending{ border: 1.5px solid var(--ink-faint); color: transparent; }
.status-item .t{ font-size: 14.5px; color: var(--cream); }
.status-item .s{ font-size: 12px; color: var(--ink-faint); margin-top: 1px; }

.summary-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 12px;
}
.summary-grid .k{ font-size: 12.5px; color: var(--ink-faint); }
.summary-grid .v{ font-size: 13.5px; color: var(--cream); text-align: right; }
.summary-grid .v.total{ color: var(--gold-400); font-weight: 600; }

/* ---------- badges ---------- */
.badge{
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border: 1px solid var(--gold-600);
  color: var(--gold-400);
  border-radius: 20px;
}

.note{ font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 12px; line-height: 1.5; }

hr.rule{ border: none; border-top: 1px solid var(--line); margin: 26px 0; }

/* ---------- bottom nav (site nav, not phone chrome) ---------- */
.sitenav{
  display: flex;
  border-top: 1px solid var(--line);
  background: rgba(6,15,34,0.7);
  backdrop-filter: blur(6px);
}
.sitenav a{
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 12px 2px 14px;
  font-size: 9.5px;
  letter-spacing: 0.03em;
  color: var(--ink-faint);
}
.sitenav a.active{ color: var(--gold-400); }
.sitenav .ic{ display:block; font-size: 16px; margin-bottom: 4px; }

/* ---------- home page specific ---------- */
.hero{
  position: relative;
  padding: 44px 22px 34px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before, .hero::after{
  content:'✦';
  position: absolute;
  color: var(--gold-500);
  font-size: 22px;
  opacity: 0.6;
}
.hero::before{ top: 22px; left: 18px; }
.hero::after{ top: 22px; right: 18px; }
.hero .eyebrow{
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.hero h1{ font-size: 34px; line-height: 1.12; letter-spacing: 0.01em; }
.hero .tag{ margin-top: 12px; color: var(--ink-muted); font-size: 13.5px; }

.event-facts{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.event-facts:empty{ display: none; }
.event-facts .fact{ display: flex; align-items: center; gap: 12px; font-size: 14px; }
.event-facts .fact .ic{ color: var(--gold-500); width: 18px; text-align: center; }

.charity-strip{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 22px;
}
.charity-strip .mark{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(227,195,131,0.06);
  border: 1px dashed var(--gold-600);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  line-height: 1.2;
  padding: 6px;
}
.charity-strip .k{ font-size: 10.5px; letter-spacing: 0.1em; color: var(--gold-500); }
.charity-strip .name{ font-family: 'Cormorant Garamond', serif; font-size: 17px; }
.charity-strip .desc{ font-size: 12px; color: var(--ink-faint); }

.chair-card{
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 18px;
}
.chair-card .portrait{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(227,195,131,0.06);
  flex-shrink: 0;
  border: 1px dashed var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  line-height: 1.2;
  padding: 6px;
}
.chair-card h3{ font-size: 15px; letter-spacing: 0.06em; color: var(--gold-400); font-family: 'Jost', sans-serif; margin-bottom: 6px; }
.chair-card p{ font-size: 13px; color: var(--ink-muted); margin: 0 0 8px; line-height: 1.55; }

.proto-note{
  font-size: 11.5px;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}

.opt{ position: relative; }

.center-motif{
  text-align: center;
  padding: 26px 0 6px;
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.28em;
}

/* dietary textarea + confirm footer sticky-ish spacing */
.spacer{ height: 6px; }

@media (max-width: 380px){
  .hero h1{ font-size: 28px; }
  .table-grid{ gap: 12px; }
}

/* New structural wrappers: mobile stays single-column */
.desk-nav{ display: none; }
.plan-aside{ display: none; }
.hero-sky, .hero-rule, .hero-cta, .cause-orn{ display: none; }

.home-panel .charity-strip,
.home-panel .chair-card{ margin-top: 0; }

.cause-copy{
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0 0 10px;
}

.evening-track{
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.evening-step{ display: flex; gap: 12px; align-items: flex-start; }
.step-num{ display: none; }
.step-icon{ color: var(--gold-500); line-height: 1.4; }
.evening-title{ font-size: 14px; }
.evening-desc{ font-size: 12px; color: var(--ink-faint); }

.home-secondary{ margin-top: 14px; }
.committee-card{ display: flex; flex-direction: column; gap: 14px; }
.page-actions{ display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.home-cta{ width: 100%; }

/* ---------- Tablet: 768–1023 ---------- */
@media (min-width: 768px){
  .shell{
    max-width: 840px;
    border-left-color: rgba(227, 195, 131, 0.12);
    border-right-color: rgba(227, 195, 131, 0.12);
  }

  main{ padding: 32px 36px 48px; }
  .hero{ padding: 56px 36px 42px; }
  .hero h1{ font-size: 42px; }
  .page-title{ font-size: 36px; }

  .sitenav{ display: none; }

  .desk-nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 18px;
    padding: 16px 28px;
    border-bottom: 1px solid var(--line);
  }
  .desk-nav-brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    letter-spacing: 0.06em;
    color: var(--cream);
    white-space: nowrap;
  }
  .brand-star{ color: var(--gold-400); font-size: 17px; }
  .desk-nav nav{
    order: 3;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
  }
  .desk-nav nav a{
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
  }
  .desk-nav nav a:hover{ color: var(--gold-300); }
  .desk-nav nav a.active{
    color: var(--gold-300);
    border-bottom-color: var(--gold-500);
  }
  .desk-nav-cta,
  .desk-nav-book{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    color: var(--navy-950);
    font-weight: 500;
  }
  .desk-nav-cta:hover,
  .desk-nav-book:hover{ background: linear-gradient(180deg, #f7e6bd, var(--gold-400)); }

  .event-facts{
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }

  .home-cta{
    width: auto;
    min-width: 280px;
    padding-left: 36px;
    padding-right: 36px;
  }
  .home-secondary{
    width: auto;
    min-width: 220px;
  }

  .evening-track{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 26px;
  }
  .evening-step{ align-items: center; }

  .table-grid{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
  }

  .menu-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
  }

  .form-page main{
    max-width: 720px;
    margin: 0 auto;
  }

  .card, .list-row, .charity-strip, .chair-card{
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* ---------- Desktop: 1024px+ ---------- */
@media (min-width: 1024px){
  html, body{ overflow-x: hidden; }

  .shell{
    max-width: 1320px;
    border-left: none;
    border-right: none;
    background: transparent;
  }

  main{ padding: 40px 48px 72px; }

  .desk-nav{
    flex-wrap: nowrap;
    padding: 20px 48px;
  }
  .desk-nav-brand{ font-size: 23px; }
  .brand-star{ font-size: 20px; }
  .desk-nav nav{
    order: 0;
    flex-basis: auto;
    flex: 1;
    gap: 10px 34px;
  }
  .desk-nav nav a{ font-size: 12.5px; letter-spacing: 0.14em; }
  .desk-nav-cta,
  .desk-nav-book{ padding: 12px 26px; font-size: 11.5px; }

  .topbar{ padding: 18px 48px; }

  .hero{
    padding: 96px 48px 88px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero::before, .hero::after{ display: none; }
  .hero > *{ position: relative; z-index: 1; }

  .hero-sky{
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .hero-sky .star{
    position: absolute;
    color: var(--gold-400);
    line-height: 1;
  }
  .hero-sky .s1{ top: 12%; left: 14%; font-size: 26px; opacity: 0.85; }
  .hero-sky .s2{ top: 30%; left: 8%; font-size: 14px; opacity: 0.5; }
  .hero-sky .s3{ top: 58%; left: 5%; font-size: 32px; opacity: 0.7; }
  .hero-sky .s4{ top: 16%; right: 15%; font-size: 30px; opacity: 0.8; }
  .hero-sky .s5{ top: 44%; right: 7%; font-size: 15px; opacity: 0.45; }
  .hero-sky .s6{ top: 68%; right: 18%; font-size: 12px; opacity: 0.4; }
  .hero-sky .arc{
    position: absolute;
    border: 1px solid rgba(227, 195, 131, 0.14);
    border-radius: 50%;
  }
  .hero-sky .arc-left{ width: 780px; height: 780px; left: -540px; top: -140px; }
  .hero-sky .arc-right{ width: 940px; height: 940px; right: -640px; top: -230px; }

  .hero .eyebrow{ font-size: 12.5px; letter-spacing: 0.3em; margin-bottom: 22px; }
  .hero h1{ font-size: 66px; line-height: 1.06; max-width: 18ch; }
  .hero-rule{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: min(440px, 70%);
    margin: 24px auto 0;
    color: var(--gold-500);
    font-size: 12px;
  }
  .hero-rule::before,
  .hero-rule::after{
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
  }
  .hero .tag{ margin-top: 18px; font-size: 17px; color: var(--cream); letter-spacing: 0.02em; }
  .hero-cta{
    display: inline-flex;
    width: auto;
    min-width: 300px;
    margin-top: 34px;
    padding: 16px 40px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .page-title{ font-size: 44px; }
  .page-sub{ font-size: 16px; margin-bottom: 32px; }
  .section-label{ margin: 40px 0 16px; }

  .event-facts{
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 22px 8px;
  }
  .event-facts .fact{
    padding: 4px 16px;
    border-right: 1px solid var(--line);
  }
  .event-facts .fact:last-child{ border-right: none; }

  /* Hero owns the call to action on desktop */
  .home-cta{ display: none; }
  .home-secondary{
    display: flex;
    width: auto;
    max-width: 280px;
    margin: 36px auto 0;
  }

  /* --- Charity + Chair: two equal, shallow panels --- */
  .home-duo{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 38px;
  }
  .home-panel{
    display: flex;
    flex-direction: column;
    padding: 26px 32px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  }
  .home-panel .section-label{ margin: 0 0 18px; font-size: 11px; letter-spacing: 0.18em; }
  .home-panel .section-label::after{ flex: 0 0 46px; }
  .home-panel .charity-strip,
  .home-panel .chair-card{
    flex: 1;
    align-items: center;
    gap: 26px;
    padding: 0;
    border: none;
    border-radius: 0;
    margin: 0;
  }
  .home-panel .mark,
  .home-panel .portrait{
    width: 96px;
    height: 96px;
    font-size: 11px;
    letter-spacing: 0.16em;
    border-style: dotted;
  }
  .panel-text{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }
  .home-panel .charity-strip .name{ font-size: 27px; }
  .home-panel .charity-strip .desc{ font-size: 14px; margin-top: 8px; }
  .home-panel .chair-card h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    letter-spacing: 0.01em;
    color: var(--cream);
    margin-bottom: 8px;
  }
  .home-panel .chair-card p{ font-size: 14px; margin-bottom: 12px; }
  .home-panel .more{ font-size: 13px; align-self: flex-start; }

  /* --- This Year's Cause: wide editorial band --- */
  .home-cause{
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    padding: 26px 40px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  }
  .home-cause .section-label{ margin: 0 0 16px; font-size: 11px; letter-spacing: 0.18em; }
  .home-cause .section-label::after{ flex: 0 0 46px; }
  .home-cause .cause-card{
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    max-width: none;
  }
  .cause-copy{
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    line-height: 1.45;
    color: var(--cream);
    max-width: 62ch;
    margin-bottom: 14px;
  }
  .home-cause .more{ font-size: 13px; }
  .cause-orn{
    display: block;
    position: absolute;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    height: 96px;
    color: var(--gold-500);
    opacity: 0.55;
    pointer-events: none;
  }

  /* --- The Evening: connected horizontal timeline --- */
  .evening-label{
    justify-content: center;
    margin: 48px 0 32px;
    letter-spacing: 0.22em;
  }
  .evening-label::before{
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }
  .home-evening .evening-track{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 34px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    overflow: visible;
  }
  .evening-step{
    position: relative;
    align-items: center;
    gap: 16px;
    min-height: 152px;
    padding: 32px 20px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  }
  .evening-step:not(:last-child)::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -34px;
    width: 34px;
    border-top: 1px dashed rgba(227, 195, 131, 0.4);
  }
  .step-num{
    display: flex;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gold-600);
    background: var(--navy-950);
    color: var(--gold-300);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
  }
  .step-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px dashed var(--gold-600);
    background: rgba(227, 195, 131, 0.05);
    font-size: 20px;
    color: var(--gold-400);
  }
  .evening-title{ font-family: 'Cormorant Garamond', serif; font-size: 19px; }
  .evening-desc{ font-size: 12.5px; margin-top: 5px; line-height: 1.5; }

  .card{
    padding: 22px 26px;
  }
  .charity-strip, .chair-card{
    padding: 24px 26px;
  }
  .charity-strip .name, .chair-card p{ font-size: 16px; }
  .list-row{
    padding: 16px 22px;
  }

  .form-page main{
    max-width: 760px;
  }

  .booking-split{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }
  .booking-actions .note,
  .booking-actions .proto-note{ text-align: left; }
  .booking-actions .btn{ width: 100%; }

  .plan-layout{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: start;
  }
  .venue-canvas{
    min-height: 560px;
    padding: 36px 28px 48px;
    border: 1px solid var(--line);
    background:
      radial-gradient(ellipse at 50% 42%, rgba(227,195,131,0.07), transparent 58%),
      linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  }
  .table-grid{
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 28px 16px;
    min-height: 480px;
    align-items: center;
    justify-items: center;
  }
  .table-grid .table-node:nth-child(1){ grid-column: 2 / 4; }
  .table-grid .table-node:nth-child(2){ grid-column: 4 / 6; }
  .table-grid .table-node:nth-child(3){ grid-column: 1 / 3; grid-row: 2; }
  .table-grid .table-node:nth-child(4){ grid-column: 5 / 7; grid-row: 2; }
  .table-grid .table-node:nth-child(5){ grid-column: 3 / 5; grid-row: 3; }
  .table-node{
    width: min(168px, 100%);
    max-width: 180px;
  }
  .table-node .table-head .name{ font-size: 18px; }

  .plan-aside{
    display: block;
    position: sticky;
    top: 28px;
    padding: 24px 22px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  }
  .plan-aside-k{
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--gold-500);
    margin-bottom: 12px;
  }
  .plan-aside-empty{
    font-size: 13px;
    color: var(--ink-faint);
    margin: 0;
    line-height: 1.5;
  }
  .plan-aside .name{ font-size: 26px; margin-bottom: 8px; }
  .plan-aside .meta{ font-size: 13px; color: var(--ink-muted); margin-bottom: 4px; }
  .plan-aside .btn{ margin-top: 18px; }

  .committee-card{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
  }

  .page-actions{
    flex-direction: row;
    max-width: 560px;
    gap: 12px;
  }
  .page-actions .btn{ width: auto; flex: 1; }

  .offer-card{
    max-width: 720px;
  }

  .booking-empty{ max-width: 560px; }
  .booking-empty .btn{ width: auto; min-width: 240px; }
}

/* ---------- Narrow desktop: keep the composition, tighten the scale ---------- */
@media (min-width: 1024px) and (max-width: 1279px){
  main{ padding: 36px 32px 64px; }
  .desk-nav{ padding: 18px 32px; }
  .desk-nav nav{ gap: 10px 22px; }
  .desk-nav nav a{ font-size: 11.5px; letter-spacing: 0.1em; }

  .hero{ padding: 76px 32px 68px; min-height: 400px; }
  .hero h1{ font-size: 54px; }

  .home-panel{ padding: 22px 26px 24px; }
  .home-panel .charity-strip,
  .home-panel .chair-card{ gap: 20px; }
  .home-panel .mark,
  .home-panel .portrait{ width: 84px; height: 84px; }
  .panel-text{ padding-left: 22px; }
  .home-panel .charity-strip .name,
  .home-panel .chair-card h3{ font-size: 23px; }

  .home-cause{ padding: 22px 30px 26px; }
  .cause-copy{ font-size: 21px; max-width: 52ch; }
  .cause-orn{ right: 28px; width: 132px; }

  .home-evening .evening-track{ gap: 0 22px; }
  .evening-step{ padding: 30px 16px 24px; gap: 12px; }
  .evening-step:not(:last-child)::after{ right: -22px; width: 22px; }
  .step-icon{ width: 46px; height: 46px; font-size: 18px; }
  .evening-title{ font-size: 17px; }
  .evening-desc{ font-size: 12px; }
}

@media (min-width: 1440px){
  .shell{ max-width: 1400px; }
  .hero h1{ font-size: 70px; }
  .hero{ padding-top: 100px; padding-bottom: 84px; }
}

@media (min-width: 1920px){
  .shell{ max-width: 1400px; }
}
