/* Deloraine 2000 Club — CG Services build
   Brand: black + gold, clean and sporty. No dark photo overlays (text in cards). */

:root {
  --black: #141414;
  --ink: #1d1d1d;
  --gold: #f2a900;
  --gold-deep: #c8860a;
  --grey: #6b6b6b;
  --line: #e6e6e6;
  --cream: #faf9f6;
  --white: #ffffff;
  --maxw: 1140px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
h1, h2, h3, .display { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: 0; }
img { max-width: 100%; display: block; }
a { color: var(--gold-deep); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--black);
  border-bottom: 3px solid var(--gold);
}
.nav {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 54px; width: 54px; object-fit: contain; }
.logo-img { max-width: 300px; width: 100%; margin: 0 auto; display: block; }
.shot { width: 100%; display: block; object-fit: cover; border-radius: 12px; }
.shot.wide { aspect-ratio: 16 / 9; }
.card .shot { border-radius: 0; }
.brand .ph-logo {
  height: 46px; width: 46px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--gold), var(--gold-deep));
  display: grid; place-items: center; color: var(--black); font-family: "Oswald",sans-serif; font-size: 11px; font-weight: 700;
}
.brand b { color: var(--white); font-family: "Oswald", sans-serif; font-size: 20px; letter-spacing: .5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: .6px; padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.has-drop { position: relative; }
.has-drop > a { display: inline-flex; align-items: center; gap: 7px; }
.has-drop > a::after { content: "▾"; color: var(--gold); font-size: 12px; display: inline-block; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.has-drop:hover > a::after, .has-drop:focus-within > a::after { transform: rotate(180deg); }
/* Dropdown opens with a slide-down (window-shade) motion */
.drop { position: absolute; top: 100%; left: 0; background: var(--black); border: 1px solid #2a2a2a; border-top: 2px solid var(--gold); min-width: 220px; padding: 6px 0; box-shadow: 0 18px 36px rgba(0,0,0,.40); overflow: hidden; max-height: 0; visibility: hidden; transition: max-height .42s cubic-bezier(.2,.7,.3,1), visibility .42s; pointer-events: none; }
.has-drop:hover .drop, .has-drop:focus-within .drop { max-height: 280px; visibility: visible; pointer-events: auto; }
.drop a { transition: background .15s ease, padding-left .15s ease; }
.drop a:hover { background: #1f1f1f; padding-left: 24px; }
.drop a { display: block; padding: 8px 18px; text-transform: uppercase; letter-spacing: .6px; font-weight: 500; }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 26px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 58vh; display: grid; place-items: center; background: #2b2b2b; overflow: hidden; }
.hero .ph-hero { position: absolute; inset: 0; background:
  repeating-linear-gradient(45deg, #cBcBcB 0 28px, #c2c2c2 28px 56px);
  display: grid; place-items: center; color: #555; font-family: "Oswald",sans-serif; }
.hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .hero-inner { position: relative; z-index: 2; text-align: center; padding: 40px 20px; }
.hero h1 { color: var(--white); font-size: clamp(44px, 8vw, 104px); text-transform: uppercase; text-shadow: 0 2px 6px rgba(0,0,0,.65), 0 4px 28px rgba(0,0,0,.55); margin: 0; }
.hero .kicker { display: flex; align-items: center; justify-content: center; gap: 20px; color: var(--gold); font-family: "Playfair Display", serif; font-style: italic; font-weight: 600; letter-spacing: 1px; font-size: clamp(22px, 3vw, 30px); margin-top: 16px; }
.hero .hero-sub { color: #fff; max-width: 660px; margin: 16px auto 0; font-size: clamp(15px, 2vw, 18px); font-weight: 500; text-shadow: 0 2px 10px rgba(0,0,0,.8); }
.hero .kicker::before, .hero .kicker::after { content: ""; display: block; width: clamp(36px, 6vw, 70px); height: 2px; background: var(--gold); flex: none; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.alt { background: var(--cream); }
section.dark { background: var(--black); }
#impact .card .cap { min-height: 104px; display: flex; flex-direction: column; justify-content: center; }
.dark .sec-title { color: #fff; }
.dark .lead { color: #cfcfcf; }
.dark .note-faint { color: #8a8a8a !important; }
.stats .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 38px; }
.stats .stat { text-align: center; }
.stats .num { font-family: "Oswald", sans-serif; font-weight: 700; color: var(--gold); font-size: clamp(34px, 5vw, 52px); line-height: 1; }
.stats .lbl { color: #cfcfcf; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; margin-top: 10px; line-height: 1.35; }
@media (max-width: 760px) { .stats .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
.sec-title { text-align: center; font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; margin: 0 0 8px; }
.sec-title .bar { display: block; width: 64px; height: 4px; background: var(--gold); margin: 14px auto 0; border-radius: 2px; }
.lead { max-width: 760px; margin: 0 auto; text-align: center; color: #333; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
#what-we-do .card .cap { min-height: 116px; display: flex; flex-direction: column; justify-content: center; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-group-title { font-family: var(--font-head); text-transform: uppercase; font-size: 20px; color: var(--gold-deep); margin: 36px 0 14px; letter-spacing: .3px; }
.faq-group-title.first { margin-top: 0; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: var(--gold); box-shadow: 0 10px 26px rgba(0,0,0,.07); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 17px 20px; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); }
.faq-q .ic { color: var(--gold-deep); font-size: 26px; line-height: 1; flex: none; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.2,.7,.3,1); }
.faq-a-inner { padding: 2px 20px 18px; color: #444; font-size: 15.5px; line-height: 1.65; }
.faq-a-inner .pending { color: var(--grey); font-style: italic; }
.faq-a a { color: var(--gold-deep); font-weight: 600; }

/* Cards */
.card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease; }
a.card { display: block; text-decoration: none; color: inherit; }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0,0,0,.15); }
.card .shot { transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.card:hover .shot { transform: scale(1.06); }
a.card .date { color: var(--gold-deep); font-weight: 600; }
.card .cap { padding: 16px; text-align: center; }
.card .cap h3 { margin: 0 0 4px; font-size: 21px; text-transform: uppercase; }
.card .cap .desc { color: var(--gold-deep); font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.card .cap .date { color: var(--grey); font-size: 14px; text-wrap: pretty; }

/* Photo placeholder */
.ph {
  aspect-ratio: 4 / 3; width: 100%;
  background: linear-gradient(135deg, #efefef, #e2e2e2);
  border: 1px dashed #c2c2c2;
  display: grid; place-items: center; text-align: center;
  color: #8a8a8a; font-size: 13px; font-family: "Oswald", sans-serif; letter-spacing: .5px; padding: 12px;
}
.ph.tall { aspect-ratio: 3 / 4; }
.ph.wide { aspect-ratio: 16 / 9; }
.ph.logo { aspect-ratio: 1; border-radius: 50%; max-width: 280px; margin: 0 auto; }

/* Buttons */
.btn { display: inline-block; background: var(--gold); color: var(--black); font-family: "Oswald",sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; padding: 15px 34px; border-radius: 8px; border: 2px solid var(--gold); transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease; }
.btn:hover { background: var(--black); color: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.22); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn.ghost { background: transparent; color: var(--white); border-color: var(--gold); }
.btn.ghost:hover { background: var(--gold); color: var(--black); }

/* ---------- Raffle feature ---------- */
.raffle { background: var(--black); color: var(--white); }
.raffle .two-col { align-items: start; }
.raffle .sec-title { color: var(--white); }
.raffle .prize { font-family: "Oswald",sans-serif; font-size: clamp(22px,3.5vw,38px); color: var(--gold); text-transform: uppercase; line-height: 1.08; margin: 6px 0 18px; }
.raffle .prize small { display:block; color:#cfcfcf; font-size: 16px; letter-spacing: 2px; font-weight: 400; margin-top: 14px; }
.raffle ul.cause { list-style: none; padding: 0; margin: 22px 0; }
.raffle ul.cause li { padding: 11px 0 11px 24px; position: relative; border-bottom: 1px solid #2a2a2a; font-size: 17px; }
.raffle ul.cause li::before { content: ""; position: absolute; left: 2px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.raffle .fineprint { color: #9a9a9a; font-size: 13px; margin-top: 18px; }
.draw-pill { display:inline-block; border:1px solid var(--gold); color: var(--gold); border-radius: 999px; padding: 6px 18px; font-family:"Oswald",sans-serif; letter-spacing:1px; text-transform:uppercase; font-size:14px; }
.raffle .cta-row { display: flex; align-items: stretch; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.raffle .cta-row > .btn { display: flex; align-items: center; justify-content: center; }
.qr-inline { display: inline-flex; align-items: center; gap: 14px; background: #fff; padding: 10px 14px; border-radius: 10px; }
.qr-inline img { width: 120px; height: 120px; display: block; }
.qr-inline span { color: var(--black); font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; max-width: 90px; line-height: 1.25; }

/* Committee grid */
.committee { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member .ph { aspect-ratio: 1; border-radius: 10px; }
.member .shot { aspect-ratio: 1; border-radius: 10px; object-fit: cover; }
.member .name { text-align: center; font-weight: 600; margin-top: 10px; font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 16px; letter-spacing: .5px; }
.member { transition: transform .28s cubic-bezier(.2,.7,.3,1); }
.member .shot, .member .ph { transition: box-shadow .22s ease, border-color .22s ease; }
.member:hover { transform: translateY(-5px); }
.member:hover .shot { box-shadow: 0 0 0 3px var(--gold); }
.member:hover .ph { border-color: var(--gold); color: var(--gold-deep); }
.member:hover .name { color: var(--gold-deep); }

/* Dinner block */
.dinner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.dinner .info h3 { font-size: 30px; text-transform: uppercase; margin: 0 0 6px; }
.dinner .info .stars { color: var(--gold-deep); font-weight: 700; }
.dinner .info .meta { margin: 14px 0; }
.dinner .info .meta div { padding: 4px 0; }

/* Photo grid */
.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* ---------- Get Involved / inquiry form ---------- */
.involve-form { max-width: 640px; margin: 36px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); text-align: left; }
.involve-form label { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .5px; font-size: 13px; color: #444; margin-bottom: 16px; }
.involve-form input, .involve-form select, .involve-form textarea { display: block; width: 100%; margin-top: 7px; padding: 11px 13px; border: 1px solid #d6d6d6; border-radius: 8px; font-family: inherit; font-size: 16px; color: var(--ink); background: #fff; }
.involve-form textarea { resize: vertical; }
.involve-form input:focus, .involve-form select:focus, .involve-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(242,169,0,.18); }
.involve-form .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.involve-form button.btn { margin-top: 6px; cursor: pointer; width: 100%; }
.involve-form .hp { position: absolute; left: -9999px; }
@media (max-width: 560px) { .involve-form .frow { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #cfcfcf; padding: 56px 0 30px; border-top: 3px solid var(--gold); }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: var(--white); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; margin: 0 0 12px; }
.site-footer a { color: #cfcfcf; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer .tagline { color: var(--gold); font-family: "Oswald",sans-serif; letter-spacing: 2px; text-transform: uppercase; }
.site-footer .footer-logo { width: 190px; height: auto; display: block; margin: 0 0 10px; }
.site-footer .legal { border-top: 1px solid #2a2a2a; margin-top: 32px; padding-top: 18px; font-size: 13px; color: #8a8a8a; text-align: center; }

/* ---------- Hero date pill · eyebrow · big names ---------- */
.hero-pill { display: inline-block; margin-top: 20px; padding: 8px 22px; border: 1.5px solid var(--gold); border-radius: 999px; background: transparent; color: #fff; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; text-shadow: 0 1px 8px rgba(0,0,0,.7); }
.eyebrow { font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: 2.5px; color: #8a817a; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.names-hero { font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase; font-size: clamp(34px, 5vw, 56px); line-height: 1.04; margin: 0 0 2px; }
.names-hero .amp { color: var(--grey); font-weight: 400; }

/* ---------- Motion + depth ---------- */
.site-header { transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 28px rgba(0,0,0,.30); }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero .hero-img { animation: kenburns 22s ease-in-out infinite alternate; transform-origin: center; }
@keyframes heroRise { from { transform: translateY(34px); } to { transform: none; } }
.hero .hero-inner h1 { animation: heroRise 1s cubic-bezier(.2,.7,.3,1) forwards; }
.hero .hero-inner .kicker { animation: heroRise 1s cubic-bezier(.2,.7,.3,1) .2s forwards; }
@media (prefers-reduced-motion: reduce) { .hero .hero-inner h1, .hero .hero-inner .kicker { animation: none !important; } }
.js .sec-title, .js .lead, .js .card, .js .soon, .js .fact, .js .member, .js .involve-form, .js .dinner .info, .js .draw-pill, .js .prize, .js .cause li, .js .meta, .js .logo-img, .js .stats .stat { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .is-in { opacity: 1 !important; transform: none !important; }
/* Directional reveal: a two-column row slides in from opposite sides.
   Used sparingly (#purpose, #join) so it stays a highlight, not a tic. */
.js .col-reveal { opacity: 0; transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.js .col-reveal.from-left  { transform: translateX(-38px); }
.js .col-reveal.from-right { transform: translateX(38px); }
/* Children inside a sliding column stay put so the column moves as one piece
   (their .is-in still fires, which keeps the sec-title underline draw). */
.js .col-reveal .sec-title, .js .col-reveal .logo-img, .js .col-reveal .involve-form { opacity: 1; transform: none; transition: none; }
/* Stacked layout: no sideways travel, it would push the page wide. */
@media (max-width: 860px) {
  .js .col-reveal.from-left, .js .col-reveal.from-right { transform: translateY(24px); }
}
/* Once revealed, switch cards/tiles to a snappy transition so hover lifts feel responsive */
.js .card.is-in, .js .member.is-in { transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease; }
/* Section underline draws in as its title reveals */
.js .sec-title .bar { width: 0; transition: width .6s cubic-bezier(.2,.7,.3,1) .2s; }
.js .sec-title.is-in .bar { width: 64px; }
/* Impact stats: gentle hover pop on the number */
.stats .num { transition: transform .25s ease, color .25s ease; }
.stats .stat:hover .num { transform: scale(1.08); color: #ffba1a; }
@media (prefers-reduced-motion: reduce) {
  .hero .hero-img { animation: none !important; }
  .js .sec-title, .js .lead, .js .card, .js .soon, .js .fact, .js .member, .js .involve-form, .js .dinner .info, .js .draw-pill, .js .prize, .js .cause li, .js .meta, .js .logo-img, .js .stats .stat, .js .col-reveal { opacity: 1 !important; transform: none !important; }
  .js .sec-title .bar { width: 64px !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--black); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 0; border-bottom: 3px solid var(--gold); }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; width: 100%; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; max-height: none; overflow: visible; pointer-events: auto; box-shadow: none; border: 0; border-top: 1px solid #2a2a2a; background: #1c1c1c; }
  .has-drop > a::after { content: ""; }
  .two-col, .three-col, .dinner, .photo-grid, .soon-grid { grid-template-columns: 1fr; gap: 28px; }
  .four-col, .committee { grid-template-columns: repeat(2, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
}

/* Gold cursor halo — soft light that follows the mouse over the black sections.
   Gated to dark sections in site.js (opacity toggles); screen blend keeps text
   readable. Hidden on touch devices. */
#cursor-glow{
  position: fixed; top: 0; left: 0;
  width: 190px; height: 190px;
  margin: -95px 0 0 -95px;         /* centre the halo on the cursor */
  border-radius: 50%;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(circle,
    rgba(242,169,0,.14) 0%,
    rgba(242,169,0,.06) 40%,
    rgba(242,169,0,0)   72%);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
@media (hover: none), (prefers-reduced-motion: reduce){ #cursor-glow{ display: none; } }

/* Coming-soon project cards */
.soon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.soon { background: #151515; border: 1px solid #2f2f2f; border-left: 4px solid var(--gold); border-radius: 12px; padding: 26px 28px; }
.soon-pill { display: inline-block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; font-weight: 600; color: var(--black); background: var(--gold); padding: 5px 12px; border-radius: 999px; }
.soon h3 { margin: 14px 0 8px; font-size: 22px; text-transform: uppercase; color: #fff; }
.soon p { margin: 0; color: #cfcfcf; font-size: 15px; line-height: 1.6; text-wrap: pretty; }
#speakers p { text-wrap: pretty; }
/* Photo grid: a lone final image spans the full width rather than sitting half-empty */
.photo-grid img:last-child:nth-child(odd) { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
@media (max-width: 860px) { .photo-grid img:last-child:nth-child(odd) { aspect-ratio: 16 / 9; } }
@media (max-width: 860px) { .soon-grid { grid-template-columns: 1fr; } }
/* Typography polish: no lone word on the last line of a heading or paragraph */
.sec-title { text-wrap: balance; }
.lead, .card .cap .desc, .soon p { text-wrap: pretty; }
/* One warm background for every light section: the cream/white alternation is gone,
   and white cards carry the contrast instead. Consecutive light sections read as one
   block, so the doubled padding between them collapses. */
section.alt { background: var(--cream); }
section:not(.dark):not(.raffle):not(.hero) + section:not(.dark):not(.raffle):not(.hero) { padding-top: 28px; }
section:not(.dark):not(.raffle):not(.hero):has(+ section:not(.dark):not(.raffle):not(.hero)) { padding-bottom: 36px; }

.thanks-logo { max-width: 300px; width: 100%; margin: 0 auto; }
/* Dinner page: the table inquiry sits lighter than the speaker-partner section below it */
#inquire .involve-form { max-width: 560px; }
#inquire .lead { max-width: 640px; margin-left: auto; margin-right: auto; }
/* Speaker-partner blurb sits centred in its half, balancing the centred logo opposite */
.thanks-copy { text-align: center; max-width: 480px; margin: 0 auto; }

/* ============================================================
   VARIANT B (/sportsmans-dinner-b/) — scoped, does not touch
   the approved page. Remove this block if variant B is dropped.
   ============================================================ */

/* Quick-facts tiles on the dark band */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fact { background: #1c1c1c; border: 1px solid #2f2f2f; border-radius: 12px; padding: 26px 22px; text-align: center; transition: transform .28s cubic-bezier(.2,.7,.3,1), border-color .28s ease; }
.fact:hover { transform: translateY(-5px); border-color: var(--gold); }
.fact svg { width: 30px; height: 30px; margin: 0 auto 14px; display: block; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.fact .k { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1.2px; font-size: 12px; color: var(--gold); margin-bottom: 6px; }
.fact .v { color: #f2f2f2; font-size: 17px; line-height: 1.45; text-wrap: pretty; }
@media (max-width: 860px) { .facts { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }

/* Feature cards */
.card.feature .cap { padding: 30px 26px; }
.card.feature svg { width: 34px; height: 34px; margin: 0 auto 16px; display: block; fill: none; stroke: var(--gold-deep); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card.feature h3 { margin: 0 0 10px; }
.card.feature p { margin: 0; color: var(--grey); font-size: 15.5px; line-height: 1.6; text-wrap: pretty; }

/* Inquiry form on the dark band */
#inquire.dark .lead { color: #cfcfcf; }

/* Bigger primary call to action, and a poster that responds to hover */
.btn-lg { padding: 18px 44px; font-size: 18px; }
.poster-tilt { transition: transform .45s cubic-bezier(.2,.7,.3,1), box-shadow .45s ease; border-radius: 12px; }
.poster-tilt:hover { transform: rotate(-1deg) scale(1.02); box-shadow: 0 24px 48px rgba(0,0,0,.28); }
