/* ==========================================================================
   LINDSAY MAC PHOTOGRAPHY  |  OTM Web Design
   Light/warm background-build variant. Locked warm background, ivory floating
   frames, pale-teal brand trim (sampled from her logo).

   RESKIN PANEL: change the palette + fonts here, the swap-block at the top of
   each HTML, and the assets/ folder, and the whole kit re-skins to another
   photographer. See ASSET-MANIFEST.md.
   ========================================================================== */

:root {
  /* --- palette (swap these to recolor the whole site) --- */
  --bg-fallback:   #0e2b29;            /* deep teal behind the locked bg image */
  --frame-ivory:   rgba(250, 248, 244, 0.96);  /* primary content frame */
  --frame-cream:   rgba(243, 240, 232, 0.95);  /* secondary frame */
  --frame-sand:    rgba(234, 230, 220, 0.96);  /* emphasis frame (stats / CTA) */

  --ink:        #2c3431;   /* primary text on cream (cool charcoal) */
  --ink-soft:   #5d6764;   /* muted text */
  --ink-faint:  #93a09c;   /* faint labels */

  --accent:        #2aa79c; /* primary trim + buttons, vivid teal that pops on cream */
  --accent-deep:   #1d837a; /* small text on cream, hover, footer credit */
  --accent-deeper: #156158; /* button hover */
  --accent-bright: #54cabd; /* high-pop highlight: dots, dark-surface accents, active states */
  --accent-pale:   #bfdedc; /* her exact logo teal: soft glows and fills */
  --accent-wash:   #e0f4f1; /* very soft tint for hovers */

  /* dark anchor (nav, marquee, footer, mobile panel, overlays) */
  --dark:    #0e2b29;
  --dark-2:  #15403b;
  --dark-3:  #081f1d;

  --line:    rgba(28, 52, 49, 0.12);
  --white:   #ffffff;

  --shadow-lift: 0 18px 50px rgba(10, 36, 33, 0.22);
  --shadow-soft: 0 8px 24px rgba(10, 36, 33, 0.14);
  --shadow-card: 0 6px 18px rgba(10, 36, 33, 0.12);

  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1240px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --nav-h: 78px;
}

/* --- reset / base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-fallback);
  background-image:
    radial-gradient(1200px 600px at 70% -10%, rgba(84,202,189,0.20), transparent 60%),
    linear-gradient(160deg, #123a36 0%, #0c2825 55%, #0e2f2c 100%);
  overflow-x: hidden;
}

/* --- locked background image (body::before, fixed, the ONLY darkening) --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('assets/body-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.72) saturate(0.92);
}

img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent-deeper); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1rem; text-wrap: pretty; }
.lede { font-size: 1.12rem; color: var(--ink-soft); }

/* --- eyebrow --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ==========================================================================
   LAYOUT: warm floating frames with side gutters
   ========================================================================== */
section { padding: 92px 40px; position: relative; }
@media (max-width: 900px) { section { padding: 70px 28px; } }
@media (max-width: 560px) { section { padding: 64px 16px; } }

.container {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 60px;
  background: var(--frame-ivory);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lift);
}
/* side gutters come from the section padding above, so the frame stays centered.
   .section-inner is kept as a harmless hook (no margin) for any per-frame tweaks. */
.section-inner { width: 100%; }
@media (max-width: 900px)  { .container { padding: 50px 36px; } }
@media (max-width: 560px)  { .container { padding: 36px 22px; } }

.container--cream { background: var(--frame-cream); }
.container--emphasis { background: var(--frame-sand); }

/* center accent tab on the first frame of inner pages (hero-to-content handoff) */
.has-tab::after {
  content: ""; position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 3px; background: var(--accent-bright);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 16px rgba(84, 202, 189, 0.95);
}

