/* ══════════════════════════════════════════════════
   ROOF RIGHT MARKETING
   Wix Outline × Radiant hybrid — warm & human
   ══════════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
  /* Warm, friendly palette */
  --cream:      #FDF8F2;   /* warm off-white background       */
  --cream-deep: #F5EDE0;   /* slightly deeper cream            */
  --warm-white: #FFFFFF;
  --navy:       #1C2B5E;   /* slightly warmer, softer navy     */
  --navy-light: #2A3D7A;
  --coral:      #E05C3A;   /* warm coral — primary CTA         */
  --coral-dk:   #C44A2A;
  --amber:      #F4B942;   /* warm amber/gold                  */
  --amber-dk:   #D49A28;
  --sage:       #6B9080;   /* soft sage green — friendly touch */
  --sky-warm:   #7AB5C8;   /* warmer sky blue                  */

  --text:       #1C2B5E;   /* dark navy for body text         */
  --text-mid:   #4A5880;
  --text-soft:  #7A87AA;

  --shadow-sm:  0 2px 12px rgba(28,43,94,0.07);
  --shadow-md:  0 8px 32px rgba(28,43,94,0.10);
  --shadow-lg:  0 24px 64px rgba(28,43,94,0.14);

  --radius:     14px;
  --radius-xl:  24px;
  --radius-pill:999px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --max:        1080px;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-italic: 'Playfair Display', serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container  { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 2rem; }
.bg-cream    { background: var(--cream-deep); }
.hidden      { display: none !important; }

/* ── Outline text (Wix Outline style) ── */
.outline-text {
  -webkit-text-stroke: 2.5px var(--navy);
  color: transparent;
  display: inline;
}
.outline-text-dark {
  -webkit-text-stroke: 2px var(--navy);
  color: transparent;
  display: inline;
}
.outline-text-white {
  -webkit-text-stroke: 2.5px #fff;
  color: transparent;
  display: inline;
}

/* ── Italic accent (Radiant style) ── */
.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

/* ── Kicker labels ── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.kicker::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.kicker-light { color: rgba(255,255,255,0.7); }
.kicker-light::before { background: var(--amber); }

/* ── Section headings ── */
section h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 3.5rem;
}
.section-header { margin-bottom: 3rem; }
.center-header { text-align: center; }
.center-header .section-sub { margin-left: auto; margin-right: auto; }
.center-header .kicker { display: inline-flex; }

/* ── Eyebrow tag ── */
.eyebrow-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(224,92,58,0.1);
  color: var(--coral);
  border: 1px solid rgba(224,92,58,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

/* ── Photo placeholders ── */
.photo-placeholder {
  background: var(--cream-deep);
  border: 2px dashed rgba(28,43,94,0.15);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* When you add a real image, set as background-image and remove the ph-inner content */
}
.ph-inner {
  text-align: center;
  padding: 2rem;
}
.ph-icon { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.4; }
.ph-inner p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}
.ph-inner span { font-size: 0.75rem; color: rgba(28,43,94,0.35); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.9rem 2rem;
  background: var(--coral);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--coral-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224,92,58,0.3);
}

.btn-text-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text-link:hover { color: var(--coral); border-color: var(--coral); }


/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28,43,94,0.08);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(28,43,94,0.1); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; gap: 2rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--coral); }

.nav-links {
  display: flex; align-items: center; gap: 2rem; margin-left: auto;
}
.nav-links li a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--navy); }

