:root {
  --cream: #F7F5EF;
  --parchment: #EDE9DF;
  --sage: #5C7A65;
  --sage-dark: #3D5445;
  --sage-light: #EBF0EC;
  --moss: #8CA68E;
  --charcoal: #2A2F28;
  --muted: #7A7D74;
  --white: #FDFCFA;
  --gold: #B8995A;
  --bark: #7A6652;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}
.cormorant { font-family: 'Cormorant Garamond', Georgia, serif; }
img { display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--moss); }

/* ── NAV ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 48px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  transition: padding 0.4s ease;
  gap: 40px;
}
.nav-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* DEFAULT STATE (For pages with dark image headers like Home) */
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 500; line-height: 1;
  color: white; transition: color 0.4s;
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: color 0.4s, border-color 0.4s;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 16px;
}
.nav-link {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; cursor: pointer; background: none; border: none;
  color: rgba(255,255,255,0.85); transition: color 0.25s, border-color 0.25s;
  padding: 6px 0; border-bottom: 1px solid transparent;
  text-decoration: none;
}
/* On dark backgrounds, active/hover should be bright white */
.nav-link:hover, .nav-link.active { color: white !important; border-bottom-color: white; }

.btn-nav {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; font-family: 'Jost', sans-serif;
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 24px; transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.btn-nav:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* FORCE DARK TEXT FOR PAGES WITH LIGHT HEADERS */
.theme-light-header-nav .nav-logo-name { color: var(--sage-dark); }
.theme-light-header-nav .nav-logo-sub { color: var(--moss); border-left-color: rgba(92,122,101,0.3); }
.theme-light-header-nav .nav-link { color: var(--charcoal); }
.theme-light-header-nav .nav-link:hover,
.theme-light-header-nav .nav-link.active { color: var(--sage) !important; border-bottom-color: var(--sage); }
.theme-light-header-nav .btn-nav { color: var(--sage-dark); border-color: var(--sage); }
.theme-light-header-nav .btn-nav:hover { background: var(--sage); color: white; border-color: var(--sage); }

/* SCROLLED STATE (Always dark text on cream background) */
#site-nav.scrolled {
  background: rgba(247,245,239,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(92,122,101,0.15);
}
#site-nav.scrolled .nav-inner {
  padding: 16px 0;
}
#site-nav.scrolled .nav-logo-name { color: var(--sage-dark); }
#site-nav.scrolled .nav-logo-sub { color: var(--moss); border-left-color: rgba(92,122,101,0.3); }
#site-nav.scrolled .nav-link { color: var(--charcoal); }
#site-nav.scrolled .nav-link:hover,
#site-nav.scrolled .nav-link.active { color: var(--sage) !important; border-bottom-color: var(--sage); }
#site-nav.scrolled .btn-nav { color: var(--sage-dark); border-color: var(--sage); }
#site-nav.scrolled .btn-nav:hover { background: var(--sage); color: white; border-color: var(--sage); }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; animation: fadeUp 0.6s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--sage); color: white;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; border: none;
  padding: 14px 32px; transition: background 0.3s; font-family: 'Jost',sans-serif;
  text-decoration: none;
}
.btn-primary:hover { background: var(--sage-dark); }
.btn-outline {
  display: inline-block; background: transparent;
  color: var(--charcoal); border: 1px solid var(--charcoal);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; font-family: 'Jost',sans-serif;
  padding: 13px 32px; transition: all 0.3s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage); }
.btn-outline-white {
  display: inline-block; background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.55);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; font-family: 'Jost',sans-serif;
  padding: 13px 32px; transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── HELPERS ── */
.section-label {
  display: block; font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 16px;
  font-weight: 500;
}
.divider {
  width: 48px; height: 1px; background: var(--moss); margin: 20px 0;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: #2a3028;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(34,44,32,0.45) 0%, rgba(34,44,32,0.65) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 0 48px; max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-kicker { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 300; color: white; line-height: 1.06;
  max-width: 780px; margin-bottom: 24px;
}
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 460px; line-height: 1.85; margin-bottom: 40px; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-slogan {
  position: absolute; bottom: 40px; right: 48px; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 14px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.06em;
}

/* ── TICKER STRIP ── */
.ticker {
  background: var(--sage-dark); padding: 16px 48px;
  display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
}
.ticker-item { display: flex; align-items: center; gap: 10px; }
.ticker-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.ticker-text { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.78); }