/* ==========================================================================
   NAV (full-bleed bar, no backdrop-filter -> avoids the fixed-CB bug)
   ========================================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(9, 30, 28, 0.90);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled { background: rgba(6, 24, 22, 0.98); box-shadow: 0 6px 24px rgba(0,0,0,0.30); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  padding: 0 28px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); transition: transform 0.25s ease; }
.brand:hover img { transform: scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-mark { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--white); letter-spacing: 0.01em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-bright); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,253,250,0.85); padding: 6px 0; position: relative;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--accent-bright); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--accent-bright); border-radius: 2px;
}
.nav-cta {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent-deep); color: var(--white) !important;
  padding: 10px 20px; border-radius: 50px; transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); color: var(--white) !important; }

/* hamburger */
.hamburger {
  display: none; position: relative; width: 48px; height: 48px; margin-left: auto;
  background: none; border: none; cursor: pointer; padding: 0; z-index: 130;
}
.hamburger span {
  position: absolute; left: 11px; width: 26px; height: 2.5px; background: var(--accent-bright);
  border-radius: 2px; transition: transform 0.3s cubic-bezier(0.5,0,0.2,1), opacity 0.3s;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22.75px; }
.hamburger span:nth-child(3) { top: 29.5px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

/* mobile slide-in panel + backdrop */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 110; background: rgba(28, 22, 18, 0.55);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(78vw, 360px);
  background: linear-gradient(165deg, #0b2422 0%, #123a36 60%, #16463f 100%);
  border-left: 3px solid var(--accent-bright);
  box-shadow: -20px 0 60px rgba(0,0,0,0.45);
  padding: 96px 32px 50px; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.5,0,0.2,1);
  display: flex; flex-direction: column;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,253,250,0.92); padding: 18px 0; border-bottom: 1px solid rgba(191,222,220,0.18);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-panel a:hover, .mobile-panel a.is-active { color: var(--accent-bright); padding-left: 10px; }
.mobile-panel .panel-cta {
  margin-top: 28px; text-align: center; background: var(--accent-deep); color: var(--white);
  border-radius: 50px; border-bottom: none; font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 15px;
}
.mobile-panel .panel-cta:hover { padding-left: 15px; background: var(--accent-deeper); color: var(--white); }
body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
}

/* ==========================================================================
   HERO (full-bleed)
   ========================================================================== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  padding: var(--nav-h) 0 40px;
  background-color: #12332f;
  background-image: linear-gradient(105deg, rgba(9,28,26,0.66) 0%, rgba(9,28,26,0.30) 55%, rgba(9,28,26,0.12) 100%), url('assets/hero-home.jpg');
  background-size: cover; background-position: center;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 60px; width: 100%; }
.hero-content { max-width: 680px; }
.hero .eyebrow { color: var(--accent-bright); }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--accent-bright); }
.hero h1 { color: var(--white); margin-bottom: 0.3em; }
.hero p { color: rgba(255,253,250,0.92); font-size: 1.2rem; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
@media (max-width: 900px) { .hero { min-height: 80vh; } .hero-inner { padding: 0 28px; } .hero p { font-size: 1.08rem; } }
@media (max-width: 560px) { .hero-inner { padding: 0 18px; } }

/* inner-page hero variant: shorter, bottom accent border */
.hero--page { min-height: 52vh; border-bottom: 3px solid var(--accent-bright); }
.hero--compact { min-height: 46vh; border-bottom: 3px solid var(--accent-bright); }
.hero--page .hero-content, .hero--compact .hero-content { max-width: 760px; }

/* per-page hero images (set background-image only; gradient inherited) */
.hero--pricing   { background-image: linear-gradient(105deg, rgba(9,28,26,0.66), rgba(9,28,26,0.20)), url('assets/hero-pricing.jpg'); }
.hero--gallery   { background-image: linear-gradient(105deg, rgba(9,28,26,0.66), rgba(9,28,26,0.20)), url('assets/hero-gallery.jpg'); }
.hero--about     { background-image: linear-gradient(105deg, rgba(9,28,26,0.66), rgba(9,28,26,0.20)), url('assets/hero-about.jpg'); }
.hero--book      { background-image: linear-gradient(105deg, rgba(9,28,26,0.66), rgba(9,28,26,0.20)), url('assets/hero-book.jpg'); }
.hero--thankyou  { background-image: linear-gradient(105deg, rgba(9,28,26,0.66), rgba(9,28,26,0.20)), url('assets/hero-home.jpg'); }