.nav-btn {
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.3rem;
  background: var(--coral); color: #fff;
  font-size: 0.85rem; font-weight: 600;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.nav-btn:hover { background: var(--coral-dk); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0.25rem;
  background: var(--cream); padding: 1.25rem 2rem;
  border-top: 1px solid rgba(28,43,94,0.08);
}
.mobile-menu.open { display: flex; }
.mob-link { font-size: 1rem; color: var(--text-mid); padding: 0.6rem 0; transition: color 0.2s; }
.mob-link:hover { color: var(--navy); }
.mob-cta {
  display: inline-block; margin-top: 0.75rem; padding: 0.7rem 1.5rem;
  background: var(--coral); color: #fff; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; width: fit-content;
}


/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero-section {
  background: var(--cream);
  padding: 80px 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Big editorial headline */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 1rem 0 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}

/* Social proof row */
.social-proof {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(28,43,94,0.1);
}
.avatar-stack {
  display: flex;
}
.avatar-ph {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
  margin-left: -8px;
}
.avatar-ph:first-child { margin-left: 0; }
.social-proof p { font-size: 0.85rem; color: var(--text-mid); }
.social-proof p strong { color: var(--navy); }

/* Hero photo area */
.hero-photo-area {
  position: relative;
  padding-bottom: 60px;
}
.hero-ph {
  width: 100%;
  height: 480px;
}
.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating metric cards */
.float-card {
  position: absolute;
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.6rem;
}
.float-top { top: 24px; left: -32px; flex-direction: column; align-items: flex-start; }
.float-bottom { bottom: 80px; right: -20px; }
.fc-num {
  font-family: var(--font-head);
  font-size: 1.75rem; font-weight: 700; color: var(--coral);
  line-height: 1;
}
.fc-label { font-size: 0.75rem; color: var(--text-mid); font-weight: 500; }
.fc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4caf50; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
}

/* Arc decoration at bottom of hero */
.hero-arc {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream-deep);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}


/* ══════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex; gap: 2rem; align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.star { color: var(--amber) !important; font-size: 0.55rem !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════════
   METRICS
══════════════════════════════════════════════════ */
.metrics-section {
  background: var(--cream-deep);
  padding: 0;
  border-bottom: 1px solid rgba(28,43,94,0.07);
}
.metrics-grid {
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.metric-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  flex: 1; min-width: 160px;
  padding: 2.5rem 2rem;
  gap: 0.35rem;
  border-right: 1px solid rgba(28,43,94,0.08);
}
.metric-item:last-child { border-right: none; }
.metric-item strong {
  font-family: var(--font-head);
  font-size: 2.25rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.metric-item span { font-size: 0.8rem; color: var(--text-soft); }


/* ══════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════ */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-item {
  flex: 1;
  background: var(--warm-white);
  border: 1px solid rgba(28,43,94,0.07);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.step-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 1.25rem;
}
.step-icon { font-size: 1.75rem; margin-bottom: 0.85rem; display: block; }
.step-item h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.65rem;
}
.step-item p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.5rem; color: var(--amber); font-size: 1.25rem;
  margin-top: 3.5rem; flex-shrink: 0;
}


