/* ════════════════════════════════════════════════════════════
   DESIGN & BLOOM — SHARED STYLES
   Tokens → Reset → Header → Hero → Type scale → Sections →
   Components → Footer → FAQ → Responsive
════════════════════════════════════════════════════════════ */

:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #f2eee7;
  --text: #1f1b18;
  --muted: #4a4039;
  --line: #ddd4c9;
  --accent: #7E9A82;
  --accent-deep: #4a6b55;
  --gold: #c4a57b;
  --shadow: 0 10px 30px rgba(31,27,24,.08);
  --shadow-soft: 0 6px 24px rgba(0,0,0,.08);
  --radius: 24px;
  --radius-sm: 16px;
  --wrap: 1400px;

  /* Type scale — single source of truth for every section on the page */
  --fs-eyebrow: .74rem;        /* uppercase label above/below a heading */
  --fs-eyebrow-lg: .9rem;      /* eyebrow paired with a large reversed heading */
  --fs-h2: clamp(2rem, 4vw, 3.2rem);      /* standard section heading */
  --fs-h2-lg: clamp(2.3rem, 4.6vw, 3.6rem); /* testimonial-style large heading */
  --fs-h3-card: 1.35rem;       /* small heading inside a card (right-place, etc.) */
  --fs-body: .95rem;           /* primary reading copy inside cards/panels */
  --fs-body-sm: .88rem;        /* tighter copy inside small cards */
  --fs-sub: .95rem;            /* descriptive sentence under a big heading */
  --fs-caption: .82rem;        /* attributions, captions, nav links */
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Jost', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p, ul, blockquote { margin-top: 0; }
h1, h2, h3 {
  margin-top: 0;
  line-height: 1.1;
  font-weight: 300;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.8rem); }
h2 { font-size: var(--fs-h2); }
.wrap { width: min(100% - 2rem, var(--wrap)); margin: 0 auto; }

/* ── SKIP LINK ── */
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  left: 1rem; top: 1rem;
  background: #fff; color: #000;
  padding: .75rem 1rem;
  z-index: 1000;
  border-radius: .5rem;
  outline: 2px solid #000;
}

