/* The Stubby Hut — shared stylesheet
   Tokens carried over from the live site's :root, extended per website-plan.md section L.
   Mobile-first. Breakpoints: 768 / 1024 / 1280. */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sunset-deep: #C03000;
  --sunset: #E85A00;
  --sunset-bright: #F07800;
  --amber: #F0A030;
  --gold: #F0C048;
  --cream: #FFF5E0;
  --teal: #00A8C0;
  --teal-deep: #008DA3;
  --teal-light: #30D4E8;
  --bark: #301800;
  --bark-mid: #4A2810;
  --charcoal: #1A1210;
  --white: #FFFCF7;
  --text-dark: #2A1A0E;
  --text-mid: #5C4030;
  --text-light: #8A7060;
  --bg-warm: #FDF5E8;
  --bg-sand: #F5EBDA;
  --font-display: 'Lilita One', cursive;
  --font-body: 'Nunito', sans-serif;
  --font-marker: 'Permanent Marker', cursive; /* sparing use only */
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-warm);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--bark); color: var(--cream); padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0; font-weight: 800; text-decoration: none;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--teal-deep); outline-offset: 2px; border-radius: 4px;
}
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Buttons — solid sunset-deep base for AA contrast with white text */
.btn {
  display: inline-block; padding: 15px 34px;
  font-family: var(--font-body); font-size: 14px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border-radius: 50px; transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  cursor: pointer; border: none; text-align: center;
}
.btn-primary {
  background: var(--sunset-deep); color: #fff;
  box-shadow: 0 4px 18px rgba(192,48,0,0.35);
}
.btn-primary:hover { background: var(--sunset); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,90,0,0.4); }
.btn-secondary {
  background: transparent; color: var(--bark); border: 2px solid var(--bark);
}
.btn-secondary:hover { background: var(--bark); color: var(--cream); }
.btn-secondary--light { color: var(--cream); border: 2px solid rgba(255,245,224,0.55); background: transparent; }
.btn-secondary--light:hover { background: rgba(255,245,224,0.12); border-color: var(--gold); color: var(--gold); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
.section-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: var(--sunset-deep); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 46px); color: var(--bark); line-height: 1.12; margin-bottom: 18px; }
.section-body { font-size: 17px; line-height: 1.8; color: var(--text-mid); max-width: 640px; }