.hero--cat-newborn   { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-newborn.jpg'); }
.hero--cat-maternity { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-maternity.jpg'); }
.hero--cat-cakesmash { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-cakesmash.jpg'); }
.hero--cat-milestone { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-milestone.jpg'); }
.hero--cat-teens     { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-teens.jpg'); }
.hero--cat-family    { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-family.jpg'); }
.hero--cat-lifestyle { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-lifestyle.jpg'); }
.hero--cat-headshots { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-headshots.jpg'); }
.hero--cat-packages  { background-image: linear-gradient(105deg, rgba(9,28,26,0.62), rgba(9,28,26,0.18)), url('assets/hero-packages.jpg'); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 800; font-size: 0.86rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 50px; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary { background: var(--accent-deep); color: var(--white); }
.btn-primary:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,253,250,0.6); }
.btn-outline:hover { border-color: var(--accent-bright); color: var(--accent-bright); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--accent-deep); border-color: var(--accent); }
.btn-outline-dark:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

/* ==========================================================================
   MARQUEE (full-bleed)
   ========================================================================== */
.marquee {
  background: #0f2a28; border-top: 2px solid var(--accent-bright); border-bottom: 2px solid var(--accent-bright);
  overflow: hidden; padding: 0; white-space: nowrap;
}
.marquee-track { display: inline-flex; align-items: center; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 26px; padding: 18px 0;
  font-family: var(--font-display); font-size: 1.05rem; color: rgba(255,253,250,0.92); font-weight: 500;
}
.marquee-item::after { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); margin: 0 26px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   IMAGE PLACEHOLDER (labeled, never looks broken before real photos drop in)
   ========================================================================== */
.ph { position: relative; overflow: hidden; background: linear-gradient(135deg, #ece3d5 0%, #e7dccb 45%, #dcedeb 100%); }
.ph::after {
  content: attr(data-ph); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: #b3a594;
  text-align: center; padding: 12px;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; z-index: 1; }

/* ==========================================================================
   INTRO GRID (image + content)
   ========================================================================== */
.intro-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.intro-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.intro-media .ph { aspect-ratio: 4 / 5; }
.intro-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: var(--accent-deep); color: var(--white); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 16px; border-radius: 50px;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   CATEGORY CARDS (photo + title + description -> detail page)
   ========================================================================== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2 { position: relative; padding-bottom: 18px; }
.section-head h2::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 54px; height: 3px; background: var(--accent); border-radius: 3px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--accent); }
.cat-card .ph { aspect-ratio: 3 / 2; }
.cat-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.cat-body h3 { margin-bottom: 0.35em; }
.cat-body p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.cat-link {
  margin-top: 14px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-deep); display: inline-flex; align-items: center; gap: 8px;
}
.cat-card:hover .cat-link { gap: 12px; }

/* ==========================================================================
   GALLERY: peek carousel (home) + grid (gallery page)
   ========================================================================== */
.car-viewport { position: relative; overflow: hidden; padding: 32px 0; }
.car-track { --slide-w: 46%; --prev-x: -86%; --next-x: 86%; --track-h: 57.5%; position: relative; width: 100%; padding-bottom: var(--track-h); }
.car-slide {
  position: absolute; top: 0; left: 50%; width: var(--slide-w); aspect-ratio: 4 / 5;
  transform: translateX(150%) scale(0.82); opacity: 0; pointer-events: none; z-index: 1;
  border-radius: var(--radius-sm); overflow: hidden;
  transition: transform 0.65s cubic-bezier(0.5,0.05,0.2,1), opacity 0.5s ease, box-shadow 0.65s ease;
  margin-left: calc(var(--slide-w) / -2);
}
.car-slide .ph { width: 100%; height: 100%; aspect-ratio: auto; }
.car-slide:first-child { transform: translateX(0) scale(1); opacity: 1; z-index: 3; } /* graceful default before JS */
.car-slide.is-far-left  { transform: translateX(-250%) scale(0.82); opacity: 0; }
.car-slide.is-prev  { transform: translateX(var(--prev-x)) scale(0.82); opacity: 0.7; z-index: 2; box-shadow: 0 8px 20px rgba(0,0,0,0.22); cursor: pointer; }
.car-slide.is-active{ transform: translateX(0) scale(1); opacity: 1; z-index: 3; box-shadow: 0 0 0 4px var(--accent-bright), 0 26px 60px rgba(0,0,0,0.40); }
.car-slide.is-next  { transform: translateX(var(--next-x)) scale(0.82); opacity: 0.7; z-index: 2; box-shadow: 0 8px 20px rgba(0,0,0,0.22); cursor: pointer; }
.car-slide.is-far-right { transform: translateX(150%) scale(0.82); opacity: 0; }
.car-controls { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 26px; }
.car-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--accent); background: transparent;
  color: var(--accent-deep); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s;
}
.car-btn:hover { background: var(--accent); color: var(--white); }
.car-dots { display: flex; gap: 9px; }
.car-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; transition: background 0.25s, transform 0.25s; }
.car-dot.active { background: var(--accent-deep); transform: scale(1.25); }
@media (max-width: 1100px) { .car-track { --slide-w: 56%; --prev-x: -74%; --next-x: 74%; --track-h: 70%; } }
@media (max-width: 900px)  { .car-track { --slide-w: 66%; --prev-x: -66%; --next-x: 66%; --track-h: 82.5%; } }
@media (max-width: 560px)  { .car-track { --slide-w: 86%; --track-h: 107.5%; } .car-slide.is-prev, .car-slide.is-next { opacity: 0; } }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid .gitem { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-card); }
.gallery-grid .ph { aspect-ratio: 4 / 5; transition: transform 0.5s ease; }
.gallery-grid .gitem:hover .ph { transform: scale(1.05); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(24, 18, 14, 0.92); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,0.1); border: none; color: #fff; cursor: pointer; border-radius: 50%; width: 52px; height: 52px; font-size: 1.4rem; transition: background 0.25s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--accent-deep); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   PRICING CARDS
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.price-card {
  background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); padding: 32px 28px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.price-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.price-amt { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent-deep); font-weight: 600; margin-bottom: 6px; }