/* ── SECTION GENERIC ── */
.section { padding: 100px 48px; }
.section-alt { padding: 100px 48px; background: var(--parchment); }
.section-sage { padding: 100px 48px; background: var(--sage-light); }
.section-dark { padding: 100px 48px; background: var(--sage-dark); }
.section-charcoal { padding: 100px 48px; background: var(--charcoal); }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { gap: 36px; }
  .grid-2-auto { gap: 24px; }
  .container { padding: 0 20px; }
  .section, .section-alt, .section-sage, .section-dark, .section-charcoal { padding: 60px 20px; }
  .page-header { padding: 100px 20px 60px; }
  .photobg-section { padding: 150px 20px 72px; }

  #site-nav { padding: 0 16px; }
  .nav-hamburger { display: none; }
  .nav-inner { flex-direction: row; flex-wrap: wrap; padding: 10px 0 0; gap: 0; align-items: center; }
  .nav-logo { flex: 1; padding-bottom: 6px; gap: 8px; }
  .nav-logo-name { font-size: 26px; line-height: 1.15; }
  .nav-logo-sub { display: none; }

  .nav-right,
  .nav-right.mob-open { display: contents; }

  .nav-links {
    order: 10;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 6px;
    scrollbar-width: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 2px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  #site-nav.scrolled .nav-links { border-top-color: rgba(92,122,101,0.2); }
  .theme-light-header-nav .nav-links { border-top-color: rgba(92,122,101,0.2); }

  .nav-links .nav-link {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
    display: block;
    white-space: nowrap;
  }

  .btn-nav {
    order: 5;
    flex-shrink: 0;
    font-size: 9px;
    padding: 7px 10px;
    margin-left: 8px;
  }
  #acct-btn {
    order: 5;
    flex-shrink: 0;
    font-size: 10px;
    margin-left: 4px;
    padding: 6px 2px;
  }

  .hero-content { padding: 0 20px; }
  .hero-slogan { display: none; }
  .ticker { padding: 12px 20px; gap: 20px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ticker-item { flex-shrink: 0; }

  .photo-quote-box { position: static; margin: -20px 0 0 16px; max-width: calc(100% - 48px); }

  .course-card-rich { padding: 28px 24px 24px; }
  .team-member-img { height: 280px; }
}

@media (max-width: 900px) { .grid-3-auto { grid-template-columns: repeat(2,1fr); gap: 20px; } }

@media (max-width: 700px) {
  .grid-2, .grid-2-auto, .grid-3-auto { grid-template-columns: 1fr; }
  .team-card-grid { grid-template-columns: 1fr; }
  .team-card-img { height: 300px; }
  .team-member { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .team-member-img { margin: 0 auto; width: 100%; max-width: 280px; height: 320px; }
  .team-bio { text-align: left; }
  .divider { margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section, .section-alt, .section-sage, .section-dark, .section-charcoal { padding: 48px 16px; }
  .page-header { padding: 80px 16px 44px; }
  .photobg-section { padding: 140px 16px 56px; }
  #site-footer { padding: 48px 16px 32px; }
  .nav-logo-name { font-size: 22px; }
  .hero-h1 { font-size: clamp(32px, 9vw, 52px); }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline-white { text-align: center; width: 100%; max-width: 300px; }
  .services-2x2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .course-card-rich { padding: 24px 16px 20px; }
  .ccr-title { font-size: 26px; }
}

/* ── CARDS ── */
.service-card {
  background: var(--white); padding: 36px 32px;
  border-top: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-top-color: var(--sage); }
.service-icon { color: var(--sage); font-size: 20px; margin-bottom: 16px; }
.service-title { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.service-desc { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.service-price { font-size: 12px; color: var(--sage); letter-spacing: 0.1em; }

.services-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.service-card-lg {
  display: flex; align-items: flex-start; gap: 28px;
  background: var(--white); padding: 44px 40px;
  border-bottom: 1px solid var(--linen);
  transition: background 0.3s;
}
.service-card-lg:hover { background: #f5f2eb; }
.service-card-lg-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em;
  color: var(--sage); min-width: 28px; padding-top: 4px;
}
.service-card-lg-body { flex: 1; }
@media (max-width: 700px) {
  .services-2x2 { grid-template-columns: 1fr; }
}

.course-card {
  background: white; padding: 32px; border: 1px solid rgba(92,122,101,0.15);
  transition: all 0.3s; position: relative;
}
.course-card:hover { border-color: var(--sage); box-shadow: 0 8px 32px rgba(92,122,101,0.12); }
.course-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); background: var(--sage-light); padding: 4px 10px;
}
.course-fruit { font-family: 'Cormorant Garamond',serif; font-size: 40px; font-weight: 600; color: var(--sage-dark); margin-bottom: 4px; }
.course-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.course-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(92,122,101,0.15); padding-top: 16px; margin-top: 16px; }
.course-price { font-family: 'Cormorant Garamond',serif; font-size: 28px; font-weight: 600; color: var(--sage); }

.value-card {
  padding: 32px 28px; border-left: 2px solid var(--moss);
  background: rgba(255,255,255,0.5); transition: background 0.3s;
}
.value-card:hover { background: rgba(255,255,255,0.88); }

.partner-card {
  background: white; padding: 32px; border-top: 3px solid var(--sage);
  transition: transform 0.3s;
}
.partner-card:hover { transform: translateY(-3px); }

/* ── FORMS ── */
.form-group { display: grid; gap: 20px; }
.form-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(92,122,101,0.3); background: white;
  font-family: 'Jost',sans-serif; font-size: 14px; color: var(--charcoal);
  outline: none; transition: border-color 0.25s; border-radius: 0;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sage); }