/* ============ NAV ============ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(48,24,0,0.96); box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-logo { height: 42px; width: 42px; object-fit: contain; }
.nav-brand-text { font-family: var(--font-display); font-size: 20px; color: var(--cream); }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 10px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--cream); border-radius: 2px; }
.nav-links {
  display: none; list-style: none;
  position: absolute; top: 64px; left: 0; right: 0;
  background: rgba(48,24,0,0.98); padding: 20px; flex-direction: column; gap: 18px;
}
.nav-links.open { display: flex; }
.nav-links a {
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; color: var(--cream); transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--sunset-deep); color: #fff; padding: 12px 26px; border-radius: 50px;
  display: inline-block;
}
.nav-links .nav-cta:hover { background: var(--sunset); color: #fff; }
/* Occasions dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cream); display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.nav-dropdown-toggle:hover { color: var(--gold); }
.nav-dropdown-menu { list-style: none; display: none; padding: 12px 0 0 14px; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { margin-bottom: 10px; }
.nav-dropdown-menu a { font-size: 13px; letter-spacing: 1px; text-transform: none; font-weight: 700; }

@media (min-width: 1024px) {
  .site-nav { padding: 0 40px; height: 70px; }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex; position: static; flex-direction: row; align-items: center;
    gap: 28px; background: none; padding: 0;
  }
  .nav-dropdown-menu {
    position: absolute; top: calc(100% + 14px); left: -16px; min-width: 250px;
    background: var(--bark); border-radius: var(--radius); padding: 14px 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  }
  .nav-dropdown-menu li { margin-bottom: 8px; }
  .nav-dropdown-menu li:last-child { margin-bottom: 0; }
}

/* ============ 1. HERO (Sunset Spotlight) ============ */
.hero--spotlight {
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px 56px;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 50% 28%, rgba(240,160,48,0.55) 0%, transparent 55%),
    linear-gradient(180deg, #2a0e00 0%, var(--sunset-deep) 32%, var(--sunset) 52%, #0A3040 88%, #1a5068 100%);
}
.hero-sun {
  position: absolute; top: 7%; left: 50%; transform: translateX(-50%);
  width: clamp(280px, 46vw, 460px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,200,0.9) 0%, rgba(240,160,48,0.4) 45%, transparent 70%);
  filter: blur(2px); pointer-events: none; z-index: 1;
}
.hero-palms { position: absolute; bottom: 110px; left: 0; width: 100%; opacity: 0.32; z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: clamp(200px, 28vw, 300px); height: auto; margin-bottom: 12px;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.55)) drop-shadow(0 0 22px rgba(240,160,48,0.35));
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.1; color: var(--cream); margin-bottom: 10px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.5); max-width: 24ch;
}
.hero-sub { font-size: clamp(15px, 1.8vw, 18px); line-height: 1.6; color: rgba(255,245,224,0.92); max-width: 600px; margin: 0 auto 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; z-index: 2; pointer-events: none; }
.trust-strip { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.trust-strip li { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: var(--cream); }
.trust-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--bark); font-size: 13px; font-weight: 800; flex-shrink: 0;
}
@media (min-width: 768px) {
  .trust-strip { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
}

/* ============ 1b. PRODUCT SHOWCASE (first scroll) ============ */
.showcase { position: relative; line-height: 0; background: var(--bark); }
.showcase-img { width: 100%; height: clamp(340px, 56vh, 620px); object-fit: cover; display: block; }
.showcase-caption {
  position: absolute; left: 0; right: 0; bottom: 0; line-height: 1.5;
  padding: 64px 24px 28px; text-align: center; color: var(--cream);
  background: linear-gradient(180deg, transparent 0%, rgba(26,10,0,0.78) 100%);
}
.showcase-marker { font-family: var(--font-marker); font-size: clamp(22px, 3.2vw, 34px); color: var(--gold); display: block; margin-bottom: 6px; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.showcase-caption p { font-size: clamp(14px, 1.8vw, 17px); font-weight: 600; color: rgba(255,245,224,0.95); max-width: 640px; margin: 0 auto; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }

/* ============ 2. OCCASION ROUTER ============ */
.occasions { background: var(--bg-warm); }
.occasion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.occasion-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(48,24,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.occasion-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(48,24,0,0.12); }
.occasion-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.occasion-card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.occasion-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--bark); }
.occasion-card p { font-size: 14px; line-height: 1.55; color: var(--text-mid); flex: 1; }
.occasion-card-link { font-size: 13px; font-weight: 800; color: var(--sunset-deep); letter-spacing: 0.5px; }
.occasion-card:hover .occasion-card-link { text-decoration: underline; }
@media (min-width: 1024px) {
  .occasion-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .occasion-card-body { padding: 22px; }
  .occasion-card h3 { font-size: 21px; }
}

/* ============ 3. QUALITY ============ */
.quality { background: var(--bark); color: var(--cream); }
.quality .section-title { color: var(--cream); }
.quality .section-eyebrow { color: var(--gold); }
.quality .section-body { color: rgba(255,245,224,0.85); }
.quality-grid { display: grid; gap: 20px; margin-top: 40px; }
.quality-card {
  background: rgba(255,245,224,0.06); border: 1px solid rgba(255,245,224,0.12);
  border-radius: var(--radius); padding: 24px;
}
.quality-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--gold); margin-bottom: 10px; }
.quality-card p { font-size: 15px; line-height: 1.7; color: rgba(255,245,224,0.85); }
.seam-figure { margin: 40px auto 0; max-width: 560px; text-align: center; }
.seam-figure svg { width: 100%; height: auto; border-radius: var(--radius); }
.seam-caption { margin-top: 14px; font-family: var(--font-marker); font-size: 17px; color: var(--gold); }
@media (min-width: 768px) {
  .quality-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ 4. PROCESS ============ */
.process { background: var(--bg-sand); }
.process-grid { display: grid; gap: 16px; margin: 36px 0 32px; }
.process-step {
  background: var(--white); border-radius: var(--radius); padding: 22px;
  border: 1px solid rgba(48,24,0,0.06); position: relative; overflow: hidden;
}
.process-step::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--sunset), var(--amber));
}
.process-num { font-family: var(--font-display); font-size: 30px; color: var(--sunset-deep); line-height: 1; margin-bottom: 10px; }
.process-step h3 { font-size: 14px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--bark); margin-bottom: 8px; }
.process-step p { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; }
.process-footer { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.process-link { font-weight: 800; color: var(--teal-deep); text-decoration: none; font-size: 15px; }
.process-link:hover { text-decoration: underline; }
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============ 5. REVIEWS ============ */
.reviews { background: var(--bg-warm); }
.reviews-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 86%;
  gap: 18px; margin-top: 36px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { height: 8px; }
.reviews-track::-webkit-scrollbar-thumb { background: rgba(48,24,0,0.18); border-radius: 4px; }
.review-card {
  scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius); padding: 26px;
  box-shadow: 0 4px 20px rgba(48,24,0,0.06);
  display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: var(--sunset-deep); font-size: 18px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; flex: 1; font-style: italic; }