/* ══════════════════════════════════════════════════
   ABOUT — photo + text
══════════════════════════════════════════════════ */
.about-section { background: var(--cream); padding: 100px 2rem; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-photo-col { position: relative; }
.about-ph { width: 100%; height: 420px; }
.about-ph-sm {
  position: absolute;
  width: 180px; height: 180px;
  bottom: -30px; right: -24px;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 24px; left: -20px;
  background: var(--amber);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: flex-start;
}
.ab-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.ab-label { font-size: 0.72rem; font-weight: 600; opacity: 0.75; margin-top: 0.2rem; }

.about-text-col { padding-left: 1rem; }
.about-text-col h2 { margin-bottom: 1.25rem; }
.about-text-col p {
  font-size: 0.975rem; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-text-col .btn-primary { margin-top: 0.5rem; }


/* ══════════════════════════════════════════════════
   SERVICES — BENTO
══════════════════════════════════════════════════ */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.svc-card {
  background: var(--warm-white);
  border: 1px solid rgba(28,43,94,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,92,58,0.2);
}
.svc-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%);
  border-color: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.svc-featured::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
  right: -90px; bottom: -120px; pointer-events: none;
}
.svc-featured:hover {
  box-shadow: 0 24px 60px rgba(224,92,58,0.35);
  border-color: rgba(255,255,255,0.25);
}
.svc-featured h3 { color: #fff; position: relative; z-index: 1; }
.svc-featured p  { color: rgba(255,255,255,0.92); position: relative; z-index: 1; }
.svc-featured .svc-tag {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}
.svc-featured .svc-icon-lg { color: #fff; position: relative; z-index: 1; }
.svc-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(244,185,66,0.2); color: var(--amber);
  border: 1px solid rgba(244,185,66,0.3);
  padding: 0.25rem 0.75rem; border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.svc-icon-lg { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.svc-icon { font-size: 2rem; margin-bottom: 0.85rem; display: block; }
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem;
}
.svc-card p {
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.75;
}
.svc-ph {
  width: 100%; height: 140px; margin-top: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  border-radius: var(--radius);
}
.svc-ph .ph-icon, .svc-ph p { opacity: 0.5; color: rgba(255,255,255,0.6); }


/* ══════════════════════════════════════════════════
   WHY ROOF RIGHT
══════════════════════════════════════════════════ */
.why-section { background: var(--cream); padding: 100px 2rem; }
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem; align-items: center;
  margin-top: 0.5rem;
}
.compare-col {
  border-radius: var(--radius-xl); padding: 2.5rem;
}
.other-col {
  background: var(--cream-deep);
  border: 1px solid rgba(28,43,94,0.07);
}
.other-col h4 { color: var(--text-mid); }
.our-col {
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.our-col::after {
  content: '';
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,185,66,0.12) 0%, transparent 70%);
  right: -60px; bottom: -60px; pointer-events: none;
}
.our-col h4  { color: var(--amber); }
.our-col ul li { color: rgba(255,255,255,0.85); }
.compare-col h4 {
  font-family: var(--font-head); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.compare-col ul { display: flex; flex-direction: column; gap: 0.95rem; position: relative; z-index: 1; }
.compare-col ul li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.925rem; line-height: 1.5; color: var(--text-mid);
}
.x, .ck {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.x  { background: rgba(239,68,68,0.1);   color: #e05555; }
.ck { background: rgba(244,185,66,0.18); color: var(--amber); }
.compare-vs {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.compare-vs span {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--amber); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em;
}


/* ══════════════════════════════════════════════════
   RESULTS — photo + stat cards
══════════════════════════════════════════════════ */
.results-section { padding: 100px 2rem; }
.results-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.results-text h2 { margin-bottom: 1.5rem; }
.result-cards { display: flex; flex-direction: column; gap: 1rem; }
.result-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--warm-white);
  border: 1px solid rgba(28,43,94,0.07);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.result-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.rc-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(224,92,58,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.result-card h4 {
  font-family: var(--font-head); font-size: 0.925rem;
  font-weight: 700; color: var(--navy); margin-bottom: 0.3rem;
}
.result-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
.results-ph { width: 100%; height: 500px; }
.results-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.results-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ══════════════════════════════════════════════════
   FUNNEL
══════════════════════════════════════════════════ */
.funnel-section { background: var(--navy); padding: 100px 2rem; }
.funnel-section h2 { color: #fff; }
.funnel-section .section-sub { color: rgba(255,255,255,0.55); }
.funnel-row {
  display: flex; align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 1rem;
}
.funnel-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2rem 1rem; flex: 1;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
  min-width: 100px;
}
.funnel-step:last-child { border-right: none; }
.funnel-step:hover { background: rgba(244,185,66,0.08); }
.funnel-end { background: rgba(244,185,66,0.07); }
.funnel-end h4 { color: var(--amber); }
.funnel-icon { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--amber); }
.funnel-step h4 {
  font-family: var(--font-head); font-size: 0.85rem;
  font-weight: 700; color: #fff; margin-bottom: 0.3rem;
}
.funnel-step p { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.5; }
.funnel-arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18); font-size: 0.85rem;
  width: 20px; flex-shrink: 0;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.05);
}