.price-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { position: relative; padding: 7px 0 7px 26px; font-size: 0.95rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: ""; position: absolute; left: 0; top: 14px; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.price-note { text-align: center; color: var(--ink-soft); font-style: italic; margin-top: 30px; font-size: 0.95rem; }
.bundle-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; margin-top: 28px; }
.bundle { background: var(--accent-wash); border-radius: var(--radius-sm); padding: 22px 24px; border: 1px dashed var(--accent); }
.bundle h4 { font-family: var(--font-display); margin: 0 0 6px; font-size: 1.1rem; color: var(--ink); }
.bundle p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ==========================================================================
   STATS (emphasis frame)
   ========================================================================== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; color: var(--accent-deep); line-height: 1; }
.stat .lab { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--white); border-radius: var(--radius-sm); border-left: 3px solid var(--accent);
  padding: 26px 26px 22px; box-shadow: var(--shadow-card);
}
.review .stars { color: var(--accent-deep); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 12px; }
.review p { font-size: 0.96rem; color: var(--ink-soft); font-style: italic; }
.review .who { font-weight: 800; color: var(--ink); font-style: normal; font-size: 0.85rem; letter-spacing: 0.04em; margin-top: 8px; }

/* reviews carousel (one at a time, fade) */
.rev-carousel { max-width: 800px; margin: 0 auto; }
.rev-viewport { position: relative; }
.rev-slide {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; visibility: hidden; transition: opacity 0.5s ease;
}
.rev-slide:first-child { position: relative; opacity: 1; visibility: visible; } /* graceful default before JS */
.rev-slide.is-on { position: relative; opacity: 1; visibility: visible; }
.rev-slide.is-off { position: absolute; opacity: 0; visibility: hidden; }
.rev-slide .review {
  border-left: none; border-top: 3px solid var(--accent); text-align: center;
  padding: 34px 34px 30px;
}
.rev-slide .review .stars { font-size: 1.05rem; letter-spacing: 4px; }
.rev-slide .review p { font-size: 1.12rem; line-height: 1.6; color: var(--ink); }
.rev-slide .review .who { margin-top: 14px; color: var(--accent-deep); font-size: 0.9rem; }
.rev-controls { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 24px; }
.rev-dots { display: flex; gap: 9px; }
.rev-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; transition: background 0.25s, transform 0.25s; }
.rev-dot.active { background: var(--accent); transform: scale(1.3); }
@media (prefers-reduced-motion: reduce) { .rev-slide { transition: none; } }