.review-author { font-weight: 800; font-size: 14px; color: var(--bark); }
.review-meta { font-size: 12.5px; color: var(--text-light); }
@media (min-width: 768px) { .reviews-track { grid-auto-columns: 44%; } }
@media (min-width: 1024px) { .reviews-track { grid-auto-columns: 31%; } }

/* ============ 6. STORY ============ */
.story { background: var(--white); }
.story-grid { display: grid; gap: 32px; align-items: center; }
.story-image { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 36px rgba(48,24,0,0.14); }
.story-image img { width: 100%; object-fit: cover; }
.story-slogan { font-family: var(--font-marker); font-size: 19px; color: var(--sunset-deep); margin-top: 6px; display: inline-block; }
.story-link { display: inline-block; margin-top: 18px; font-weight: 800; color: var(--teal-deep); text-decoration: none; font-size: 15px; }
.story-link:hover { text-decoration: underline; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1.2fr; gap: 60px; } }

/* ============ 7. CORPORATE STRIP ============ */
.corporate { background: var(--charcoal); color: var(--cream); padding: 56px 0; }
.corporate .section-title { color: var(--cream); font-size: clamp(26px, 4vw, 38px); }
.corporate .section-eyebrow { color: var(--gold); }
.corporate p { color: rgba(255,245,224,0.85); font-size: 16px; line-height: 1.75; max-width: 640px; margin-bottom: 24px; }
.corporate-link { font-weight: 800; color: var(--gold); text-decoration: none; font-size: 16px; border-bottom: 2px solid rgba(240,192,72,0.4); padding-bottom: 2px; }
.corporate-link:hover { border-color: var(--gold); }

/* ============ 8. FINAL CTA ============ */
.final-cta { background: var(--bg-sand); text-align: center; }
.final-cta .section-title { margin-left: auto; margin-right: auto; }
.final-cta .section-body { margin: 0 auto 30px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--charcoal); padding: 56px 20px 40px; text-align: center; }
.footer-logo { width: 72px; margin: 0 auto 16px; opacity: 0.75; }
.footer-slogan { font-family: var(--font-marker); font-size: 19px; color: var(--gold); margin-bottom: 26px; opacity: 0.8; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center;
  list-style: none; margin-bottom: 26px;
}
.footer-links a {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; color: rgba(255,245,224,0.65); transition: color 0.3s;
}
.footer-links a:hover { color: var(--sunset-bright); }
.footer-social { display: flex; gap: 22px; justify-content: center; margin-bottom: 26px; }
.footer-social a { color: rgba(255,245,224,0.65); font-size: 14px; font-weight: 700; text-decoration: none; }
.footer-social a:hover { color: var(--gold); }
.footer-copy { font-size: 13px; color: rgba(255,245,224,0.55); }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 12px 20px 16px; text-align: center;
  background: linear-gradient(to top, rgba(28,14,0,0.97) 60%, rgba(28,14,0,0));
  transition: opacity 0.3s, transform 0.3s; pointer-events: none;
}
.sticky-cta.visible { pointer-events: auto; }
.sticky-cta.hidden { opacity: 0; transform: translateY(100%); }
.sticky-cta-btn {
  display: inline-block; width: 100%; max-width: 360px; padding: 16px 32px;
  background: var(--sunset-deep); color: #fff;
  font-size: 15px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(192,48,0,0.45);
}
.sticky-cta-btn:active { transform: scale(0.97); }
@media (max-width: 767px) { .sticky-cta { display: block; } }