/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 1.5rem;
  margin-top: 0.5rem;
  justify-content: center;
}
.testimonial-card {
  background: var(--warm-white);
  border: 1px solid rgba(28,43,94,0.08);
  border-radius: var(--radius-xl); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-ph {
  width: 100%; height: 180px;
  border-radius: var(--radius);
}
blockquote {
  font-size: 0.925rem; color: var(--text-mid);
  line-height: 1.8; font-style: italic;
  border-left: 3px solid var(--amber);
  padding-left: 1rem;
}
.testi-author strong {
  display: block; font-size: 0.875rem;
  font-weight: 600; color: var(--navy);
}
.testi-author span { font-size: 0.78rem; color: var(--text-soft); }


/* ══════════════════════════════════════════════════
   FAQ — split
══════════════════════════════════════════════════ */
.faq-section { background: var(--cream); padding: 100px 2rem; }
.faq-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 6rem; align-items: start;
}
.faq-left h2 { color: var(--navy); margin-bottom: 1rem; }
.faq-left p { font-size: 0.975rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }
.faq-ph { width: 100%; height: 260px; margin-top: 0; }

.faq-right { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(28,43,94,0.1); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; font-size: 0.95rem;
  font-weight: 600; color: var(--navy); text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--coral); }
.faq-ico {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid rgba(28,43,94,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300; color: var(--navy);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.2s, color 0.2s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-ico {
  transform: rotate(45deg);
  background: var(--coral); color: #fff; border-color: var(--coral);
}
.faq-a { display: none; padding-bottom: 1.25rem; }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.85; }


/* ══════════════════════════════════════════════════
   BOOKING / CTA
══════════════════════════════════════════════════ */
.book-section {
  background: var(--navy); padding: 100px 2rem;
  position: relative; overflow: hidden;
}
.book-blob {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,185,66,0.08) 0%, transparent 65%);
  top: -200px; left: -200px; pointer-events: none;
}
.book-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: #fff; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 2rem;
}
.book-inner {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: 6rem; align-items: start; position: relative; z-index: 1;
}
.book-list {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.book-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.925rem; color: rgba(255,255,255,0.75);
}
.book-list li::before {
  content: '✓';
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(244,185,66,0.15); color: var(--amber);
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.book-right {
  background: var(--warm-white); border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.form-heading {
  font-family: var(--font-head); font-size: 1.2rem;
  font-weight: 700; color: var(--navy); margin-bottom: 1.75rem;
}
.book-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg.full { grid-column: 1 / -1; }
.book-form label { font-size: 0.775rem; font-weight: 600; color: var(--navy); }
.book-form input,
.book-form select {
  background: var(--cream); border: 1.5px solid rgba(28,43,94,0.12);
  border-radius: 10px; padding: 0.75rem 1rem;
  font-size: 0.9rem; font-family: var(--font-body);
  color: var(--navy); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; width: 100%;
}
.book-form input::placeholder { color: rgba(28,43,94,0.3); }
.book-form select { color: rgba(28,43,94,0.45); cursor: pointer; }
.book-form select option { color: var(--navy); background: #fff; }
.book-form input:focus,
.book-form select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,92,58,0.12);
  background: #fff;
}
.form-btn {
  width: 100%; padding: 1rem;
  background: var(--coral); color: #fff;
  font-size: 1rem; font-weight: 700;
  border-radius: var(--radius); border: none; cursor: pointer;
  margin-top: 0.25rem;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.form-btn:hover {
  background: var(--coral-dk); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224,92,58,0.35);
}
.form-note { text-align: center; font-size: 0.75rem; color: rgba(28,43,94,0.35); margin-top: 0.25rem; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.visible { display: block; }
.success-ico {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(224,92,58,0.1); border: 2px solid rgba(224,92,58,0.3);
  color: var(--coral); font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: var(--font-head); font-size: 1.4rem;
  font-weight: 700; color: var(--navy); margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: var(--text-mid); }


/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--cream-deep);
  border-top: 1px solid rgba(28,43,94,0.09);
  padding: 72px 2rem 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(28,43,94,0.08);
}
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.85; }
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid rgba(28,43,94,0.08);
  color: var(--navy);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: translateY(-2px);
}
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.5rem;
}
.footer-col a { font-size: 0.875rem; color: var(--text-mid); transition: color 0.2s; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.5rem 0 2rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.775rem; color: var(--text-soft); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.775rem; color: var(--text-soft); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--navy); }