/* ── FOCUS ── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
}

/* ══════════════════════════════════════
   HEADER & NAV
══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,244,239,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221,212,201,.5);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: .35rem 2.5rem;
  gap: 1rem;
}

.logo { justify-self: center; display: inline-flex; align-items: center; }
.site-logo-img { height: 130px; width: auto; object-fit: contain; display: block; }
.nav-left {
  justify-self: start;
  display: flex; align-items: center; gap: 2.25rem;
}
.nav-right {
  justify-self: end;
  display: flex; align-items: center; gap: 2.25rem;
}
.nav-left a, .nav-right a:not(.btn-pill) {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); white-space: nowrap;
  position: relative; padding-bottom: 2px;
}
.nav-left a::after, .nav-right a:not(.btn-pill)::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-left a:hover::after,
.nav-right a:not(.btn-pill):hover::after { transform: scaleX(1); }

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .52rem 1.3rem; min-height: 36px;
  background: #5d7a63; color: #fff !important;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(74,107,85,.3);
  transition: background .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn-pill:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(95,120,102,.4); }

.nav-mobile-bar { display: none; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px; transition: .28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  display: none;
  flex-direction: column;
  gap: .9rem;
  padding: 1.25rem 2.5rem 1.5rem;
  background: rgba(247,244,239,.99);
  border-top: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.drawer.open { display: flex; }
.drawer a {
  font-family: 'Jost', sans-serif;
  font-size: .88rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text);
}
.drawer .btn-pill { align-self: flex-start; margin-top: .5rem; font-size: .78rem; }

/* ══════════════════════════════════════
   HERO CAROUSEL  (untouched — this is mastered)
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 88vh; min-height: 560px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-track { position: absolute; top:0; left:0; right:0; bottom:0; }
.hero-slide {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c1814;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1),
              transform 7s cubic-bezier(.25,.46,.45,.94);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: linear-gradient(
    160deg,
    rgba(10,8,6,.25) 0%,
    rgba(10,8,6,.60) 55%,
    rgba(10,8,6,.82) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.4rem;
  display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.hero-brand-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .06em;
  color: #fff !important;
  margin-bottom: .3rem;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,.6), 0 4px 60px rgba(0,0,0,.4);
}
.hero-brand-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(.75rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95) !important;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 300; line-height: 1.04;
  color: #fff; margin-bottom: 1.5rem;
  letter-spacing: -.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,.2);
}
.hero-headline em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.92);
  line-height: 1.75;
  letter-spacing: .01em;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: .73rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .95rem 2.4rem; min-height: 52px;
  background: var(--accent); color: #fff;
  border-radius: 999px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(95,120,102,.35);
}
.hero-btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(95,120,102,.45);
}
.hero-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: .73rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .95rem 2.4rem; min-height: 52px;
  border: 1.5px solid rgba(255,255,255,.75);
  color: #fff !important; border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
  transition: background .25s, border-color .25s, transform .2s;
}
.hero-btn-ghost:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.95);
  transform: translateY(-2px);
}
.hero-arrow {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.hero-arrow:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.1); }
.hero-prev { left: 2rem; }
.hero-next { right: 2rem; }
.hero-dots {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: .6rem; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.38); border: none;
  border-radius: 999px; cursor: pointer; padding: 0;
  transition: background .3s, width .4s cubic-bezier(.4,0,.2,1);
}
.hero-dot.active { background: #fff; width: 28px; }
.hero-counter {
  position: absolute; bottom: 2.2rem; right: 2.5rem; z-index: 3;
  display: flex; align-items: center; gap: .7rem;
  font-family: 'Jost', sans-serif;
  font-size: .65rem; letter-spacing: .16em;
  color: rgba(255,255,255,.5);
}
.hero-counter-line { display: block; width: 24px; height: 1px; background: rgba(255,255,255,.3); }

/* ══════════════════════════════════════
   BUTTONS (global)
══════════════════════════════════════ */
.button-link {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  min-height: 44px; padding: .7rem 1.9rem; border-radius: 999px;
  font-family: 'Jost', Arial, sans-serif;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  line-height: 1.2;
  background: #5d7a63; color: #ffffff !important; border: none;
  box-shadow: 0 4px 20px rgba(74,107,85,.35);
  transition: background .25s, transform .2s, box-shadow .25s;
}
.button-link:hover, .button-link:focus-visible {
  background: var(--accent-deep);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(95,120,102,.4);
}
.secondary-link {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--accent-deep);
  text-transform: uppercase; font-size: .78rem; letter-spacing: .12em; font-weight: 400;
  font-family: 'Jost', Arial, sans-serif;
  border: none; border-bottom: 1px solid rgba(95,120,102,.3);
  border-radius: 0; padding: 0 0 3px; min-height: auto;
  transition: color .2s, border-color .2s;
}
.secondary-link:hover, .secondary-link:focus-visible { color: var(--text); border-color: var(--text); }

/* ══════════════════════════════════════
   SECTION / LAYOUT HELPERS — defined once
══════════════════════════════════════ */
.section { padding: 4.5rem 0; position: relative; }
.section + .section { border-top: 1px solid rgba(196,185,172,.2); }

.wrap { width: min(100% - 2rem, var(--wrap)); margin: 0 auto; }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; align-items: stretch; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }

/* Eyebrow — single source of truth */
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  color: var(--accent-deep);
  font-family: 'Jost', Arial, sans-serif;
}

/* Section headings — single source of truth */
.section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: var(--fs-h2);
  line-height: 1.15;
  letter-spacing: -.01em;
}

.lead { font-size: 1.05rem; color: var(--muted); max-width: 58ch; }
.small-note, .copyright { color: var(--muted); font-size: .9rem; font-family: 'Jost', Arial, sans-serif; }