/* ============ QUOTE PAGE ============ */
.quote-hero {
  padding: 110px 0 44px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(240,120,0,0.30) 0%, transparent 55%),
    linear-gradient(180deg, #1A0A00 0%, var(--bark) 55%, #0A3040 100%);
  color: var(--cream);
}
.quote-hero h1 {
  font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.12; color: var(--cream); margin-bottom: 14px; max-width: 760px;
}
.quote-hero-sub { font-size: clamp(15px, 2vw, 18px); line-height: 1.7; color: rgba(255,245,224,0.9); max-width: 620px; }
.quote-main { background: var(--bg-warm); }
.quote-grid { display: grid; gap: 36px; align-items: start; }
@media (min-width: 1024px) { .quote-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; } }

.quote-form, .quote-thanks {
  background: var(--white); padding: 28px 22px; border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(48,24,0,0.07);
  display: flex; flex-direction: column; gap: 18px;
}
@media (min-width: 768px) { .quote-form, .quote-thanks { padding: 40px; } }
.quote-thanks[hidden], .quote-form[hidden] { display: none; }
.quote-form-heading { font-family: var(--font-display); font-size: 24px; color: var(--bark); }
.quote-form-sub { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-top: -8px; }
.form-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 12px 0 2px; margin: 0; }
.form-badges li { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--bark); }
.quote-thanks p { font-size: 15.5px; color: var(--text-mid); line-height: 1.7; }
.quote-thanks .btn { align-self: flex-start; margin-top: 6px; }

.form-row { display: grid; gap: 18px; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid); }
.form-label-optional { font-weight: 600; text-transform: none; letter-spacing: 0.2px; color: var(--text-light); }
.form-input, .form-textarea, .form-select {
  background: var(--bg-warm); border: 2px solid rgba(48,24,0,0.08); border-radius: 12px;
  padding: 13px 16px; font-family: var(--font-body); font-size: 16px; color: var(--text-dark);
  outline: none; transition: border-color 0.3s, background 0.3s; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--sunset-deep); background: var(--white); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(48,24,0,0.35); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23C03000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 12px 8px;
}
.form-counter { font-size: 12px; color: var(--text-light); text-align: right; font-variant-numeric: tabular-nums; }
.form-counter.near, .form-counter.full { color: var(--sunset-deep); font-weight: 700; }
.field-error {
  font-size: 12.5px; font-weight: 700; color: var(--sunset-deep);
  max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.2s, opacity 0.2s;
}
.field-error.show { max-height: 40px; opacity: 1; }
.form-group.has-error .form-input, .form-group.has-error .form-textarea, .form-group.has-error .form-select {
  border-color: var(--sunset-deep); background: rgba(192,48,0,0.04);
}
.quote-submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 4px; }
.form-submit {
  padding: 15px 44px; background: var(--sunset-deep); border: none; color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; border-radius: 50px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(192,48,0,0.3);
}
.form-submit:hover { background: var(--sunset); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: wait; transform: none; }
.quote-promise { font-size: 14px; font-weight: 700; color: var(--text-mid); }
.form-note { font-size: 13.5px; color: var(--text-mid); min-height: 18px; }
.form-note.ok { color: var(--teal-deep); font-weight: 700; }
.form-note.err { color: var(--sunset-deep); font-weight: 700; }

.quote-aside { display: flex; flex-direction: column; gap: 14px; }
.quote-aside-heading { font-family: var(--font-display); font-size: 20px; color: var(--bark); margin-top: 10px; }
.quote-aside-heading:first-child { margin-top: 0; }
.quote-aside p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.quote-aside-mail { font-weight: 800; color: var(--teal-deep); text-decoration: none; }
.quote-aside-mail:hover { text-decoration: underline; }
.quote-faq {
  background: var(--white); border-radius: 12px; border: 1px solid rgba(48,24,0,0.07); overflow: hidden;
}
.quote-faq summary {
  padding: 15px 18px; font-weight: 800; font-size: 15px; color: var(--bark);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.quote-faq summary::-webkit-details-marker { display: none; }
.quote-faq summary::after { content: "+"; font-family: var(--font-display); font-size: 22px; color: var(--sunset-deep); line-height: 1; transition: transform 0.2s; }
.quote-faq[open] summary::after { transform: rotate(45deg); }
.quote-faq p { padding: 0 18px 16px; font-size: 14.5px; color: var(--text-mid); line-height: 1.65; }

/* ============ BREADCRUMBS ============ */
.breadcrumb { font-size: 13px; font-weight: 700; letter-spacing: 0.3px; margin-bottom: 14px; color: rgba(255,245,224,0.75); }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: 0.7; }
.breadcrumb .crumb-current { color: rgba(255,245,224,0.9); margin: 0; }