/* ══════════════════════════════════════════════════
   FOUNDERS — Who We Are
══════════════════════════════════════════════════ */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--warm-white);
  border: 1px solid rgba(28,43,94,0.07);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-photo img[src*="christian"] {
  object-position: 30% 28%;
}
.founder-photo img[src*="leyti"] {
  object-position: center 22%;
}
.founder-ph {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.founder-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.founder-role {
  font-size: 0.78rem;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 3rem; }
  .hero-ph           { height: 360px; }
  .float-top         { left: 0; top: 16px; }
  .float-bottom      { right: 0; }
  .hero-arc          { display: none; }

  .steps-row         { flex-direction: column; gap: 1rem; }
  .step-arrow        { transform: rotate(90deg); align-self: center; }

  .about-inner       { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-photo-col   { order: 2; }
  .about-ph-sm       { display: none; }
  .about-badge       { left: 0; }

  .services-bento    { grid-template-columns: 1fr 1fr; }
  .svc-featured      { grid-column: span 2; }

  .compare-wrap      { grid-template-columns: 1fr; }
  .compare-vs        { display: none; }

  .results-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .results-ph        { height: 320px; }

  .testimonial-grid  { grid-template-columns: 1fr; }

  .faq-inner         { grid-template-columns: 1fr; gap: 3rem; }
  .faq-ph            { display: none; }

  .book-inner        { grid-template-columns: 1fr; gap: 3.5rem; }

  .footer-inner      { grid-template-columns: 1fr; gap: 2.5rem; }

  .funnel-row        { flex-wrap: wrap; }
  .funnel-step       { min-width: 45%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .funnel-arrow      { display: none; }
}

@media (max-width: 640px) {
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: clamp(3rem, 12vw, 4.5rem); }

  .metrics-grid { flex-wrap: wrap; }
  .metric-item  { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(28,43,94,0.08); }

  .services-bento   { grid-template-columns: 1fr; }
  .svc-featured     { grid-column: span 1; }

  .form-row         { grid-template-columns: 1fr; }
  .book-right       { padding: 1.75rem; }

  .footer-cols      { grid-template-columns: 1fr; gap: 1.5rem; }

  .funnel-step      { min-width: 100%; }

  .founders-grid    { grid-template-columns: 1fr; }
}


/* ── Client logos in testimonials ── */
.testi-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  margin-bottom: 1.5rem;
}
.client-logo {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
}

/* ── FAQ roofing photo ── */
.faq-photo-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  max-height: 320px;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
}


/* ══════════════════════════════════════════════════
   TEMP CTA BAND (while booking form is being built)
══════════════════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,185,66,0.1) 0%, transparent 65%);
  top: -220px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band .kicker {
  justify-content: center;
}
.cta-band-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1.25rem;
}
.italic-accent-light {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.cta-band-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin: 0 auto 2.5rem;
  max-width: 520px;
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.btn-primary-amber {
  background: var(--amber);
  color: var(--navy);
  font-size: 1.05rem;
  padding: 1.05rem 2.25rem;
  box-shadow: 0 10px 28px rgba(244,185,66,0.22);
}
.btn-primary-amber i {
  font-size: 0.95rem;
}
.btn-primary-amber:hover {
  background: var(--amber-dk);
  color: var(--navy);
  box-shadow: 0 14px 36px rgba(244,185,66,0.35);
}
.btn-text-link-light {
  color: rgba(255,255,255,0.85);
  border-color: var(--amber);
}
.btn-text-link-light:hover {
  color: var(--amber);
  border-color: var(--amber);
}

/* ── GHL Calendar placeholder ── */
.ghl-calendar-placeholder {
  background: rgba(255,255,255,0.07);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-xl);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}
.ghl-calendar-placeholder .ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.ghl-calendar-placeholder .ph-icon {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
}
.ghl-calendar-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.ghl-calendar-placeholder span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}


/* ══════════════════════════════════════════════════
   HERO SOCIAL PROOF STARS (replaces letter avatars)
══════════════════════════════════════════════════ */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--amber);
  font-size: 0.85rem;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════
   CTA BAND — meta line under the button
══════════════════════════════════════════════════ */
.cta-band-meta {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}