/* Cards & panels — single source of truth */
.card {
  background: var(--surface);
  box-shadow: 0 2px 20px rgba(31,27,24,.06), 0 1px 4px rgba(31,27,24,.04);
  border: 1px solid rgba(196,185,172,.35);
  border-radius: var(--radius);
}
.image-panel, .gallery-card, .cta-band { border-radius: var(--radius); }
.panel { padding: clamp(1.75rem, 3vw, 2.75rem); }
.card p, .panel p {
  font-family: 'Jost', Arial, sans-serif;
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

.list-clean { list-style: none; padding: 0; margin: 1.25rem 0 0; font-family: 'Jost', Arial, sans-serif; }
.list-clean li {
  position: relative; padding-left: 1.25rem; margin-bottom: .8rem;
  font-size: var(--fs-body-sm);
  line-height: 1.7;
  color: var(--muted);
}
.list-clean li::before { content: ""; position: absolute; left: 0; top: .72rem; width: .4rem; height: .4rem; border-radius: 50%; background: var(--accent); }

/* Image panels — consistent heights, one rule */
.hero-image, .image-panel, .gallery-card {
  background-color: var(--surface-soft);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  box-shadow: var(--shadow);
}
.image-panel, .gallery-card { min-height: 380px; }
.tall { min-height: 480px; }
.intro-image { background-image: url("images/intro.jpg"); }
.bio-image { background-image: url("images/bio.jpg"); background-position: top center; }
.course-image { background-image: url("images/course.jpg"); min-height: 380px; }

/* Hover lift — shared across all card-like surfaces */
.card, .image-panel, .gallery-card, .quote-block, .dbt-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover, .image-panel:hover, .gallery-card:hover, .quote-block:hover, .dbt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(31,27,24,.13);
}

/* ── FEATURED IN ── */
.featured-strip { margin-top: 1.75rem; padding: 1.5rem 0 0; border-top: 1px solid var(--line); text-align: center; }
.featured-strip-lbl { font-family: 'Jost', Arial, sans-serif; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; display: block; }
.featured-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .5rem 2rem; }
.featured-name { font-family: Georgia, serif; font-size: 1.25rem; font-style: italic; color: var(--text); opacity: .65; }
.featured-dot { color: var(--muted); opacity: .5; font-size: 1.1rem; font-family: 'Jost', Arial, sans-serif; }

.list-clean li strong {
  font-weight: 400;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
} (textured section background, e.g. "Why Design & Bloom", "The School") ── */
.section-flower-bg { position: relative; isolation: isolate; }
.section-flower-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero2.jpg'), url('https://images.unsplash.com/photo-1487530811015-780a6d9c5c85?w=1800&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: .15;
  z-index: -1;
}
.section-flower-bg::before { content: ''; position: absolute; inset: 0; background: var(--bg); z-index: -2; }
.section-flower-bg > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .section-flower-bg::after { background-attachment: scroll; }
}

.section-school { background: transparent !important; }
.section-school .card { background: rgba(255,255,255,0.85); }
.section-school .wrap { position: relative; z-index: 1; }
.section-school .image-panel { z-index: 1; position: relative; }

/* ══════════════════════════════════════
   TESTIMONIAL SECTION HEADERS
   (big heading on top, eyebrow label below, both larger)
══════════════════════════════════════ */
.testimonial-header { margin-bottom: .5rem; }
.testimonial-header h2 {
  margin-bottom: .6rem;
  font-size: var(--fs-h2-lg);
}
.testimonial-header .eyebrow {
  margin-top: 0;
  margin-bottom: 0;
  font-size: var(--fs-eyebrow-lg);
  letter-spacing: .28em;
}

