
:root {
  --brand: #8b1e2d;
  --brand-dark: #64131f;
  --gold: #d6a735;
  --ink: #202124;
  --muted: #667085;
  --surface: #ffffff;
  --surface-alt: #f7f3ed;
  --border: #e7e0d8;
  --shadow: 0 16px 45px rgba(44, 24, 20, .10);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; padding: .7rem 1rem;
  background: #fff; color: #000; z-index: 9999;
}
.skip-link:focus { left: .5rem; top: .5rem; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,224,216,.9);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 800; }
.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-mark {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: Georgia, serif; font-size: 1.05rem;
}
.brand-copy { line-height: 1.1; }
.brand-copy small { display: block; color: var(--muted); font-size: .72rem; font-weight: 600; margin-top: .2rem; }
.nav-menu { display: flex; align-items: center; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.nav-menu a { text-decoration: none; font-weight: 650; font-size: .94rem; padding: .45rem .25rem; }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--brand); }
.nav-toggle { display: none; border: 0; background: transparent; padding: .55rem; cursor: pointer; }
.nav-toggle span { display:block; width: 25px; height: 2px; background: var(--ink); margin: 5px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 46px; padding: .7rem 1.15rem; border-radius: 999px;
  border: 1px solid transparent; text-decoration: none; font-weight: 750; cursor: pointer;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: #fff; border-color: var(--brand); color: var(--brand); }
.btn-light { background:#fff; color:var(--brand-dark); }
.hero {
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(214,167,53,.22), transparent 28rem),
    linear-gradient(145deg, #fff9f4 0%, #f7eee7 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 3.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; color: var(--brand); font-size: .78rem; font-weight: 850; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.16; margin-top: 0; }
h1 { font-size: clamp(2.6rem, 5vw, 5rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; }
.lead { font-size: clamp(1.04rem, 1.8vw, 1.25rem); color: #4b4b4b; max-width: 65ch; }
.actions { display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.75rem; }
.placeholder {
  position: relative; overflow: hidden; min-height: 300px; border-radius: var(--radius);
  background: linear-gradient(135deg,#eadfd6,#f8f2ec);
  border: 2px dashed #b9a99b; display:grid; place-items:center; text-align:center;
  color:#67584d; padding: 1.5rem;
}
.placeholder::before { content:"IMAGE PLACEHOLDER"; display:block; font-weight:850; letter-spacing:.12em; font-size:.8rem; }
.placeholder span { display:block; font-size:.9rem; margin-top:.4rem; }
.hero .placeholder { min-height: 430px; box-shadow: var(--shadow); }
.hero-media {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f7f3ed;
}
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
section { padding: 5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-head { display:flex; justify-content:space-between; gap:2rem; align-items:end; margin-bottom:2rem; }
.section-head p { max-width: 58ch; color: var(--muted); margin:0; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem; }
.card { background:#fff; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; box-shadow:0 7px 25px rgba(44,24,20,.06); }
.card-image { display:block; width:100%; aspect-ratio: 16 / 9; object-fit: cover; }
.card-body { padding:1.35rem; }
.card .placeholder { border:0; border-radius:0; min-height:215px; }
.content-image { display:block; width:100%; min-height:300px; border-radius:var(--radius); object-fit:cover; box-shadow:var(--shadow); }
.meta { color:var(--brand); font-size:.85rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.card p { color:var(--muted); }
.text-link { color:var(--brand); font-weight:800; text-decoration:none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.stat-row { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:2rem; }
.stat { padding:1.3rem; background:#fff; border:1px solid var(--border); border-radius:14px; }
.stat strong { display:block; font-size:1.7rem; font-family:Georgia,serif; color:var(--brand); }
.band { background:var(--brand-dark); color:#fff; padding:3.8rem 0; }
.band-grid { display:grid; grid-template-columns:1fr auto; align-items:center; gap:2rem; }
.band h2 { margin-bottom:.45rem; }
.page-hero { padding:4rem 0 3rem; background:linear-gradient(145deg,#fff9f4,#f3e7dd); }
.page-hero h1 { font-size:clamp(2.4rem,4vw,4rem); margin-bottom:.7rem; }
.content-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:3rem; align-items:start; }
.prose h2 { margin-top:2.5rem; }
.prose ul { padding-left:1.2rem; }
.price-card { padding:1.8rem; text-align:center; }
.price { font: 800 2.6rem/1 Georgia,serif; color:var(--brand); margin:.8rem 0; }
.badge { display:inline-block; padding:.3rem .7rem; border-radius:999px; background:#f4e4d5; color:var(--brand-dark); font-weight:800; font-size:.78rem; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
label { display:block; font-weight:750; margin-bottom:.35rem; }
input, select, textarea {
  width:100%; border:1px solid #cfc6bd; border-radius:10px; padding:.8rem .9rem; background:#fff;
}
textarea { min-height:150px; resize:vertical; }
.full { grid-column:1/-1; }
.notice { padding:1rem 1.1rem; background:#fff7df; border-left:4px solid var(--gold); border-radius:8px; }
.faq details { border-bottom:1px solid var(--border); padding:1rem 0; }
.faq summary { cursor:pointer; font-weight:800; font-size:1.05rem; }
.sponsor-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; }
.sponsor-grid .placeholder { min-height:120px; font-size:.8rem; }
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(13, 14, 18, .78);
}
.promo-modal[hidden] { display: none; }
.promo-modal__backdrop {
  position: absolute;
  inset: 0;
}
.promo-modal__dialog {
  position: relative;
  width: min(94vw, 680px);
  max-height: calc(100dvh - 2rem);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
  overflow: hidden;
  z-index: 1;
}
.promo-modal__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 2rem);
  object-fit: contain;
}
.promo-modal__close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 18, 15, .92);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}
.promo-modal__close:hover { background: #000; }
.no-scroll {
  overflow: hidden;
}
.site-footer { background:#201815; color:#fff; padding:3.7rem 0 1.5rem; }
.footer-grid { display:grid; grid-template-columns:1.3fr .8fr .9fr; gap:2.5rem; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links a { color:#f0e8e3; text-decoration:none; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.15); margin-top:2.5rem; padding-top:1.2rem; color:#c9beb8; font-size:.9rem; }
@media (max-width: 960px) {
  .nav-toggle { display:block; }
  .nav-menu {
    display:none; position:absolute; left:0; right:0; top:76px; background:#fff;
    flex-direction:column; align-items:stretch; padding:1rem 1.2rem 1.4rem; border-bottom:1px solid var(--border);
  }
  .nav-menu.is-open { display:flex; }
  .hero-grid,.content-grid { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:repeat(2,1fr); }
  .sponsor-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 640px) {
  .brand-copy { display:none; }
  .hero { padding-top:3.4rem; }
  .hero .placeholder { min-height:280px; }
  section { padding:3.5rem 0; }
  .grid-3,.grid-2,.stat-row,.footer-grid,.form-grid,.band-grid { grid-template-columns:1fr; }
  .full { grid-column:auto; }
  .section-head { align-items:start; flex-direction:column; }
  .sponsor-grid { grid-template-columns:repeat(2,1fr); }
  .promo-modal {
    padding: .75rem;
  }
  .promo-modal__dialog {
    width: min(95vw, 680px);
    border-radius: 18px;
  }
  .promo-modal__close {
    top: .6rem;
    right: .6rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}
