/* Happy Campers Australia — rebuild 2026 · Design system: Option B "Campfire"
   Fraunces (display serif) + DM Sans (body). Brand orange #F26522, charcoal #1d1f21,
   cool light-grey wash #eef1f2, white base. Warm editorial feel.
   NO cream/beige (the two warm neutrals from the exploration file are cooled here).
   Photos sit in rounded-asymmetric frames with soft shadow, no borders.
   No thin-outlined boxes, no glow, no bracket shapes. */

:root {
  --orange: #F26522;
  --orange-dk: #e0561a;
  --char: #1d1f21;
  --paper: #ffffff;
  --wash: #eef1f2;      /* cool light grey */
  --wash-2: #e3e7e9;    /* cool hairline / divider (was warm #e9e2da) */
  --muted: #5c6266;
  --foot: #b9c0c2;      /* cool footer text (was warm #cabfb4) */
  --wrap: 1180px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--char); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--char); color: #fff; padding: 10px 16px; z-index: 100; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: saturate(1.1) blur(6px); border-bottom: 1px solid var(--wash-2); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px clamp(20px,5vw,56px); max-width: var(--wrap); margin: 0 auto; }
.brand { display: flex; align-items: center; color: var(--char); flex: 0 0 auto; }
.brand__logo { height: 50px; width: auto; display: block; }
@media (max-width: 400px) { .brand__logo { height: 42px; } }
.nav-toggle { display: none; background: transparent; border: 0; color: var(--char); font-size: 1.6rem; cursor: pointer; padding: 4px 8px; }
.main-nav ul { list-style: none; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.main-nav a { color: var(--char); font-weight: 500; font-size: .95rem; padding: 6px 2px; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--orange); }
.main-nav .nav-cta { background: var(--orange); color: #fff; padding: 9px 18px; border-radius: 40px; font-weight: 700; }
.main-nav .nav-cta:hover { background: var(--orange-dk); color: #fff; }
.main-nav .nav-cta[aria-current="page"] { color: #fff; background: var(--orange-dk); }
@media (max-width: 900px) {
  .nav-toggle { display: block; flex: 0 0 auto; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: var(--paper); display: none; padding: 10px clamp(16px,5vw,24px) 18px; border-bottom: 1px solid var(--wash-2); box-shadow: 0 20px 40px -24px rgba(20,53,42,.25); max-height: calc(100vh - 68px); overflow-y: auto; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; margin: 0; padding: 0; flex-wrap: nowrap; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; width: 100%; padding: 13px 14px; border-radius: 10px; font-size: 1rem; }
  .main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--wash); }
  .main-nav .nav-cta { display: block; width: 100%; text-align: center; margin-top: 8px; }
  .main-nav .nav-cta:hover, .main-nav .nav-cta[aria-current="page"] { background: var(--orange-dk); color: #fff; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; padding: 15px 28px; border-radius: 40px; font-size: 1rem; cursor: pointer; border: 0; font-family: var(--sans); }
.btn--pri { background: var(--orange); color: #fff; } .btn--pri:hover { background: var(--orange-dk); color: #fff; }
.btn--onorange { background: #fff; color: var(--orange); } .btn--onorange:hover { background: #f4f4f4; color: var(--orange); }
.btn--link { color: var(--char); padding-left: 0; padding-right: 0; } .btn--link:hover { color: var(--orange); }
.btn--dark { background: var(--char); color: #fff; } .btn--dark:hover { background: #33373a; color: #fff; }

/* ---------- Shared typographic bits ---------- */
.tag { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--orange); font-size: .94rem; margin-bottom: 16px; letter-spacing: .01em; }
.tag::before { content: ""; width: 34px; height: 2px; background: var(--orange); flex: none; }
.pill { display: inline-block; background: #fff; color: var(--orange); font-weight: 700; padding: 8px 16px; border-radius: 30px; font-size: .85rem; margin-bottom: 18px; box-shadow: 0 6px 18px -8px rgba(0,0,0,.2); }
h1, h2, h3 { font-family: var(--serif); font-weight: 900; line-height: 1.05; letter-spacing: -.01em; }
h1 em, h2 em { font-style: italic; color: var(--orange); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.6; color: var(--muted); max-width: 48ch; }

/* ---------- Photo frames (rounded-asymmetric, soft shadow, no border) ---------- */
.frame { box-shadow: 0 26px 54px -28px rgba(60,40,20,.5); overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame--br { border-radius: 14px 14px 100px 14px; }   /* hero */
.frame--bl { border-radius: 120px 14px 14px 14px; }   /* pie / shop */
.frame--tr { border-radius: 14px 120px 14px 14px; }   /* story */
.frame--soft { border-radius: 14px; }

/* photo pending placeholder (cool wash fill, no outline) */
.photo-ph { display: grid; place-items: center; text-align: center; background: var(--wash); color: var(--muted); border-radius: 14px; min-height: 240px; padding: 26px; }
.photo-ph .ph-label { font-weight: 700; color: var(--orange); letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; }
.photo-ph .ph-file { font-size: .9rem; margin-top: 6px; }
.photo-ph .ph-icon { font-size: 2rem; margin-bottom: 8px; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(24px,5vw,64px); padding: clamp(40px,6vw,88px) clamp(20px,5vw,56px); max-width: var(--wrap); margin: 0 auto; }
.hero h1 { font-size: clamp(38px, 5.4vw, 72px); }
.hero .lead { margin-top: 22px; }
.hero .actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .art { position: relative; }
.hero .art .badge { position: absolute; left: -18px; bottom: 26px; background: var(--char); color: #fff; font-family: var(--serif); font-weight: 600; font-style: italic; padding: 14px 22px; border-radius: 40px; font-size: 1.1rem; box-shadow: 0 14px 30px -12px rgba(0,0,0,.5); }
@media (max-width: 820px) { .hero { grid-template-columns: 1fr; } .hero .art { order: -1; } }

/* ---------- Bands (full-bleed sections) ---------- */
.band { padding: clamp(48px,7vw,92px) 0; }
.band--wash { background: var(--wash); }
.band--orange { background: var(--orange); color: #fff; }
.band--char { background: var(--char); color: #fff; }
.band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,5vw,60px); align-items: center; }
.band__grid--wide-l { grid-template-columns: 1fr 1.05fr; }
.band__grid--wide-r { grid-template-columns: 1.05fr 1fr; }
.band h2 { font-size: clamp(30px,4vw,50px); }
.band p.body { margin-top: 16px; color: var(--muted); font-size: 1.1rem; line-height: 1.6; max-width: 46ch; }
.band--orange p.body, .band--char p.body { color: rgba(255,255,255,.92); }
@media (max-width: 820px) { .band__grid, .band__grid--wide-l, .band__grid--wide-r { grid-template-columns: 1fr; } .band__grid.reverse .art { order: -1; } }

/* ---------- Section (plain) ---------- */
.section { padding-block: clamp(52px,7vw,96px); }
.section .head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 12px; }
.section .head h2 { font-size: clamp(30px,4vw,52px); }
.section .head .intro { color: var(--muted); max-width: 52ch; margin-top: 10px; }
.section .head a.more { color: var(--orange); font-weight: 700; }

/* ---------- Video grids ---------- */
.vids { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.vid { color: inherit; }
.vid .thumb { position: relative; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; background: linear-gradient(150deg, var(--orange), var(--char)); display: grid; place-items: center; transition: transform .4s ease; }
.vid:hover .thumb { transform: translateY(-6px); }
.vid .thumb img { width: 100%; height: 100%; object-fit: cover; }
.vid .play { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,0,0,.5); display: grid; place-items: center; color: #fff; font-size: 1.4rem; }
.vid h3 { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; margin-top: 14px; line-height: 1.25; }
.vid span { color: var(--muted); font-size: .86rem; }

.feed-note { margin-top: 20px; color: var(--muted); font-size: .9rem; }
.feed-status { text-align: center; color: var(--muted); padding: 26px; }

/* Live YouTube feed cards (rendered by youtube-feed.js) */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.video-card { color: inherit; text-decoration: none; display: block; }
.video-card__thumb { position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: linear-gradient(150deg, var(--orange), var(--char)); display: grid; place-items: center; transition: transform .4s ease; }
.video-card:hover .video-card__thumb { transform: translateY(-6px); }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,0,0,.5); display: grid; place-items: center; color: #fff; font-size: 1.4rem; }
.video-card__body { padding-top: 12px; }
.video-card__title { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; line-height: 1.25; }
.video-card__meta { color: var(--muted); font-size: .86rem; margin-top: 4px; }

/* ---------- State pills ---------- */
.staterow { display: flex; flex-wrap: wrap; gap: 12px; }
.staterow a { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; padding: 14px 26px; border-radius: 40px; background: var(--wash); transition: .25s; }
.staterow a:hover { background: var(--orange); color: #fff; }

/* ---------- Prose ---------- */
.prose { max-width: 62ch; }
.prose p { margin-bottom: 18px; font-size: 1.08rem; }
.prose h2 { font-size: clamp(28px,3.4vw,44px); margin: 6px 0 14px; }

/* ---------- Feature trio ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .trio { grid-template-columns: 1fr; } }
.feature { background: var(--wash); border-radius: 14px; padding: 28px 26px; }
.feature .ficon { font-size: 1.8rem; margin-bottom: 10px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 8px; }
.feature p { color: var(--muted); }
.feature a { color: var(--orange); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-form { max-width: 620px; background: var(--wash); padding: 32px; border-radius: 14px; }
.contact-form label { display: block; font-weight: 700; margin-bottom: 6px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 15px; border-radius: 10px; border: 2px solid var(--wash-2); font-family: inherit; font-size: 1rem; background: #fff; color: var(--char); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); }
.contact-form textarea { min-height: 140px; resize: vertical; }
/* Honeypot: kept in the DOM (bots fill it) but away from people and the tab order.
   Not display:none — many bots skip hidden fields, so we move it off-screen instead. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.cf-turnstile { margin: 4px 0 2px; }
/* Inline result under the form. Tinted fill + full radius, no partial border (no brackets). */
.form-status { margin: 0 0 16px; padding: 12px 16px; border-radius: 10px; font-weight: 600; }
.form-status--pending { background: var(--wash-2); color: var(--muted); }
.form-status--ok { background: #e4f3ea; color: #1f7a44; }
.form-status--error { background: #fce8e6; color: #b3261e; }
.follow-set { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.follow-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--char); color: #fff; padding: 11px 20px; border-radius: 40px; font-weight: 700; }
.follow-btn:hover { background: var(--orange); color: #fff; }

/* ---------- Blog archive ---------- */
.archive-intro { background: var(--wash); border-radius: 14px; padding: 20px 24px; margin-bottom: 30px; color: var(--muted); }
.year-group { margin-bottom: 34px; }
.year-group h2 { font-size: 1.9rem; display: inline-block; padding-bottom: 4px; margin-bottom: 16px; border-bottom: 3px solid var(--orange); }
.post-list { list-style: none; display: grid; gap: 10px; }
.post-list li { display: flex; gap: 14px; align-items: baseline; background: var(--wash); padding: 13px 18px; border-radius: 10px; min-width: 0; }
.post-list a { font-weight: 600; font-family: var(--serif); font-size: 1.08rem; min-width: 0; overflow-wrap: anywhere; }
.post-list a:hover { color: var(--orange); }
.post-list time { font-size: .82rem; color: var(--muted); white-space: nowrap; min-width: 92px; }

.post-body { max-width: 68ch; }
.post-body h1 { font-size: clamp(32px,4.2vw,52px); margin-bottom: 10px; }
.post-body .post-date { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.post-archived { background: var(--wash); border-radius: 14px; padding: 20px 24px; margin: 22px 0; color: var(--muted); }

/* ===== Blog post — STANDARD template (Campfire editorial) ===== */
.bp-cover { max-width: 1080px; margin: 0 auto; padding: clamp(28px,5vw,52px) clamp(20px,5vw,40px) 0; }
.bp-crumb { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.bp-cover h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(34px,5.2vw,60px); line-height: 1.03; letter-spacing: -.01em; margin: 14px 0 12px; max-width: 18ch; }
.bp-meta { color: var(--muted); font-weight: 600; font-size: 14px; display: flex; gap: 14px; align-items: center; }
.bp-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); }
.bp-article { max-width: 720px; margin: 0 auto; padding: clamp(28px,4vw,44px) clamp(20px,5vw,24px) 36px; font-size: 1.16rem; }
.bp-article .post-content > p:first-of-type::first-letter { font-family: var(--serif); font-weight: 900; float: left; font-size: 3.4em; line-height: .72; padding: 6px 12px 0 0; color: var(--orange); }
.post-content p { margin: 0 0 1.35em; color: #2a2d2f; }
.post-content h2, .post-content h3 { font-family: var(--serif); font-weight: 900; line-height: 1.15; margin: 1.6em 0 .5em; }
.post-content h2 { font-size: 1.7rem; } .post-content h3 { font-size: 1.35rem; }
.post-content a { color: var(--orange); font-weight: 700; }
.post-content ul, .post-content ol { margin: 0 0 1.2em 1.2em; } .post-content li { margin-bottom: 6px; }
.post-content img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 22px 44px -26px rgba(60,40,20,.5); margin: .4em 0; }
.fig { margin: 1.8em 0; }
.fig img, .gallery .g-item img { margin: 0; }
.fig img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 22px 44px -26px rgba(60,40,20,.5); }
.fig figcaption { color: var(--muted); font-size: .9rem; margin-top: 10px; text-align: center; }
.gallery { display: grid; gap: 14px; margin: 1.8em 0; }
.gallery.g-2 { grid-template-columns: 1fr 1fr; } .gallery.g-3 { grid-template-columns: repeat(3,1fr); }
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; aspect-ratio: 4/3; box-shadow: 0 16px 32px -22px rgba(60,40,20,.5); }
@media (max-width: 640px) { .gallery.g-2, .gallery.g-3 { grid-template-columns: 1fr; } }
.bp-endcap { max-width: 720px; margin: 0 auto; padding: 0 24px 20px; }
.bp-endcap .rule { height: 2px; background: var(--wash); margin-bottom: 20px; }
.bp-endcap a { color: var(--orange); font-weight: 700; }
.bp-nav { max-width: 720px; margin: 0 auto; padding: 0 24px 60px; color: var(--muted); }
.bp-nav a { color: var(--orange); font-weight: 700; }

/* fallback stub (only if a post has no captured body) */
.post-archived { background: var(--wash); border-radius: 14px; padding: 20px 24px; margin: 22px 0; color: var(--muted); }

/* ===== Shop ===== */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .shop-grid { grid-template-columns: 1fr; } }
.product { background: #fff; border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.product__img { aspect-ratio: 4/3; background: linear-gradient(150deg, var(--wash-2), var(--wash)); display: grid; place-items: center; overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: cover; }
.product__ph { display: grid; place-items: center; text-align: center; color: var(--muted); padding: 20px; gap: 6px; }
.product__ph .i { font-size: 2rem; }
.product__ph small { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--orange); }
.product__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product__name { font-family: var(--serif); font-weight: 900; font-size: 1.3rem; }
.product__blurb { color: var(--muted); font-size: .95rem; flex: 1; }
.product__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.product__price { font-family: var(--serif); font-weight: 900; font-size: 1.4rem; }
.cart-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; border: 0; font-weight: 700; padding: 9px 16px; border-radius: 40px; cursor: pointer; font-size: .95rem; }
.cart-btn:hover { background: var(--orange-dk); }
.cart-btn .count { background: #fff; color: var(--orange); border-radius: 40px; min-width: 20px; height: 20px; display: inline-grid; place-items: center; font-size: .78rem; padding: 0 5px; }
/* cart drawer */
.cart-scrim { position: fixed; inset: 0; background: rgba(15,16,17,.5); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 80; }
.cart-scrim.open { opacity: 1; visibility: visible; }
.cart { position: fixed; top: 0; right: 0; bottom: 0; width: min(410px, 94vw); background: #fff; box-shadow: -20px 0 60px -30px rgba(0,0,0,.5); transform: translateX(100%); transition: transform .28s ease; z-index: 81; display: flex; flex-direction: column; }
.cart.open { transform: none; }
.cart__head { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; background: var(--char); color: #fff; }
.cart__head h3 { font-family: var(--serif); font-weight: 900; font-size: 1.25rem; }
.cart__close { background: none; border: 0; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.cart__items { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 14px; }
.cart__empty { color: var(--muted); text-align: center; padding: 46px 10px; }
.citem { display: flex; gap: 12px; align-items: center; }
.citem__thumb { width: 58px; height: 58px; border-radius: 10px; background: var(--wash); object-fit: cover; flex: none; display: grid; place-items: center; font-size: 1.3rem; }
.citem__info { flex: 1; min-width: 0; }
.citem__name { font-weight: 700; font-size: .95rem; }
.citem__qty { display: flex; align-items: center; gap: 8px; margin-top: 5px; }
.citem__qty button { width: 26px; height: 26px; border-radius: 8px; border: 0; background: var(--wash); cursor: pointer; font-weight: 800; color: var(--char); }
.citem__qty button:hover { background: var(--wash-2); }
.citem__price { font-weight: 800; white-space: nowrap; }
.cart__foot { padding: 18px 22px; background: var(--wash); }
.cart__total { display: flex; justify-content: space-between; font-family: var(--serif); font-weight: 900; font-size: 1.25rem; margin-bottom: 12px; }
.cart__foot .btn { width: 100%; justify-content: center; }
/* Square checkout demo panel */
.sq-demo { background: var(--char); color: #fff; border-radius: 14px; padding: 22px; margin-top: 4px; }
.sq-demo .tagline { display: inline-block; background: var(--orange); color: #fff; font-weight: 800; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 40px; margin-bottom: 12px; }
.sq-demo h4 { font-family: var(--serif); font-weight: 900; font-size: 1.15rem; margin-bottom: 8px; }
.sq-demo p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 10px; }
.sq-demo .disabled-pay { width: 100%; text-align: center; background: rgba(255,255,255,.14); color: #fff; border: 0; border-radius: 40px; padding: 13px; font-weight: 700; cursor: not-allowed; margin-top: 6px; }

/* ===== Membership — Buy Us a Pie ===== */
.mbr-price-tag { display: inline-flex; align-items: baseline; gap: 6px; margin: 4px 0 18px; }
.mbr-price-tag .amt { font-family: var(--serif); font-weight: 900; font-size: clamp(40px,6vw,64px); line-height: 1; color: var(--char); }
.mbr-price-tag .per { color: var(--muted); font-weight: 700; }
.mbr-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
@media (max-width: 640px) { .mbr-benefits { grid-template-columns: 1fr; } }
.mbr-benefit { background: var(--wash); border-radius: 14px; padding: 18px 20px; }
.mbr-benefit .i { font-size: 1.5rem; margin-bottom: 6px; }
.mbr-benefit h3 { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.mbr-benefit p { color: var(--muted); font-size: .92rem; }
.mbr-form { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 28px; max-width: 460px; }
.mbr-form label { display: block; font-weight: 700; margin-bottom: 6px; }
.mbr-form .field { margin-bottom: 16px; }
.mbr-form input { width: 100%; padding: 13px 15px; border-radius: 10px; border: 2px solid var(--wash-2); font-family: inherit; font-size: 1rem; background: #fff; }
.mbr-form input:focus { outline: none; border-color: var(--orange); }
.mbr-pay-stub { background: var(--wash); border-radius: 12px; padding: 14px 16px; margin: 4px 0 16px; }
.mbr-pay-stub .lbl { font-weight: 800; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.mbr-pay-stub p { color: var(--muted); font-size: .88rem; margin-top: 4px; }
.mbr-confirm { background: var(--char); color: #fff; border-radius: 12px; padding: 18px 20px; margin-top: 16px; }
.mbr-confirm .lbl { font-weight: 800; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.mbr-confirm p { color: rgba(255,255,255,.88); font-size: .92rem; margin-top: 6px; }
.benefit-rows { display: grid; gap: 14px; }
.brow { display: flex; gap: 16px; align-items: center; background: #fff; box-shadow: var(--shadow); border-radius: 14px; padding: 18px 20px; }
.brow .bicon { width: 48px; height: 48px; border-radius: 12px; background: var(--wash); display: grid; place-items: center; font-size: 1.4rem; flex: none; }
.brow .bmain { flex: 1; }
.brow .bmain h3 { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.brow .bmain p { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.brow .pending { background: var(--wash); color: var(--muted); font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; padding: 6px 12px; border-radius: 40px; white-space: nowrap; }
.brow .code { background: var(--orange); color: #fff; font-weight: 800; font-size: .72rem; letter-spacing: .03em; padding: 6px 12px; border-radius: 40px; white-space: normal; word-break: break-word; max-width: 200px; text-align: center; flex: none; }
@media (max-width: 560px) { .brow { flex-wrap: wrap; } .brow .bmain { min-width: 0; } .brow .code, .brow .pending { max-width: 100%; } }

/* ===== Members admin dashboard (demo, login-gated in production) ===== */
.dash-banner { background: var(--char); color: #fff; border-radius: 14px; padding: 16px 22px; margin-bottom: 26px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.dash-banner .lbl { background: var(--orange); color: #fff; font-weight: 800; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 40px; white-space: nowrap; }
.dash-banner p { color: rgba(255,255,255,.85); font-size: .9rem; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
@media (max-width: 700px) { .dash-stats { grid-template-columns: 1fr; } }
.dash-stat { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 22px 24px; }
.dash-stat .l { color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; }
.dash-stat .v { font-family: var(--serif); font-weight: 900; font-size: clamp(30px,4vw,46px); line-height: 1; margin-top: 8px; }
.dash-stat .s { color: var(--muted); font-size: .85rem; margin-top: 6px; }
.dash-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.dash-toolbar h2 { font-size: clamp(22px,3vw,32px); }
.dash-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.dash-scroll { overflow-x: auto; }
.dash-table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 720px; }
.dash-table thead th { background: var(--char); color: #fff; text-align: left; padding: 14px 16px; font-family: var(--serif); font-weight: 600; font-size: .9rem; white-space: nowrap; }
.dash-table td { padding: 13px 16px; border-bottom: 1px solid var(--wash-2); vertical-align: middle; }
.dash-table tbody tr:last-child td { border-bottom: 0; }
.dash-table tbody tr:hover { background: var(--wash); }
.dash-table .nm { font-weight: 700; }
.dash-table .muted { color: var(--muted); }
.badge-status { display: inline-block; font-weight: 700; font-size: .76rem; padding: 4px 11px; border-radius: 40px; }
.badge-status.active { background: rgba(46,140,87,.15); color: #2F8C57; }
.badge-status.lapsed { background: rgba(193,80,46,.15); color: #C1502E; }
.dash-actions { display: flex; gap: 14px; white-space: nowrap; }
.dash-actions a { color: var(--orange); font-weight: 700; font-size: .85rem; }
.dash-actions a.mail { color: var(--muted); }
.export-panel { background: var(--wash); border-radius: 12px; padding: 16px 18px; margin-top: 18px; }
.export-panel .lbl { font-weight: 800; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.export-panel p { color: var(--muted); font-size: .88rem; margin: 6px 0; }
.export-panel textarea { width: 100%; min-height: 82px; border-radius: 10px; border: 2px solid var(--wash-2); padding: 10px; font-family: inherit; font-size: .85rem; margin-top: 8px; background: #fff; }

/* ===== Videos page — "Cinema" dark theatre (sits between light header/footer) ===== */
.videos-theatre { background: #0f1011; color: #f3f1ec; }
.videos-theatre .vt-inner { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }
.vt-theatre { padding: clamp(24px,4vw,44px) 0 8px; text-align: center; }
.vt-tag { color: var(--orange); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: 12px; }
.vt-stage { position: relative; max-width: 1000px; margin: 16px auto 0; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #000; box-shadow: 0 40px 90px -30px rgba(0,0,0,.9); }
.vt-stage img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.vt-stage iframe { width: 100%; height: 100%; border: 0; display: block; }
.vt-play { position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; background: radial-gradient(circle at center, rgba(0,0,0,.15), rgba(0,0,0,.55)); border: 0; width: 100%; }
.vt-play span { width: 88px; height: 88px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 32px; padding-left: 6px; box-shadow: 0 0 0 10px rgba(242,101,34,.18); transition: transform .25s; }
.vt-play:hover span { transform: scale(1.08); }
.vt-stage > .vt-loading, .vt-stage > .vt-fallback { position: absolute; inset: 0; display: grid; place-content: center; gap: 8px; text-align: center; padding: 24px; color: #cfccc4; }
.vt-meta { max-width: 840px; margin: 22px auto 0; text-align: center; }
.vt-meta h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(24px,3.2vw,40px); line-height: 1.08; color: #f3f1ec; }
.vt-meta .stats { color: #a9afb3; font-weight: 600; font-size: 14px; display: flex; gap: 14px; justify-content: center; margin: 10px 0 12px; flex-wrap: wrap; }
.vt-meta p { color: #cfccc4; font-size: 16px; line-height: 1.6; max-width: 60ch; margin: 0 auto; }
.vt-strip { padding: clamp(30px,4vw,50px) 0 70px; }
.vt-strip .lbl { font-family: var(--serif); font-weight: 900; font-size: 20px; margin-bottom: 16px; }
.vt-film { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px; }
.vt-film::-webkit-scrollbar { height: 8px; } .vt-film::-webkit-scrollbar-thumb { background: #2c2f31; border-radius: 8px; }
.vt-card { flex: 0 0 240px; cursor: pointer; background: none; border: 0; padding: 0; text-align: left; color: inherit; font: inherit; }
.vt-card .t { position: relative; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; background: #191b1d; }
.vt-card .t img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .3s ease; }
.vt-card:hover .t img, .vt-card.active .t img { opacity: 1; }
.vt-card.active .t { outline: 3px solid var(--orange); outline-offset: 0; }
.vt-card h4 { font-weight: 600; font-size: 14.5px; line-height: 1.3; margin-top: 10px; color: #e7e4dd; }
.vt-card small { color: #a9afb3; font-size: 12.5px; }
@media (max-width: 820px) { .vt-card { flex-basis: 200px; } }

/* ===== Blog post — FINANCES template (expense series) ===== */
.fin-wrap { max-width: 900px; margin: 0 auto; padding: 0 clamp(20px,5vw,32px); }
.fin-top { padding: clamp(28px,5vw,48px) 0 clamp(18px,3vw,26px); }
.fin-crumb { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.fin-top h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(32px,5vw,54px); line-height: 1.02; margin: 12px 0 6px; }
.fin-date { color: var(--muted); font-weight: 600; font-size: 14px; }
.fin-hero { background: var(--char); color: #fff; border-radius: 18px; padding: clamp(24px,4vw,40px); margin: 8px 0 26px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; align-items: center; }
.fin-hero .big .l { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.fin-hero .big .v { font-family: var(--serif); font-weight: 900; font-size: clamp(38px,6vw,60px); line-height: 1; margin-top: 6px; }
.fin-hero .s .l { color: rgba(255,255,255,.65); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.fin-hero .s .v { font-family: var(--serif); font-weight: 700; font-size: clamp(22px,3vw,30px); margin-top: 4px; }
.fin-hero .s .v small { font-size: .5em; font-weight: 700; }
@media (max-width: 760px) { .fin-hero { grid-template-columns: 1fr 1fr; } .fin-hero .big { grid-column: 1/-1; } }
.fin-h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(22px,3vw,32px); margin: 6px 0 16px; }
.fin-stack { display: flex; height: 32px; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 26px -18px rgba(0,0,0,.5); }
.fin-stack span { height: 100%; } .fin-stack span:not(:last-child) { box-shadow: 1px 0 0 rgba(255,255,255,.6); }
.fin-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
@media (max-width: 640px) { .fin-legend { grid-template-columns: 1fr; } }
.fin-li { background: #fff; border-radius: 12px; box-shadow: 0 12px 26px -22px rgba(0,0,0,.4); padding: 15px 17px; }
.fin-li .row { display: flex; align-items: center; gap: 10px; }
.fin-li .dot { width: 13px; height: 13px; border-radius: 4px; flex: none; }
.fin-li .name { font-family: var(--serif); font-weight: 600; font-size: 17px; flex: 1; }
.fin-li .amt { font-weight: 800; font-size: 16px; } .fin-li .pct { color: var(--muted); font-weight: 600; font-size: 12.5px; margin-left: 6px; }
.fin-li .items { display: flex; flex-wrap: wrap; gap: 4px 14px; color: var(--muted); font-size: 13px; margin-top: 9px; padding-left: 23px; }
.fin-li .items b { color: var(--char); font-weight: 700; }
.fin-note { background: var(--wash); border-radius: 14px; padding: 22px 24px; margin: 26px 0; }
.fin-note .l { font-family: var(--serif); font-weight: 900; font-size: 17px; margin-bottom: 8px; }
.fin-note p { color: #33373a; font-size: 15.5px; margin-bottom: 10px; }
.fin-endcap { padding: 8px 0 60px; } .fin-endcap .rule { height: 2px; background: var(--wash); margin-bottom: 20px; } .fin-endcap a { color: var(--orange); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--char); color: var(--foot); padding: 54px 0 34px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .site-footer .cols { grid-template-columns: 1fr; gap: 24px; } }
.site-footer h4 { color: #fff; font-family: var(--serif); font-weight: 600; margin-bottom: 12px; font-size: 1.15rem; }
.footer__logo { height: 56px; width: auto; display: block; margin-bottom: 16px; }
.site-footer a { color: var(--foot); } .site-footer a:hover { color: var(--orange); }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; font-size: 1.05rem; color: #fff; }
.socials a:hover { background: var(--orange); }
.footer-bottom { margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); font-size: .84rem; color: var(--foot); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.stack-lg > * + * { margin-top: clamp(48px,7vw,92px); }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } }
