/* ============================================================
   Soul Fuel Juice — Design System
   Deep green · Sage · Gold · Cream — premium, natural, faith-inspired
   ============================================================ */

:root {
  --forest: #1C3527;
  --forest-2: #24452F;
  --forest-3: #2E5940;
  --sage: #8FA381;
  --sage-light: #C9D4BD;
  --gold: #C6A15B;
  --gold-deep: #8C6D2F;
  --cream: #FAF6ED;
  --cream-2: #F2EBDB;
  --white: #FFFFFF;
  --ink: #26231C;
  --ink-soft: #55503F;
  --berry: #6B1F3A;
  --carrot: #D97B29;
  --leaf: #4E7C3A;
  --danger: #B3261E;

  --font-head: "Lora", Georgia, serif;
  --font-body: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(28, 53, 39, 0.08);
  --shadow-md: 0 6px 24px rgba(28, 53, 39, 0.12);
  --shadow-lg: 0 18px 48px rgba(28, 53, 39, 0.18);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--forest-3); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold-deep); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; color: var(--forest); margin: 0 0 0.5em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.muted { color: var(--ink-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--cream2 { background: var(--cream-2); }
.section--forest { background: var(--forest); color: #EDE9DC; }
.section--forest h2, .section--forest h3 { color: var(--cream); }
.section--forest .muted { color: #C9C3AF; }

.eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--gold-deep);
  display: block;
  margin-bottom: 4px;
}
.section--forest .eyebrow, .hero .eyebrow { color: var(--gold); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--ink-soft); }
.section--forest .section-head p { color: #C9C3AF; }

.scripture {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--gold { background: var(--gold); color: var(--forest); }
.btn--gold:hover { background: #D3B26E; color: var(--forest); }
.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--forest-3); color: var(--cream); }
.btn--outline { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn--outline:hover { background: var(--forest); color: var(--cream); }
.btn--outline-light { border-color: rgba(250, 246, 237, 0.7); color: var(--cream); background: transparent; }
.btn--outline-light:hover { background: var(--cream); color: var(--forest); }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; min-height: 42px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 237, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 53, 39, 0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 42px; height: 42px; color: var(--forest); flex-shrink: 0; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; letter-spacing: 0.14em; color: var(--forest); line-height: 1.1; }
.brand-name { white-space: nowrap; }
.brand-name small { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.34em; color: var(--gold-deep); white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; color: var(--ink); padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover { color: var(--gold-deep); }
.main-nav a[aria-current="page"] { color: var(--forest); border-bottom-color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--forest);
  background: transparent; color: var(--forest); transition: background 0.2s, color 0.2s;
}
.cart-btn:hover { background: var(--forest); color: var(--cream); }
/* Icon-only buttons ship inline SVGs with only a viewBox; give them an explicit
   size so Safari (which otherwise renders viewBox-only SVGs at 0) shows the glyph. */
.cart-btn svg, .nav-toggle svg, .cart-close svg, .modal-close svg { width: 24px; height: 24px; display: block; }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 21px; height: 21px; padding: 0 5px;
  border-radius: 999px; background: var(--gold); color: var(--forest);
  font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; background: none; border: none; color: var(--forest); width: 46px; height: 46px; }

@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid rgba(28,53,39,0.12);
    padding: 8px 24px 20px; box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform 0.3s var(--ease);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 4px; font-size: 1rem; border-bottom: 1px solid rgba(28,53,39,0.08); }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--forest) url("../assets/img/hero-poster.jpg") center / cover no-repeat; }
.hero video, .hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero video { opacity: 0; transition: opacity 0.35s var(--ease); }
.hero video.is-playing { opacity: 1; }
/* hide any browser-added play button / controls on the ambient hero video */
.hero video::-webkit-media-controls,
.hero video::-webkit-media-controls-enclosure,
.hero video::-webkit-media-controls-panel,
.hero video::-webkit-media-controls-overlay-play-button,
.hero video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; appearance: none; opacity: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16, 33, 23, 0.88) 0%, rgba(16, 33, 23, 0.62) 46%, rgba(16, 33, 23, 0.3) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--cream); max-width: 640px; padding: 120px 0; }
.hero-content .scripture { color: var(--sage-light); margin-bottom: 14px; }
.hero-content h1 { color: var(--white); }
.hero-content h1 em { font-style: normal; color: var(--gold); }
.hero-content p.lead { font-size: 1.15rem; color: #E4DFCE; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
@media (max-width: 720px) {
  .hero::after { background: rgba(16, 33, 23, 0.78); }
  .hero-content { padding: 90px 0; }
}

/* Page hero (interior pages) */
.page-hero { background: var(--forest); color: var(--cream); padding: 90px 0 70px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { color: #C9C3AF; max-width: 620px; margin: 0 auto; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--forest-2); color: var(--cream); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; justify-content: center; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--cream-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { margin: 0; }
.card-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.ingredients { font-size: 0.88rem; color: var(--ink-soft); font-style: italic; }
.benefit-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 4px; }
.benefit-chips span {
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  background: var(--cream-2); color: var(--forest-3); border: 1px solid var(--sage-light);
}
.card-buy { margin-top: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.size-select {
  flex: 1; min-width: 110px; padding: 11px 12px; border-radius: 10px;
  border: 1.5px solid var(--sage); background: var(--white);
  font-family: inherit; font-size: 0.88rem; font-weight: 600; color: var(--ink); cursor: pointer;
}
.price { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--forest); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } }

.pillars { display: grid; gap: 20px; margin-top: 26px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar svg { width: 40px; height: 40px; color: var(--gold); flex-shrink: 0; padding: 8px; background: rgba(198,161,91,0.14); border-radius: 12px; }
.pillar h3 { font-size: 1.08rem; margin-bottom: 3px; }
.pillar p { margin: 0; font-size: 0.93rem; color: var(--ink-soft); }
.section--forest .pillar p { color: #C9C3AF; }

/* ---------- Price band / cleanse ---------- */
.price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 860px) { .price-cards { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 38px 34px;
  box-shadow: var(--shadow-sm); position: relative;
}
.price-card.featured { background: linear-gradient(180deg, #FFFEF9, var(--white)); box-shadow: var(--shadow-md); border: 1px solid rgba(198,161,91,0.45); }
.badge {
  position: absolute; top: -14px; right: 24px; background: var(--forest); color: var(--gold);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.price-card .amount { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--forest); }
.price-card .amount small { font-size: 1rem; color: var(--ink-soft); font-weight: 400; }
.check-list { list-style: none; padding: 0; margin: 18px 0 26px; }
.check-list li { padding: 7px 0 7px 32px; position: relative; font-size: 0.95rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 19px; height: 19px;
  background: var(--gold); border-radius: 50%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 100% no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 100% no-repeat;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--gold);
  display: block; margin-bottom: 10px;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 30px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.stars { color: var(--gold); display: flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; }
.testimonial blockquote { margin: 0; font-family: var(--font-head); font-style: italic; font-size: 1.02rem; color: var(--ink); }
.testimonial cite { font-style: normal; font-weight: 700; font-size: 0.88rem; color: var(--forest-3); }
.testimonial cite small { display: block; font-weight: 500; color: var(--ink-soft); }

/* ---------- Accordion (FAQ) ---------- */
.accordion { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.accordion details { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.accordion summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--forest);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold-deep); transition: transform 0.25s var(--ease);
}
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion details > div { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 28px 22px; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; color: var(--forest); }
.field label .req { color: var(--danger); }
.field input, .field textarea, .field select {
  padding: 13px 14px; border-radius: 10px; border: 1.5px solid var(--sage);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--white);
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-deep); outline: none; }
.field .hint { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Newsletter band ---------- */
.newsletter { background: var(--forest); border-radius: var(--radius-lg); padding: 54px 48px; color: var(--cream); display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .newsletter { grid-template-columns: 1fr; padding: 38px 26px; } }
.newsletter h2 { color: var(--cream); margin-bottom: 6px; }
.newsletter p { color: #C9C3AF; margin: 0; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 999px; border: none;
  font-family: inherit; font-size: 1rem;
}

/* ---------- Footer ---------- */
.site-footer { background: #14271C; color: #B9B3A0; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding: 64px 0 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--cream); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: #B9B3A0; }
.site-footer a:hover { color: var(--gold); }
.footer-brand svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 12px; }
.footer-brand .scripture { color: var(--sage-light); font-size: 0.95rem; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(198,161,91,0.4); color: var(--gold);
  transition: background 0.2s, transform 0.2s;
}
.social-links a:hover { background: rgba(198,161,91,0.15); transform: translateY(-2px); }
.social-links svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(250,246,237,0.12); padding: 22px 0 28px; font-size: 0.8rem; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.disclaimer { font-size: 0.75rem; color: #857f6d; max-width: 900px; margin-top: 10px; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(16,26,20,0.55); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100vw); z-index: 201;
  background: var(--cream); box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform 0.32s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid rgba(28,53,39,0.12); }
.cart-head h3 { margin: 0; }
.cart-close { background: none; border: none; color: var(--forest); width: 42px; height: 42px; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: grid; gap: 14px; align-content: start; }
.cart-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 14px; align-items: center; background: var(--white); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-sm); }
.cart-item img, .cart-item .swatch { width: 62px; height: 62px; border-radius: 10px; object-fit: cover; }
.cart-item h4 { margin: 0; font-size: 0.95rem; }
.cart-item .meta { font-size: 0.8rem; color: var(--ink-soft); }
.qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-controls button { width: 30px; height: 30px; border-radius: 8px; border: 1.5px solid var(--sage); background: var(--white); font-weight: 700; color: var(--forest); }
.cart-item .line-price { font-weight: 700; color: var(--forest); font-size: 0.95rem; }
.cart-item .remove { background: none; border: none; color: var(--danger); font-size: 0.75rem; font-weight: 600; padding: 4px 0; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 40px 10px; }
.cart-foot { border-top: 1px solid rgba(28,53,39,0.12); padding: 20px 24px 26px; display: grid; gap: 12px; background: var(--white); }
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--forest); }
.cart-note { font-size: 0.78rem; color: var(--ink-soft); margin: 0; }