/* ============ OCCASION LONG-FORM COPY ============ */
.occasion-copy { background: var(--white); }
.occasion-copy .lead { font-size: 18px; line-height: 1.8; color: var(--text-dark); max-width: 760px; margin-bottom: 8px; }
.occasion-copy h2 { margin-top: 36px; }
.occasion-copy h2:first-of-type { margin-top: 28px; }
.occasion-copy p { font-size: 16px; line-height: 1.8; color: var(--text-mid); max-width: 760px; margin-bottom: 14px; }
.occasion-copy .objections { margin-top: 26px; }

/* ============ RELATED OCCASIONS ============ */
.related { background: var(--bg-warm); }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.related-grid a {
  display: block; text-decoration: none; background: var(--white);
  border: 1px solid rgba(48,24,0,0.08); border-radius: var(--radius);
  padding: 16px 18px; font-weight: 800; color: var(--bark); transition: transform 0.2s, box-shadow 0.2s;
}
.related-grid a:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(48,24,0,0.1); color: var(--sunset-deep); }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ OCCASION PAGES (shared template, section F) ============ */
.occasion-hero { padding: 110px 0 48px; }
.occasion-hero .hero-ctas { margin-top: 24px; }
.page-section-alt { background: var(--bg-sand); }

/* Gallery strip */
.gallery-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.gallery-strip img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; border: 1px solid rgba(48,24,0,0.08); border-radius: var(--radius); padding: 10px; }
.gallery-placeholder {
  aspect-ratio: 1 / 1; border-radius: var(--radius);
  border: 2px dashed rgba(48,24,0,0.2); background: var(--bg-sand);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 13px; font-weight: 700; color: var(--text-light); padding: 14px;
}
.occasion-card-placeholder { aspect-ratio: 4 / 3; border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
@media (min-width: 768px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .gallery-strip { grid-template-columns: repeat(4, 1fr); } }

/* Mini process (3 steps) */
.mini-process { display: grid; gap: 16px; margin-top: 32px; }
@media (min-width: 768px) { .mini-process { grid-template-columns: repeat(3, 1fr); } }

/* Objections — reuse .quote-faq cards */
.objections { max-width: 760px; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* Quality band */
.quality-band { background: var(--bark); color: var(--cream); padding: 44px 0; }
.quality-band-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; }
.quality-band-item { font-size: 15px; font-weight: 700; color: var(--cream); display: inline-flex; align-items: center; gap: 9px; }
.quality-band-link { font-weight: 800; color: var(--gold); text-decoration: none; border-bottom: 2px solid rgba(240,192,72,0.4); padding-bottom: 2px; }
.quality-band-link:hover { border-color: var(--gold); }

/* ============ MEMORIAL VARIANT (plan I + L-4: orange near-zero, bark + cream + muted teal) ============ */
.theme-memorial .section-eyebrow { color: var(--teal-deep); }
.theme-memorial .btn-primary { background: var(--bark); box-shadow: 0 4px 18px rgba(48,24,0,0.3); }
.theme-memorial .btn-primary:hover { background: var(--bark-mid); }
.theme-memorial .trust-tick { background: var(--teal-deep); color: var(--cream); }
.theme-memorial .nav-links .nav-cta { background: var(--teal-deep); }
.theme-memorial .nav-links .nav-cta:hover { background: var(--teal); }
.theme-memorial .occasion-hero, .theme-memorial .quote-hero {
  background: linear-gradient(180deg, #140C04 0%, var(--bark) 60%, #1d3a42 100%);
}
.theme-memorial .occasion-card-link, .theme-memorial .process-num { color: var(--teal-deep); }
.theme-memorial .process-step::before { background: var(--teal-deep); }
.theme-memorial .quote-faq summary::after { color: var(--teal-deep); }
.theme-memorial .sticky-cta-btn { background: var(--bark); box-shadow: 0 4px 20px rgba(48,24,0,0.45); }
.theme-memorial .quality-band-link { color: var(--teal-light); border-color: rgba(48,212,232,0.4); }
.theme-memorial .review-stars { color: var(--teal-deep); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