/* ── PHOTO QUOTE BLOCK ── */
.photo-quote-wrap { position: relative; }
.photo-quote-img { width: 100%; height: 500px; object-fit: cover; }
.photo-quote-box {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--sage); padding: 24px 28px; max-width: 260px;
}
.photo-quote-text { font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 15px; color: white; line-height: 1.6; }
.photo-quote-ref { font-size: 10px; color: rgba(255,255,255,0.58); margin-top: 8px; letter-spacing: 0.15em; text-transform: uppercase; }

/* ── DARK SECTION ── */
.dark-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .dark-grid { grid-template-columns: 1fr; } }
.dark-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 36px 28px;
}
.dark-card-title { font-family: 'Cormorant Garamond',serif; font-size: 22px; color: white; font-weight: 600; margin-bottom: 8px; }
.dark-card-price { font-family: 'Cormorant Garamond',serif; font-size: 30px; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.dark-card-desc { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--white); padding: 40px; border-top: 2px solid var(--sage);
  cursor: pointer; transition: box-shadow 0.3s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.blog-tag { font-size: 10px; letter-spacing: 0.2em; color: var(--sage); text-transform: uppercase; margin-bottom: 12px; }
.blog-title { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 600; line-height: 1.3; margin-bottom: 12px; }
.blog-date { font-size: 11px; color: var(--muted); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(92,122,101,0.2); padding-bottom: 24px; margin-bottom: 24px; }
.faq-q { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── FOOTER ── */
#site-footer {
  background: var(--charcoal); color: rgba(255,255,255,0.65);
  padding: 64px 48px 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-logo-name { font-family: 'Cormorant Garamond',serif; font-size: 22px; color: white; font-weight: 600; margin-bottom: 8px; }
.footer-logo-slogan { font-size: 11px; letter-spacing: 0.18em; color: var(--moss); text-transform: uppercase; margin-bottom: 16px; }
.footer-mission { font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-col-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--moss); margin-bottom: 20px; }
.footer-col-link { font-size: 13px; margin-bottom: 10px; cursor: pointer; transition: color 0.2s; text-decoration: none; display: block; color: rgba(255,255,255,0.65); }
.footer-col-link:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; }
.footer-legal { font-size: 11px; color: var(--moss); }