/* ---------- Checkout modal ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(16,26,20,0.6); z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--cream); border-radius: var(--radius-lg); max-width: 560px; width: 100%; max-height: 92vh; overflow-y: auto; padding: 36px; position: relative; }
.modal .modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--forest); width: 42px; height: 42px; }
.pay-info { background: var(--cream-2); border: 1.5px dashed var(--gold); border-radius: var(--radius); padding: 16px 18px; font-size: 0.9rem; }
.pay-info strong { color: var(--forest); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px); z-index: 400;
  background: var(--forest); color: var(--cream); padding: 14px 26px; border-radius: 999px;
  box-shadow: var(--shadow-lg); font-weight: 600; font-size: 0.92rem; opacity: 0;
  transition: opacity 0.3s, transform 0.3s; pointer-events: none; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Filters ---------- */
.filter-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-tabs button {
  padding: 11px 24px; border-radius: 999px; border: 1.5px solid var(--sage);
  background: transparent; font-weight: 600; font-size: 0.88rem; color: var(--forest-3);
  transition: all 0.2s;
}
.filter-tabs button:hover { border-color: var(--forest); }
.filter-tabs button.active { background: var(--forest); border-color: var(--forest); color: var(--cream); }

/* ---------- Blog ---------- */
.post-meta { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); }
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose img { border-radius: var(--radius-lg); margin: 28px 0; }
.prose blockquote { border-left: 4px solid var(--gold); margin: 24px 0; padding: 8px 0 8px 22px; font-family: var(--font-head); font-style: italic; font-size: 1.1rem; color: var(--forest-3); }

/* ---------- Contact ---------- */
.contact-info { display: grid; gap: 18px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; }
.contact-line svg { width: 38px; height: 38px; color: var(--gold-deep); padding: 8px; background: rgba(198,161,91,0.14); border-radius: 10px; flex-shrink: 0; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 44px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h2 { font-size: 1.35rem; margin-top: 2em; }
.notice-band { background: var(--cream-2); border: 1px solid rgba(198,161,91,0.5); border-radius: 10px; padding: 18px 22px; font-size: 0.93rem; }