/* ==========================================================================
   CTA STRIP (bg image + 0.78 warm overlay)
   ========================================================================== */
.cta .container {
  background-color: var(--frame-sand);
  background-image: linear-gradient(rgba(9,34,31,0.82), rgba(9,34,31,0.82)), url('assets/cta.jpg');
  background-size: cover; background-position: center; text-align: center; color: var(--white);
}
.cta .container h2 { color: var(--white); }
.cta .eyebrow { color: var(--accent-bright); }
.cta .eyebrow::before, .cta .eyebrow::after { background: var(--accent-bright); }
.cta p { color: rgba(255,253,250,0.92); max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 26px 0 30px; }
.cta-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; padding-top: 24px; border-top: 1px solid rgba(255,253,250,0.22); }
.cta-trust .ti { text-align: center; }
.cta-trust .tv { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--accent-bright); }
.cta-trust .tl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,253,250,0.85); }

/* ==========================================================================
   BOOK PAGE: split panel + form + FAQ
   ========================================================================== */
.book-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; gap: 32px; } }
.book-info h3 { margin-top: 0; }
.info-list { list-style: none; margin: 18px 0 24px; padding: 0; }
.info-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; color: var(--ink-soft); }
.info-list li strong { color: var(--ink); display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; }
.book-socials { display: flex; gap: 14px; margin-top: 6px; }
.book-socials a { font-weight: 800; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.form-shell { background: var(--white); border-radius: var(--radius-sm); padding: 30px 28px; box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fffefb; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(127,186,178,0.35); }
.field textarea { min-height: 120px; resize: vertical; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); font-weight: 500;
  padding: 22px 40px 22px 0; position: relative;
}
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--accent-deep); font-size: 1.5rem; transition: transform 0.3s; }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 0 22px; color: var(--ink-soft); font-size: 0.98rem; }

/* ==========================================================================
   FOOTER (full-bleed)
   ========================================================================== */
.site-footer { background: #0c2624; border-top: 3px solid var(--accent-bright); color: rgba(255,255,255,0.78); padding: 64px 0 28px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.10); }
@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-brand .brand-mark { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); display: block; }
.footer-brand p { font-size: 0.92rem; margin-top: 12px; max-width: 280px; }
.footer-col h4 { color: var(--accent-bright); font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: rgba(255,253,250,0.78); font-size: 0.92rem; padding: 5px 0; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 22px; }
.footer-bottom-links { font-size: 0.84rem; }
.footer-bottom-links a[href*="otm-designs"] { color: var(--accent-bright); font-weight: 600; }
.footer-bottom-links a[href*="otm-designs"]:hover { color: var(--accent); }
.footer-social a { color: rgba(255,253,250,0.78); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-left: 18px; }
.footer-social a:hover { color: var(--accent-bright); }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.mt-sm { margin-top: 14px; }
.intro-points { list-style: none; margin: 18px 0 0; padding: 0; }
.intro-points li { position: relative; padding: 8px 0 8px 28px; color: var(--ink-soft); }
.intro-points li::before { content: ""; position: absolute; left: 0; top: 15px; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }
.value { background: var(--white); border-radius: var(--radius-sm); padding: 26px 24px; box-shadow: var(--shadow-card); border-top: 2px solid var(--accent); }
.value h3 { font-size: 1.2rem; }
.value p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .car-slide { transition: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* scroll reveal (progressive enhancement: hidden only when JS adds html.js) */
.reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal { opacity: 0; transform: translateY(24px); }
html.js .reveal.in { opacity: 1; transform: none; }