:root {
  --ink: #181714;
  --ink-soft: #46423a;
  --paper: #f3efe6;
  --paper-deep: #e5ddce;
  --gold: #ad7b25;
  --gold-bright: #d2a84c;
  --blue: #08465d;
  --line: rgba(24, 23, 20, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1340px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--gold); color: #fff; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: #fff; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.site-header.is-solid { position: relative; background: var(--ink); }
.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 104px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 46px; filter: invert(1); }
.brand-name { display: grid; line-height: 1; letter-spacing: .12em; text-transform: uppercase; font-size: .9rem; }
.brand-name small { margin-top: .36rem; opacity: .7; font-size: .56rem; letter-spacing: .18em; }
.nav { justify-self: end; display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.3rem); }
.nav a { text-decoration: none; text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-bright); }
.book-link { border-left: 1px solid rgba(255,255,255,.35); padding-left: 1.6rem; }
.language { position: relative; }
.language summary { cursor: pointer; list-style: none; font-size: .7rem; letter-spacing: .14em; }
.language summary::-webkit-details-marker { display: none; }
.language-list {
  position: absolute;
  right: 0;
  top: 2rem;
  min-width: 120px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: .5rem;
}
.language-list a { display: block; padding: .5rem .65rem; text-decoration: none; }
.menu-toggle { display: none; color: #fff; background: none; border: 0; font-size: 1.4rem; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: end;
  color: #fff;
  background: #211f1b url("media/site/hero.webp") center 42% / cover no-repeat;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11,10,8,.88) 0%, rgba(11,10,8,.42) 52%, rgba(11,10,8,.08) 80%), linear-gradient(0deg, rgba(11,10,8,.75), transparent 55%); }
.hero-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 190px 0 84px; }
.eyebrow { margin: 0 0 1.2rem; color: var(--gold-bright); font-size: .7rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; }
.hero h1, .page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8.4rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--gold-bright); font-weight: 400; }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-top: 3.2rem; }
.hero-intro { max-width: 590px; margin: 0; font-size: clamp(1rem, 1.5vw, 1.24rem); }
.hero-note { display: grid; justify-items: end; text-align: right; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-note::before { content: ""; width: 90px; height: 1px; background: var(--gold-bright); margin-bottom: .7rem; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 48px; padding: .7rem 1.25rem; color: #fff; background: var(--ink); border: 1px solid var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; transition: .25s ease; }
.button:hover { background: var(--gold); border-color: var(--gold); }
.button.light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button.outline { background: transparent; border-color: currentColor; }
.text-link { display: inline-flex; gap: .8rem; align-items: center; color: var(--gold); font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; font-size: .69rem; }
.text-link::after { content: "\2192"; font-size: 1rem; transition: transform .2s; }
.text-link:hover::after { transform: translateX(5px); }

.section { padding: clamp(80px, 10vw, 150px) 0; }
.section-inner { width: min(calc(100% - 48px), var(--max)); margin: auto; }
.section-head { display: grid; grid-template-columns: minmax(190px,.6fr) 1.4fr; gap: clamp(2rem, 8vw, 9rem); align-items: start; margin-bottom: clamp(50px, 7vw, 90px); }
.section-number { display: flex; align-items: center; gap: 1rem; color: var(--gold); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.section-number::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.section-title { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(2.5rem, 5vw, 5.6rem); line-height: .98; letter-spacing: -.04em; }
.section-lead { max-width: 720px; margin: 1.5rem 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.dark { background: var(--ink); color: var(--paper); }
.dark .section-lead { color: rgba(243,239,230,.7); }
.blue { background: var(--blue); color: #fff; }

.manifesto { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px; }
.manifesto-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 9vw, 150px) max(24px, calc((100vw - var(--max))/2)); padding-right: clamp(40px, 8vw, 120px); }
.manifesto-copy blockquote { margin: 0; font: 400 clamp(2.2rem, 4vw, 4.8rem)/1.04 var(--serif); letter-spacing: -.035em; }
.manifesto-copy p { max-width: 580px; margin: 2.2rem 0; color: rgba(243,239,230,.7); }
.manifesto-image { min-height: 620px; background: url("media/site/heritage-map.webp") center / cover; }

.experience-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.experience-card { position: relative; min-height: 580px; overflow: hidden; color: #fff; text-decoration: none; background: #222; isolation: isolate; }
.experience-card:nth-child(1), .experience-card:nth-child(4) { grid-column: span 7; }
.experience-card:nth-child(2), .experience-card:nth-child(3) { grid-column: span 5; }
.experience-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.experience-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,10,9,.88), rgba(10,10,9,.04) 68%); }
.experience-card:hover img { transform: scale(1.035); }
.card-copy { position: absolute; inset: auto 0 0; padding: clamp(1.6rem, 4vw, 3.4rem); }
.card-kicker { color: var(--gold-bright); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; }
.card-copy h3 { margin: .45rem 0 .7rem; font: 400 clamp(2.1rem, 4vw, 4.4rem)/.95 var(--serif); letter-spacing: -.04em; }
.card-copy p { max-width: 600px; margin: 0; color: rgba(255,255,255,.78); }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 750px; }
.split-image { min-height: 560px; background: center / cover no-repeat; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 9vw, 140px); }
.split-copy h2 { margin: 0 0 1.8rem; font: 400 clamp(3rem, 5.5vw, 6rem)/.95 var(--serif); letter-spacing: -.045em; }
.split-copy p { max-width: 600px; }
.details-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin: 2.2rem 0; background: rgba(255,255,255,.2); }
.details-list > div { background: var(--blue); padding: 1rem 0; }
.details-list small { display: block; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .14em; font-size: .6rem; }