/* ── PARTNERSHIP TWO-COL ── */
.partner-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .partner-split { grid-template-columns: 1fr; } }
.partner-block { background: var(--white); overflow: hidden; }
.partner-block-img { width: 100%; height: 220px; object-fit: cover; }
.partner-block-body { padding: 40px 36px; }
.partner-block-title { font-family: 'Cormorant Garamond',serif; font-size: 28px; font-weight: 600; margin-bottom: 24px; }
.bullet-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.bullet-dot { width: 5px; height: 5px; background: var(--sage); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.bullet-text { font-size: 14px; color: var(--muted); }

/* ── TEAM ── */
.team-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.team-card { display: flex; flex-direction: column; }
.team-card-img { width: 100%; height: 380px; object-fit: cover; object-position: center top; margin-bottom: 24px; }
.team-member { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; }
.team-member-img { width: 200px; height: 240px; object-fit: cover; object-position: center top; }
.team-name { font-family: 'Cormorant Garamond',serif; font-size: 28px; font-weight: 600; margin-bottom: 6px; }
.team-role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.team-bio { font-size: 14px; line-height: 1.8; color: var(--muted); }

/* ── PREMARITAL SPOTLIGHT ── */
.premarital-price { font-family: 'Cormorant Garamond',serif; font-size: 34px; font-weight: 600; color: var(--sage); margin-bottom: 24px; }
.premarital-price span { font-size: 16px; color: var(--muted); }

/* ── COURSE CARDS ── */
.course-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
@media(max-width:700px){ .course-grid-2 { grid-template-columns: 1fr; } }
.ccr-solo { grid-column: 1 / -1; max-width: calc(50% - 14px); margin: 0 auto; }
@media(max-width:700px){ .ccr-solo { max-width: 100%; } }

/* 5-tile layout: 3 across top, 2 across bottom (centered) */
.course-grid-3-2 { display: grid; grid-template-columns: repeat(6,1fr); gap: 28px; }
.course-grid-3-2 .course-card-rich:nth-child(-n+3) { grid-column: span 2; }
.course-grid-3-2 .course-card-rich:nth-child(n+4)  { grid-column: span 3; }
@media(max-width:900px){ .course-grid-3-2 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:900px){ .course-grid-3-2 .course-card-rich { grid-column: span 1 !important; } }
@media(max-width:600px){ .course-grid-3-2 { grid-template-columns: 1fr; } }
.course-card-rich { background: white; border: 1px solid var(--rule); padding: 36px 36px 32px; display: flex; flex-direction: column; }
.ccr-num { font-family: 'Cormorant Garamond',serif; font-size: 13px; color: var(--sage); letter-spacing: 0.12em; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.ccr-num::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.ccr-title { font-family: 'Cormorant Garamond',serif; font-size: 30px; font-weight: 400; color: var(--ink); line-height: 1.15; margin-bottom: 10px; }
.ccr-sub { font-size: 13.5px; color: var(--sage); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
.ccr-divider { height: 1px; background: var(--rule); margin-bottom: 20px; }
.ccr-bullets { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.ccr-bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.ccr-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 8px; }

/* ── BUNDLE ── */
.bundle-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; align-items: center; }
@media(max-width:900px){ .bundle-grid { grid-template-columns: 1fr; } }
.bundle-card { background: white; padding: 32px; border-top: 3px solid var(--sage); }
.bundle-note { font-size: 9px; color: var(--sage); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.bundle-title { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.bundle-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.bundle-price { font-family: 'Cormorant Garamond',serif; font-size: 34px; font-weight: 600; color: var(--sage); }
.bundle-original { font-size: 13px; color: var(--muted); text-decoration: line-through; }

/* ── DOWNLOAD CARD ── */
.dl-card { background: white; padding: 28px; border: 1px solid rgba(92,122,101,0.2); cursor: pointer; transition: border-color 0.25s; }
.dl-card:hover { border-color: var(--sage); }
.dl-arrow { font-size: 26px; margin-bottom: 12px; color: var(--sage); }
.dl-title { font-family: 'Cormorant Garamond',serif; font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.dl-label { font-size: 11px; color: var(--sage); }

/* ── INLINE NOTICE ── */
.notice-box { margin-top: 40px; padding: 24px 28px; background: var(--sage-light); border-left: 3px solid var(--sage); }
.notice-text { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ── PHOTO BG SECTION ── */
.photobg-section { position: relative; padding: 120px 48px; overflow: hidden; }
.photobg-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photobg-overlay { position: absolute; inset: 0; }
.photobg-content { position: relative; z-index: 1; }

/* ── PAGE HEADER ── */
.page-header { position: relative; padding: 160px 48px 100px; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.14; }
.page-header-content { position: relative; z-index: 1; }

/* ── HAMBURGER BUTTON (mobile only) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 2px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  border-radius: 1px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
#site-nav.scrolled .nav-hamburger span,
.theme-light-header-nav .nav-hamburger span { background: var(--charcoal); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── RESPONSIVE HELPERS ── */
.grid-2-auto { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3-auto { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