/* ── STUDENT TESTIMONIALS ── */
.testimonials-editorial { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.quote-block { background: var(--surface); border-radius: var(--radius-sm); padding: 2rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.quote-block blockquote { font-size: .97rem; line-height: 1.75; color: var(--muted); font-style: italic; margin: 0 0 1rem; position: relative; padding-left: 1rem; }
.quote-block blockquote::before { content: '\201C'; font-size: 3.5rem; color: var(--gold); font-family: Georgia, serif; position: absolute; left: -10px; top: -16px; opacity: .35; line-height: 1; }
.quote-block-large blockquote { font-size: 0.97rem; }
.quote-attr { font-family: 'Jost', Arial, sans-serif; font-size: var(--fs-caption); color: var(--muted); letter-spacing: .06em; margin-top: auto; }

/* ── PROFESSIONAL TESTIMONIALS ── */
.dbt-g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.dbt-card {
  background: #fff;
  padding: 2.2rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dbt-card > .dbt-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 220px;
  max-height: 74px;
  object-fit: contain;
  margin: 0 0 20px;
  align-self: flex-start;
  filter: grayscale(30%);
  opacity: .90;
}
.dbt-txt {
  font-family: 'Jost', Arial, sans-serif;
  font-size: var(--fs-body-sm);
  line-height: 1.78;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
  flex-grow: 1;
}
.dbt-txt::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  font-family: Georgia, serif;
  position: absolute;
  left: -6px;
  top: -12px;
  opacity: .35;
  line-height: 1;
}
.dbt-auth {
  font-weight: 400;
  color: var(--text);
  font-size: var(--fs-body-sm);
  margin-bottom: 3px;
  font-family: 'Jost', Arial, sans-serif;
}
.dbt-pos {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
  font-family: 'Jost', Arial, sans-serif;
}

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1rem; margin-top: 1.5rem; }
.gallery-col { display: grid; grid-template-rows: 1fr 1fr; gap: 1rem; }
.g1 { min-height: 520px; background-image: url("images/g1.jpg"); }
.g2 { min-height: 250px; background-image: url("images/g2.jpg"); }
.g3 { min-height: 250px; background-image: url("images/g3.jpg"); }
.g4 { min-height: 340px; background-image: url("images/g4.jpg"); }
.wide-image { min-height: 380px; background-image: url("images/wide.jpg"); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #e8f0e9, #f0ebe3);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.cta-band h2, .cta-band p, .cta-band .eyebrow { color: var(--text) !important; }
.section-cta { background: linear-gradient(135deg, #e8f0e9, #f0ebe3); }

/* ══════════════════════════════════════
   YOU'RE IN THE RIGHT PLACE
══════════════════════════════════════ */
.right-place-section { background: var(--bg); position: relative; }
.right-place-inner { position: relative; z-index: 1; text-align: center; }
.right-place-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-h2);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: .5rem;
}
.right-place-sub {
  font-family: 'Jost', Arial, sans-serif;
  font-size: var(--fs-sub);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.right-place-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.right-place-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(196,185,172,.3);
  border-radius: 18px;
  padding: 2.5rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 16px rgba(31,27,24,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.right-place-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rp-diamond { width: 22px; height: 22px; flex-shrink: 0; }
.right-place-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-h3-card);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 .35rem;
}
.right-place-card p {
  font-family: 'Jost', Arial, sans-serif;
  font-size: var(--fs-body-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  max-width: 28ch;
}

/* ══════════════════════════════════════
   YOUTUBE SECTION
══════════════════════════════════════ */
.youtube-section { background: var(--surface-soft); }
.youtube-inner { text-align: center; max-width: 860px; margin: 0 auto; }
.youtube-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-h2);
  font-weight: 300;
  font-style: italic;
  margin-bottom: .5rem;
}
.youtube-sub {
  font-family: 'Jost', Arial, sans-serif;
  font-size: var(--fs-sub);
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.youtube-frame-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.youtube-frame-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: var(--radius-sm); }
.youtube-tags { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 1.5rem 0 2rem; }
.yt-tag {
  font-family: 'Jost', Arial, sans-serif;
  font-size: .72rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-deep); border: 1px solid var(--accent); border-radius: 999px;
  padding: .4rem 1rem; background: rgba(126,154,130,.08);
}

/* ══════════════════════════════════════
   NEWSLETTER SECTION
══════════════════════════════════════ */
.newsletter-section { background: linear-gradient(145deg, #dde6e0 0%, #d0ddd8 60%, #c8d6d0 100%); padding: 5rem 0; }
.newsletter-section .wrap { position: relative; z-index: 1; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 6rem); align-items: center; }
.newsletter-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: .5rem;
  color: var(--text);
}
.newsletter-title em { font-style: italic; }
.newsletter-sub {
  font-family: 'Jost', Arial, sans-serif;
  font-size: var(--fs-sub);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.newsletter-form-wrap { background: rgba(255,255,255,.85); border-radius: var(--radius-sm); padding: 2.5rem; box-shadow: var(--shadow-soft); }
.newsletter-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.newsletter-field-group { display: flex; flex-direction: column; gap: .35rem; }
.nl-label {
  font-family: 'Jost', Arial, sans-serif;
  font-size: .82rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
}
.newsletter-field-group input {
  font-family: 'Jost', Arial, sans-serif;
  font-size: .92rem; font-weight: 300; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem 1rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%; box-sizing: border-box;
}
.newsletter-field-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(126,154,130,.12); }
.newsletter-field-group input::placeholder { color: #bbb; }
.nl-btn {
  width: 100%;
  font-family: 'Jost', Arial, sans-serif;
  font-size: .73rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  padding: .95rem 2rem; background: #5d7a63; color: #fff; border: none; border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(74,107,85,.35);
  transition: background .25s, transform .2s, box-shadow .25s; margin-bottom: 1rem;
}
.nl-btn:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(95,120,102,.4); }
.nl-note { font-family: 'Jost', Arial, sans-serif; font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.6; margin: 0; }
.nl-note a { color: var(--accent-deep); text-decoration: underline; }
.nl-success {
  text-align: center; padding: 1rem 0 .5rem;
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.1rem; font-style: italic; color: var(--accent-deep);
}