.gallery-strip { display: grid; grid-template-columns: 1.3fr .7fr .7fr; height: min(68vw, 760px); gap: 1rem; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; }
.gallery-strip img:nth-child(2) { margin-top: 4rem; height: calc(100% - 4rem); }

.event-promo { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--paper-deep); }
.event-promo-image { min-height: 660px; background: url("media/site/events.webp") center / cover; }
.event-promo-copy { padding: clamp(60px, 9vw, 130px); align-self: center; }
.event-promo-copy h2 { margin: 0 0 1.5rem; font: 400 clamp(2.8rem, 5vw, 5.5rem)/.96 var(--serif); letter-spacing: -.04em; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.pillar { border-top: 1px solid var(--gold); padding-top: 1rem; }
.pillar strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }

.cta-band { padding: 68px 0; background: var(--gold); color: #fff; }
.cta-inner { width: min(calc(100% - 48px), var(--max)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-inner h2 { max-width: 780px; margin: 0; font: 400 clamp(2.4rem, 4vw, 4.4rem)/1 var(--serif); letter-spacing: -.04em; }

.site-footer { background: #0f0f0d; color: rgba(255,255,255,.75); }
.footer-main { width: min(calc(100% - 48px), var(--max)); margin: auto; padding: 84px 0 62px; display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 3rem; }
.footer-brand img { width: 72px; filter: invert(1); margin-bottom: 1.5rem; }
.footer-brand p { max-width: 320px; }
.footer-col h3 { margin: 0 0 1rem; color: var(--gold-bright); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: .45rem 0; color: inherit; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-legal .withdrawal-link { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.18); color: var(--gold-bright); font-weight: 700; }
.footer-trust { min-width: 180px; }
.trust-badge { width: fit-content; padding: .65rem; border-radius: 3px; background: #fff; }
.trust-badge img { display: block; width: 170px; max-height: 76px; object-fit: contain; }
.trust-badge.sal-badge img { max-height: 64px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { width: min(calc(100% - 48px), var(--max)); margin: auto; padding: 1.25rem 0; display: flex; justify-content: space-between; gap: 1rem; font-size: .7rem; }

.page-hero { min-height: 76vh; position: relative; display: flex; align-items: end; color: #fff; background: #222 center / cover no-repeat; isolation: isolate; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,10,9,.85), rgba(10,10,9,.12) 70%); }
.page-hero-inner { width: min(calc(100% - 48px), var(--max)); margin: auto; padding: 190px 0 80px; }
.page-hero h1 { font-size: clamp(3.6rem, 8vw, 8rem); }
.page-hero p { max-width: 680px; margin: 1.5rem 0 0; font-size: 1.1rem; }

.venue-list { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.venue { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
.venue:nth-child(even) .venue-image { order: 2; }
.venue-image { min-height: 520px; background: center / cover; }
.venue-copy { padding: clamp(45px, 7vw, 100px); align-self: center; }
.venue-copy h2 { margin: 0 0 1rem; font: 400 clamp(2.5rem, 4.3vw, 4.8rem)/.96 var(--serif); letter-spacing: -.04em; }
.venue-facts { display: flex; gap: 2.5rem; margin-top: 2rem; }
.venue-facts strong { display: block; font: 400 2rem var(--serif); }
.venue-facts span { color: var(--ink-soft); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.floorplan { padding: 2rem; background: #fff; }
.floorplan img { margin: auto; max-height: 520px; }

.archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.archive-card { background: #fff; }
.archive-card img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.archive-copy { padding: 1.5rem; }
.archive-copy time { color: var(--gold); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.archive-copy h3 { margin: .55rem 0; font: 400 1.8rem/1.05 var(--serif); }
.archive-copy p { color: var(--ink-soft); font-size: .9rem; }

.timeline { position: relative; max-width: 1120px; margin: auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline-entry { width: 50%; padding: 0 clamp(2rem,6vw,6rem) 110px 0; position: relative; }
.timeline-entry:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: clamp(2rem,6vw,6rem); }
.timeline-entry::after { content: ""; position: absolute; top: .7rem; right: -6px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); }
.timeline-entry:nth-child(even)::after { right: auto; left: -5px; }
.timeline-year { color: var(--gold); font: 400 clamp(2.7rem,5vw,5rem)/1 var(--serif); }
.timeline-entry h2 { margin: .5rem 0 1rem; font: 400 clamp(1.8rem,3vw,3rem)/1.02 var(--serif); }
.timeline-entry p { color: var(--ink-soft); }
.timeline-entry figure { margin: 1.5rem 0 0; }
.timeline-entry figure img { width: 100%; max-height: 420px; object-fit: cover; }
.timeline-entry figcaption { margin-top: .5rem; color: var(--ink-soft); font-size: .7rem; }
.dress-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .8rem; }
.dress-grid figure { margin: 0; }
.dress-grid img { width: 100%; aspect-ratio: .78; object-fit: cover; }
.dress-grid figcaption { padding-top: .7rem; font-family: var(--serif); font-size: 1.1rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem,10vw,10rem); }
.contact-primary h2 { margin: 0 0 2rem; font: 400 clamp(3rem,5vw,5rem)/.95 var(--serif); }
.contact-card { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.contact-card small { display: block; color: var(--gold); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-card a { font-family: var(--serif); font-size: clamp(1.3rem,2vw,2rem); text-decoration: none; }
.contact-actions { display: grid; gap: 1rem; align-content: start; }
.action-card { display: grid; grid-template-columns: 1fr auto; align-items: end; min-height: 220px; padding: 2rem; color: #fff; text-decoration: none; background: var(--blue); }
.action-card:nth-child(2) { background: var(--gold); }
.action-card:nth-child(3) { background: var(--ink); }
.action-card strong { font: 400 clamp(2rem,4vw,3.8rem)/1 var(--serif); }
.action-card span { font-size: 1.5rem; }
.legal { max-width: 900px; }
.legal h1 { font: 400 clamp(3rem,6vw,6rem)/.95 var(--serif); }
.legal h2 { margin-top: 3rem; font: 400 2rem var(--serif); }
.legal p, .legal li { line-height: 1.75; }
.legal-intro { max-width: 760px; color: var(--ink-soft); font-size: 1.12rem; }
.legal-updated { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .8rem; }
.withdrawal-notice, .withdrawal-note { margin: 2rem 0; padding: 1rem 1.25rem; border-left: 3px solid var(--gold); background: var(--paper-deep); }
.withdrawal-form { display: grid; gap: 1.25rem; max-width: 720px; margin-top: 2rem; }
.form-field { display: grid; gap: .45rem; }
.form-field label { font-size: .75rem; font-weight: 700; letter-spacing: .06em; }
.form-field input, .form-field textarea { width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink); font: inherit; }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-help { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.contact-legal { margin-top: .45rem; line-height: 1.65; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .menu-toggle { display: block; justify-self: end; }
  .nav { display: none; position: fixed; inset: 0; z-index: -1; padding: 130px 28px 40px; background: var(--ink); flex-direction: column; align-items: flex-start; justify-content: flex-start; }
  .menu-open .nav { display: flex; }
  .nav a { font: 400 2.2rem/1 var(--serif); text-transform: none; letter-spacing: -.02em; }
  .book-link { border: 0; padding: 0; }
  .language { justify-self: end; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-image { min-height: 70vw; }
  .experience-card { min-height: 500px; }
  .experience-card:nth-child(n) { grid-column: span 6; }
  .split, .event-promo { grid-template-columns: 1fr; }
  .event-promo-image { min-height: 60vw; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  .header-inner, .hero-inner, .section-inner, .cta-inner, .footer-main, .footer-bottom-inner, .page-hero-inner { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { height: 82px; grid-template-columns: 1fr auto auto; gap: 1rem; }
  .brand img { width: 36px; }
  .brand-name { font-size: .72rem; }
  .brand-name small { display: none; }
  .hero { min-height: 850px; background-position: 42% center; }
  .hero-inner { padding-bottom: 50px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5.5rem); }
  .hero-bottom { align-items: start; flex-direction: column; }
  .hero-note { display: none; }
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 1.3rem; }
  .section-number::after { max-width: 120px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card:nth-child(n) { grid-column: auto; min-height: 520px; }
  .split-image { min-height: 110vw; }
  .split-copy { padding: 70px 24px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; padding: 0 1rem 1rem; }
  .gallery-strip img { height: 72vw; }
  .gallery-strip img:first-child { grid-column: span 2; }
  .gallery-strip img:nth-child(2) { margin: 0; height: 60vw; }
  .gallery-strip img:nth-child(3) { height: 60vw; }
  .event-promo-copy { padding: 70px 24px; }
  .pillars { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
  .venue, .venue:nth-child(even) { grid-template-columns: 1fr; }
  .venue:nth-child(even) .venue-image { order: 0; }
  .venue-image { min-height: 90vw; }
  .venue-copy { padding: 55px 24px; }
  .archive-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 5px; }
  .timeline-entry, .timeline-entry:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 80px 36px; }
  .timeline-entry::after, .timeline-entry:nth-child(even)::after { left: 0; right: auto; }
  .dress-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

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