/* ══════════════════════════════════════════════════
   STICKY MOBILE CTA (only visible on small screens)
══════════════════════════════════════════════════ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.25rem;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 32px rgba(224,92,58,0.35), 0 2px 6px rgba(28,43,94,0.18);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.mobile-sticky-cta i { font-size: 1rem; }
.mobile-sticky-cta:hover,
.mobile-sticky-cta:focus-visible {
  background: var(--coral-dk);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(224,92,58,0.45), 0 2px 6px rgba(28,43,94,0.18);
}
@media (max-width: 640px) {
  .mobile-sticky-cta { display: inline-flex; }
  /* Give the page bottom padding so the sticky bar doesn't cover content */
  body { padding-bottom: 80px; }
}


/* ══════════════════════════════════════════════════
   FOCUS-VISIBLE — accessible keyboard outlines
══════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
.nav-btn:focus-visible,
.btn-primary:focus-visible,
.btn-text-link:focus-visible,
.mob-link:focus-visible,
.mob-cta:focus-visible,
.faq-q:focus-visible,
.hamburger:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn-primary:focus-visible,
.nav-btn:focus-visible,
.mob-cta:focus-visible,
.btn-primary-amber:focus-visible,
.mobile-sticky-cta:focus-visible {
  outline-offset: 4px;
  border-radius: var(--radius);
}


/* ══════════════════════════════════════════════════
   SCROLL REVEAL — subtle fade-up on entry
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children: each successive sibling starts slightly later */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }


/* ══════════════════════════════════════════════════
   BOOK PAGE — dedicated booking landing
   (used only by book.html)
══════════════════════════════════════════════════ */
body.book-page { background: var(--cream); padding-bottom: 0; }

.nav-book {
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28,43,94,0.08);
}
.nav-book .nav-inner {
  justify-content: space-between;
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-back:hover { color: var(--coral); }
.nav-back i { font-size: 0.8rem; }

.book-page-main {
  padding: 72px 2rem 100px;
  background: var(--cream);
}
.book-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.book-page-info { padding-top: 0.5rem; }
.book-page-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
}
.book-page-sub {
  font-size: 1.025rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.book-page-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(28,43,94,0.1);
  border-bottom: 1px solid rgba(28,43,94,0.1);
  margin-bottom: 2rem;
}
.book-page-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.bpl-ico {
  flex-shrink: 0;
  color: var(--coral);
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
}
.book-page-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.book-page-list p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.book-page-trust {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.book-page-trust p {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.book-page-trust p strong { color: var(--navy); }

.book-page-widget {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(28,43,94,0.12), 0 2px 6px rgba(28,43,94,0.05);
  padding: 1rem;
  border: 1px solid rgba(28,43,94,0.06);
  position: sticky;
  top: 92px;
}
.ghl-embed-slot {
  min-height: 620px;
  border-radius: var(--radius);
  background: var(--cream-deep);
  border: 2px dashed rgba(28,43,94,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.ghl-embed-inner {
  text-align: center;
  max-width: 420px;
}
.ghl-embed-icon {
  font-size: 2.5rem;
  color: var(--coral);
  margin-bottom: 1rem;
  display: block;
}
.ghl-embed-inner h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.ghl-embed-inner p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.ghl-embed-inner code {
  background: rgba(28,43,94,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: 0.78rem;
  color: var(--navy);
}
/* When the real iframe is embedded, it should inherit full width */
.ghl-embed-slot iframe {
  width: 100%;
  min-height: 620px;
  border: none;
  border-radius: var(--radius);
  display: block;
}

.footer-book {
  background: var(--cream-deep);
  border-top: 1px solid rgba(28,43,94,0.09);
  padding: 1.5rem 2rem;
}
.footer-book-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-book-inner p { font-size: 0.775rem; color: var(--text-soft); }

@media (max-width: 960px) {
  .book-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-page-widget { position: static; }
}
@media (max-width: 640px) {
  .book-page-main { padding: 40px 2rem 72px; }
  .ghl-embed-slot { min-height: 520px; padding: 2rem 1.25rem; }
  .nav-back span { display: none; }
}


/* ══════════════════════════════════════════════════
   REDUCED MOTION — respect the user's system setting
══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