/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.faq-section { background: var(--bg); }
.db-faq { max-width: 900px; margin: 0 auto; padding: 6.5rem 2.5rem; }
.db-faq h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-h2);
  color: var(--text);
  text-align: center;
  margin-bottom: 1.25rem;
  font-weight: 300;
  font-style: italic;
}
.db-faq-subtitle {
  font-family: 'Jost', Arial, sans-serif;
  font-size: var(--fs-sub);
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}
.db-faq-accordion { border-top: 1px solid var(--line); }
.db-faq-item { border-bottom: 1px solid var(--line); }
.db-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.85rem 3.5rem 1.85rem 0;
  text-align: left;
  cursor: pointer;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-h3-card);
  color: var(--text);
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
  line-height: 1.4;
}
.db-faq-question:hover { color: var(--accent-deep); }
.db-faq-question:after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--accent-deep);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.db-faq-item.active .db-faq-question { color: var(--accent-deep); }
.db-faq-item.active .db-faq-question:after { transform: translateY(-50%) rotate(45deg); }
.db-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: 'Jost', Arial, sans-serif;
  font-size: var(--fs-body-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.db-faq-answer-content { padding: 0 0 1.85rem 0; }
.db-faq-item.active .db-faq-answer { max-height: 1000px; }

/* ══════════════════════════════════════
   FOOTER — Mulberry & Moss style
   (wordmark + social/contact) → (nav + pill buttons) → (photo strip) → (green legal bar)
══════════════════════════════════════ */
.footer-mm { border-top: 1px solid var(--line); background: var(--bg); margin-top: 2rem; }
.footer-mm a { color: inherit; }

/* — top row — */
.footer-top { padding: 2.25rem 0; border-bottom: 1px solid var(--line); }
.footer-top-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-mm-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: .06em;
  color: var(--accent-deep);
}
.footer-top-right { display: flex; align-items: center; gap: 1.75rem; }
.footer-mm-social { display: flex; align-items: center; gap: 1.1rem; }
.footer-mm-social a { color: var(--accent-deep); transition: color .2s, transform .2s; display: inline-flex; }
.footer-mm-social a:hover { color: var(--text); transform: translateY(-1px); }
.footer-mm-contact {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--text);
  transition: gap .2s, color .2s;
}
.footer-mm-contact:hover { gap: .75rem; color: var(--accent-deep); }
.footer-mm-contact span { font-size: .95em; }

/* — middle row: nav + pill buttons — */
.footer-middle { padding: 3rem 0; }
.footer-middle-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.footer-mm-nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-mm-nav-col { display: flex; flex-direction: column; gap: .9rem; }
.footer-mm-nav-col a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s;
}
.footer-mm-nav-col a:hover { color: var(--accent-deep); }
.footer-mm-buttons { display: flex; flex-direction: column; gap: .9rem; flex-shrink: 0; }
.footer-mm-pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  padding: .85rem 1.75rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  min-width: 260px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(31,27,24,.04);
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.footer-mm-pill:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(74,107,85,.25); }

/* — photo strip — */
.footer-photo-strip { width: 100%; overflow: hidden; }
.footer-photo-strip-track { display: flex; width: 100%; height: 220px; }
.footer-photo {
  flex: 1 1 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-soft);
}

/* — bottom legal bar (green) — */
.footer-bottom { background: var(--accent); }
.footer-bottom-inner {
  padding: 1.1rem 0;
  display: flex; align-items: center; justify-content: flex-end;
  gap: .5rem 1.25rem; flex-wrap: wrap;
}
.footer-bottom-links, .footer-bottom-copy {
  font-family: 'Jost', Arial, sans-serif;
  font-size: .85rem;
  letter-spacing: .03em;
  color: rgba(255,255,255,.92);
  margin: 0;
}
.footer-bottom-links a { color: rgba(255,255,255,.92); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-copy { white-space: nowrap; text-transform: uppercase; letter-spacing: .05em; }

/* ── SCROLL FADE-IN ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   TABLET  ≤ 980px
════════════════════════════════════════ */
@media (max-width: 980px) {
  .nav-left, .nav-right { display: none; }
  .site-logo-img { height: 108px; }
  .nav-mobile-bar {
    display: flex; align-items: center; gap: 1.25rem;
    grid-column: 3; justify-self: end;
  }
  .nav-mobile-bar a:not(.btn-pill) {
    font-family: 'Jost', sans-serif;
    font-size: .72rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text);
  }
  .nav-mobile-bar .btn-pill { font-size: .68rem; padding: .45rem 1rem; min-height: 32px; }
  .header-inner { padding: .35rem 1.25rem; }

  .hero { height: 78vh; min-height: 500px; }
  .hero-headline { font-size: clamp(2.8rem, 6vw, 4.5rem); }
  .hero-prev { left: 1rem; }
  .hero-next { right: 1rem; }
  .hero-counter { display: none; }

  .gallery { grid-template-columns: 1fr; }
  .col-5, .col-6, .col-7 { grid-column: span 12; }
  .tall { min-height: auto; }
  .testimonials-editorial { grid-template-columns: 1fr 1fr; }
  .dbt-g { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .gallery-col { grid-template-rows: 260px 260px; }
  .g1 { min-height: 380px; }
  .right-place-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-fields { grid-template-columns: 1fr; }

  .footer-middle-inner { flex-direction: column; align-items: stretch; gap: 2rem; }
  .footer-mm-buttons { flex-direction: row; }
  .footer-mm-pill { flex: 1; min-width: 0; }
}

/*    MOBILE  ≤ 640px
════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .wrap { width: min(100% - 1.25rem, var(--wrap)); }
  .header-inner { padding: .35rem 1rem; }
  .site-logo-img { height: 80px; }

  .nav-mobile-bar a:not(.btn-pill):not(.hamburger) { display: none; }
  .nav-mobile-bar { gap: .75rem; }

  .hero { height: 75vh; min-height: 440px; }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-sub { display: none; }
  .hero-actions { flex-direction: column; align-items: center; gap: .75rem; }
  .hero-btn-primary, .hero-btn-ghost { width: 100%; max-width: 300px; }
  .hero-arrow { width: 38px; height: 38px; }
  .hero-prev { left: .6rem; }
  .hero-next { right: .6rem; }

  .image-panel { min-height: 260px !important; }
  .tall { min-height: 280px !important; }
  .course-image { min-height: 240px !important; }

  .grid { grid-template-columns: 1fr; gap: 1rem; }
  .col-5, .col-6, .col-7 { grid-column: span 1; }
  .panel { padding: 1.5rem; }

  .testimonials-editorial { grid-template-columns: 1fr; }
  .dbt-g { grid-template-columns: 1fr; }
  .dbt-card { padding: 1.4rem 1.1rem; }
  .dbt-card > .dbt-logo { max-width: 190px; max-height: 64px; }

  .gallery { grid-template-columns: 1fr; gap: .75rem; }
  .gallery-col { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 180px; gap: .75rem; }
  .g1 { min-height: 240px; }
  .g2, .g3 { min-height: 180px; }
  .g4 { min-height: 200px; }
  .wide-image { min-height: 200px; }

  .cta-band { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cta-band .button-link { width: 100%; justify-content: center; }

  .footer-top-inner { justify-content: center; text-align: center; flex-direction: column; gap: 1rem; }
  .footer-middle-inner { flex-direction: column; align-items: stretch; }
  .footer-mm-nav { justify-content: center; gap: 2rem; }
  .footer-mm-buttons { align-items: stretch; }
  .footer-mm-pill { min-width: 0; }
  .footer-photo-strip-track { height: 140px; flex-wrap: wrap; }
  .footer-photo { flex: 1 1 33.33%; min-width: 33.33%; height: 70px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  .featured-logos { flex-direction: column; gap: .5rem; }
  .featured-dot { display: none; }

  .right-place-card { padding: 1.75rem 1.25rem; }
  .right-place-grid { gap: 1rem; }

  .youtube-title, .newsletter-title, .right-place-title,
  .testimonial-header h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .card p, .panel p { font-size: .9rem; line-height: 1.8; }
  .eyebrow { font-size: .68rem; letter-spacing: .2em; }

  .db-faq { padding: 4.5rem 1.5rem; }
  .db-faq h2 { font-size: 2.2rem; }
  .db-faq-question { font-size: 1.1rem; padding: 1.4rem 3rem 1.4rem 0; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
