/* ==========================================================================
   EDGE21 MARKETING — SHARED STYLES
   ========================================================================== */

/* FONTS */
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-ExtraLight.otf') format('opentype'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-Light.otf') format('opentype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-RegularItalic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-Medium.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-SemiBold.otf') format('opentype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-BoldItalic.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Silver Editorial'; src: url('fonts/SLTFTheSilverEditorial-Black.otf') format('opentype'); font-weight: 900; font-display: swap; }

/* TOKENS */
:root {
  --navy-deep: #0A2540;
  --navy: #1E4F8B;
  --teal: #4FB8C4;
  --teal-bright: #3FAEBC;
  --teal-light: #A8D5DC;
  --teal-pale: #E6F4F6;
  --cream: #FBF9F4;
  --white: #FFFFFF;
  --pale-blue: #E8F1F5;
  --pale-blue-2: #F4F8FA;
  --ink: #0F1419;
  --ink-soft: #2A3340;
  --ink-muted: #5A6470;
  --glass-bg: rgba(255,255,255,0.55);
  --glass-bg-strong: rgba(255,255,255,0.78);
  --glass-bg-soft: rgba(255,255,255,0.4);
  --glass-border: rgba(255,255,255,0.85);
  --glass-shadow: 0 8px 32px rgba(10,37,64,0.08), 0 2px 8px rgba(10,37,64,0.04);
  --glass-shadow-hover: 0 24px 60px rgba(10,37,64,0.18), 0 6px 16px rgba(10,37,64,0.08);
  --display: 'Silver Editorial', 'Times New Roman', serif;
  --body: 'Raleway', system-ui, -apple-system, sans-serif;
  --max-width: 1240px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --radius: 24px;
  --radius-sm: 14px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ANIMATED BACKGROUND MESH + NOISE */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(168,213,220,0.4), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 25%, rgba(232,241,245,0.6), transparent 65%),
    radial-gradient(ellipse 90% 70% at 50% 80%, rgba(251,249,244,0.9), transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(79,184,196,0.2), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--pale-blue-2) 100%);
  animation: meshDrift 30s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
@keyframes meshDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -1%) scale(1.02); }
  100% { transform: translate(-1%, 1%) scale(1.01); }
}

/* FLOATING BLOBS */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.bg-blob.teal { width: 480px; height: 480px; background: radial-gradient(circle, rgba(79,184,196,0.5), transparent 65%); top: 10%; right: -10%; animation: blobFloat1 25s ease-in-out infinite alternate; }
.bg-blob.cream { width: 600px; height: 600px; background: radial-gradient(circle, rgba(168,213,220,0.4), transparent 65%); bottom: 15%; left: -15%; animation: blobFloat2 28s ease-in-out infinite alternate; }
@keyframes blobFloat1 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-80px, 60px) scale(1.1); } }
@keyframes blobFloat2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(80px, -50px) scale(1.05); } }

/* TYPOGRAPHY */
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
p { margin: 0 0 1em; }

/* Prevent orphan words in headings — balances line lengths so the last word never wraps alone */
h1, h2, h3, h4,
.hero h1 .setup, .hero h1 .punchline,
.product-cover-text,
.thanks-card h1,
.callout, .pullquote,
.display {
  text-wrap: balance;
  -webkit-text-wrap: balance;
}

.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; color: var(--navy-deep); }
.display em { font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ==========================================================================
   NAV (white, big logo, hamburger)
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(10,37,64,0.06);
  box-shadow: 0 1px 16px rgba(10,37,64,0.04);
  transition: box-shadow var(--transition-fast);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(10,37,64,0.08); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 80px;
  width: auto;
  transition: transform var(--transition-fast);
}
.nav-logo:hover img { transform: scale(1.03); }

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-deep); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal-bright);
  transition: width var(--transition-fast);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* HAMBURGER */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 26px;
  left: 9px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav-cta-desktop { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--pale-blue) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 5rem var(--gutter) 3rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
  }
  .nav-links a.cta-mobile {
    margin-top: 1rem;
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--navy-deep);
    color: var(--cream);
    padding: 0.85rem 2rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
  }
  .nav-links a.cta-mobile::after { display: none; }
  .nav-links a.cta-mobile:hover { background: var(--teal); color: var(--navy-deep); }
}
.cta-mobile { display: none; }
@media (max-width: 1080px) { .cta-mobile { display: inline-flex; } }

/* Lock nav CTA button so it never shrinks and clips text */
.nav-cta-desktop { flex-shrink: 0; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--navy-deep); color: var(--cream); }
.btn-primary:hover { background: var(--teal); color: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(79,184,196,0.4); }
.btn-secondary { background: transparent; color: var(--navy-deep); border: 1.5px solid var(--navy-deep); }
.btn-secondary:hover { background: var(--navy-deep); color: var(--cream); transform: translateY(-2px); }
.btn-ghost {
  background: var(--glass-bg-soft);
  color: var(--navy-deep);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--glass-bg-strong); transform: translateY(-1px); }
.btn-link {
  padding: 0.5rem 0;
  font-weight: 600;
  color: var(--navy-deep);
  border-bottom: 1.5px solid var(--teal);
  border-radius: 0;
}
.btn-link:hover { color: var(--teal-bright); transform: translateX(4px); }
.btn-arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--transition-fast);
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(5px); }

/* ==========================================================================
   GLASS CARD
   ========================================================================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.glass.lift:hover { transform: translateY(-6px); box-shadow: var(--glass-shadow-hover); background: var(--glass-bg-strong); }

/* ==========================================================================
   TEXT CALLOUTS & QUOTES — Raleway (NOT Silver Editorial italic)
   ========================================================================== */
.callout {
  font-family: var(--body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--navy-deep);
}
.callout--accent {
  padding: 1.5rem 0 0 1.8rem;
  border-left: 2.5px solid var(--teal);
  margin: 2rem 0;
  max-width: 720px;
}
.pullquote {
  font-family: var(--body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: var(--navy-deep);
  padding: 1.8rem 2rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, var(--teal-pale), rgba(232,241,245,0.4));
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  position: relative;
}
.pullquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: var(--display);
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
}
.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  margin: 0;
  padding: clamp(0.85rem, 1.4vw, 1.1rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--navy-deep);
  font-family: var(--body);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.35;
  color: var(--cream);
  letter-spacing: 0.01em;
  text-align: left;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 600px) {
  .image-caption { width: 65%; }
}

/* ==========================================================================
   PAGE HERO (sub-pages)
   ========================================================================== */
.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
}
.page-hero .eyebrow { display: inline-block; margin-bottom: 1.5rem; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  margin: 0 auto 1.5rem;
  max-width: 920px;
}
.page-hero h1 em { font-style: italic; color: var(--teal-bright); }
.page-hero .lead { max-width: 720px; margin: 0 auto; }

/* DECORATIVE SVG FLOURISHES */
.flourish {
  width: 80px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.7;
}

/* ==========================================================================
   CTA SECTIONS (dark)
   ========================================================================== */
.final-cta { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; }
.final-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #2a6499 100%);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(10,37,64,0.25);
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,184,196,0.3) 0%, transparent 60%);
  pointer-events: none;
  animation: blobFloat1 18s ease-in-out infinite alternate;
}
.final-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,213,220,0.2) 0%, transparent 60%);
  pointer-events: none;
  animation: blobFloat2 22s ease-in-out infinite alternate;
}
.final-cta-inner > * { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 1.2rem;
  letter-spacing: -0.025em;
}
.final-cta h2 em { font-style: italic; color: var(--teal-light); font-weight: 400; }
.final-cta p {
  font-size: 1.05rem;
  color: rgba(251,249,244,0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.final-cta .ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary { background: var(--teal); color: var(--navy-deep); }
.final-cta .btn-primary:hover { background: var(--cream); color: var(--navy-deep); }
.final-cta .btn-secondary { background: transparent; color: var(--cream); border-color: rgba(251,249,244,0.4); }
.final-cta .btn-secondary:hover { background: rgba(251,249,244,0.12); color: var(--cream); border-color: var(--cream); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(10,37,64,0.08);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.55; max-width: 320px; margin: 0; }
.footer-col h4 { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--navy-deep); margin: 0 0 1rem; letter-spacing: 0.01em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; color: var(--ink-soft); transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--teal-bright); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(10,37,64,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--ink-muted); margin: 0; letter-spacing: 0.02em; }
.footer-bottom .tagline { font-family: var(--display); font-style: italic; color: var(--navy-deep); font-size: 0.95rem; }
.footer-bottom .tagline .dot { color: var(--teal); }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   UTILITY
   ========================================================================== */
.no-scroll { overflow: hidden; }

/* ==========================================================================
   IMAGE EFFECTS
   ========================================================================== */
.img-zoom { overflow: hidden; border-radius: var(--radius); position: relative; }
.img-zoom img { transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; height: 100%; object-fit: cover; }
.img-zoom:hover img { transform: scale(1.06); }

/* ==========================================================================
   SECTION HEAD
   ========================================================================== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-head .eyebrow { display: inline-block; margin-bottom: 1.2rem; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  color: var(--navy-deep);
  margin: 0 0 1rem;
  letter-spacing: -0.022em;
}
.section-head h2 em { font-style: italic; color: var(--teal-bright); }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }

/* ==========================================================================
   BLOG POST STYLES
   ========================================================================== */
.post-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.post-breadcrumb { font-family: var(--body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1.5rem; }
.post-breadcrumb a { color: var(--ink-muted); transition: color var(--transition-fast); }
.post-breadcrumb a:hover { color: var(--teal-bright); }
.post-breadcrumb .sep { color: var(--teal); margin: 0 0.5rem; }
.post-cat-tag { display: inline-block; padding: 0.45rem 1.1rem; font-family: var(--body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-deep); background: var(--teal-pale); border-radius: 999px; margin-bottom: 1.5rem; }
.post-title { font-family: var(--display); font-weight: 300; font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.05; letter-spacing: -0.025em; color: var(--navy-deep); margin: 0 auto 1.5rem; max-width: 920px; }
.post-title em { font-style: italic; color: var(--teal-bright); }
.post-meta-row { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-family: var(--body); font-size: 0.88rem; color: var(--ink-muted); letter-spacing: 0.04em; }
.post-meta-row .sep { color: var(--teal); }

.post-tldr { max-width: 760px; margin: clamp(2rem, 4vw, 3rem) auto 0; padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.6rem, 3vw, 2.4rem); border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(232,241,245,0.6), rgba(255,255,255,0.4)); border-left: 3px solid var(--teal-bright); }
.post-tldr .tldr-label { font-family: var(--body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 0.5rem; display: block; }
.post-tldr p { font-family: var(--body); font-style: italic; font-weight: 500; font-size: 1.08rem; line-height: 1.6; color: var(--navy-deep); margin: 0; }

.article-body { max-width: 760px; margin: clamp(3rem, 5vw, 4.5rem) auto 0; padding: 0 var(--gutter); }
.article-body h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1.18; letter-spacing: -0.018em; color: var(--navy-deep); margin: 3rem 0 1.2rem; scroll-margin-top: 100px; }
.article-body h2 em { font-style: italic; color: var(--teal-bright); }
.article-body h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.25rem, 2.2vw, 1.5rem); line-height: 1.25; letter-spacing: -0.005em; color: var(--navy-deep); margin: 2.2rem 0 0.9rem; }
.article-body p { font-family: var(--body); font-size: 1.06rem; line-height: 1.75; color: var(--ink-soft); margin: 0 0 1.4em; }
.article-body p strong { color: var(--navy-deep); font-weight: 600; }
.article-body a:not(.btn) { color: var(--navy-deep); border-bottom: 1.5px solid var(--teal); padding-bottom: 1px; transition: all var(--transition-fast); }
.article-body a:not(.btn):hover { color: var(--teal-bright); border-bottom-color: var(--teal-bright); }
.article-body a.btn { border-bottom: none !important; padding-bottom: 0 !important; }
.article-body a.btn-primary { color: var(--cream) !important; background: var(--navy-deep) !important; }
.article-body a.btn-primary:hover { color: var(--navy-deep) !important; background: var(--teal) !important; }
.inline-cta a.btn-primary { color: var(--cream) !important; background: var(--navy-deep) !important; }
.inline-cta a.btn-primary:hover { color: var(--navy-deep) !important; background: var(--teal) !important; }
.article-body ul, .article-body ol { margin: 0 0 1.6em; padding-left: 0; list-style: none; }
.article-body ul li, .article-body ol li { font-family: var(--body); font-size: 1.04rem; line-height: 1.7; color: var(--ink-soft); padding-left: 1.6rem; position: relative; margin-bottom: 0.65rem; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 12px; height: 1px; background: var(--teal); }
.article-body ol { counter-reset: olist; }
.article-body ol li { counter-increment: olist; }
.article-body ol li::before { content: counter(olist) "."; position: absolute; left: 0; top: 0; font-family: var(--display); font-style: italic; font-weight: 600; color: var(--teal-bright); font-size: 1.05rem; }

.article-body .lede { font-family: var(--body); font-size: 1.18rem; line-height: 1.7; color: var(--navy-deep); font-weight: 500; margin-bottom: 1.6em; }

.article-body blockquote, .article-body .post-pullquote {
  font-family: var(--body); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, 1.9vw, 1.35rem); line-height: 1.5;
  color: var(--navy-deep);
  padding: 1.6rem 2rem;
  margin: 2rem -1rem;
  background: linear-gradient(135deg, var(--teal-pale), rgba(232,241,245,0.4));
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  position: relative;
}
.article-body blockquote::before, .article-body .post-pullquote::before {
  content: '"'; position: absolute; top: -8px; left: 14px;
  font-family: var(--display); font-size: 4rem; color: var(--teal); opacity: 0.3; line-height: 1;
}

.key-takeaway { padding: 1.6rem 2rem; margin: 2rem 0; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.85); border-radius: var(--radius-sm); box-shadow: var(--glass-shadow); }
.key-takeaway .kt-label { font-family: var(--body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 0.5rem; display: block; }
.key-takeaway p { font-family: var(--body); font-size: 1.04rem; line-height: 1.6; color: var(--navy-deep); margin: 0; font-weight: 500; }

.inline-cta {
  margin: 3rem 0; padding: clamp(1.8rem, 3vw, 2.4rem) clamp(1.8rem, 3vw, 2.4rem);
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(232,241,245,0.5));
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: var(--glass-shadow);
}
.inline-cta h3 { font-family: var(--display); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.25; color: var(--navy-deep); margin: 0 0 0.7rem; }
.inline-cta h3 em { font-style: italic; color: var(--teal-bright); }
.inline-cta p { font-size: 0.98rem; color: var(--ink-soft); margin: 0 0 1.5rem; line-height: 1.55; }

.faq-section { max-width: 760px; margin: clamp(4rem, 7vw, 5rem) auto 0; padding: 0 var(--gutter); }
.faq-section .section-head { margin-bottom: 2rem; max-width: none; text-align: left; }
.faq-section .section-head .eyebrow { margin-bottom: 0.8rem; }
.faq-section .section-head h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1.18; color: var(--navy-deep); margin: 0; text-align: left; letter-spacing: -0.018em; }
.faq-section .section-head h2 em { font-style: italic; color: var(--teal-bright); }
.faq-item { border-bottom: 1px solid rgba(10,37,64,0.1); padding: 1.4rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: var(--display); font-weight: 600; font-size: 1.18rem; line-height: 1.3; color: var(--navy-deep); margin: 0 0 0.7rem; letter-spacing: -0.005em; }
.faq-a { font-family: var(--body); font-size: 1rem; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.faq-a a { color: var(--navy-deep); border-bottom: 1.5px solid var(--teal); padding-bottom: 1px; }

.author-box { max-width: 760px; margin: clamp(3rem, 5vw, 4rem) auto 0; padding: 1.8rem 2rem; background: rgba(255,255,255,0.5); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.85); border-radius: var(--radius-sm); display: flex; gap: 1.4rem; align-items: center; }
@media (max-width: 540px) { .author-box { flex-direction: column; text-align: center; } }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box .author-name { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--navy-deep); margin: 0 0 0.25rem; }
.author-box .author-bio { font-family: var(--body); font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }

.related-posts { max-width: var(--max-width); margin: clamp(4rem, 7vw, 5rem) auto 0; padding: 0 var(--gutter); }
.related-posts h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2rem); color: var(--navy-deep); margin: 0 0 2rem; letter-spacing: -0.015em; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.related-card { padding: 1.5rem 1.7rem; display: block; cursor: pointer; }
.related-card .rel-cat { font-family: var(--body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 0.6rem; }
.related-card h4 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; line-height: 1.25; color: var(--navy-deep); margin: 0; transition: color var(--transition-fast); }
.related-card:hover h4 { color: var(--navy); }

/* ==========================================================================
   FEATURED BLOG IMAGES
   ========================================================================== */
.post-featured-img {
  max-width: 1180px;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
  padding: 0 var(--gutter);
}
.post-featured-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(10,37,64,0.15);
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-featured-img:hover img { transform: translateY(-4px); }

/* Blog card cover with featured image background */
.post-cover.has-img { padding: 0; align-items: stretch; position: relative; overflow: hidden; }
.post-cover.has-img .post-cover-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.post:hover .post-cover.has-img .post-cover-img { transform: scale(1.06); }
.post-cover.has-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,37,64,0.15) 100%);
  pointer-events: none;
}
.post-cover.has-img .post-cat,
.post-cover.has-img .post-num {
  position: relative;
  z-index: 2;
}
.post-cover.has-img .post-cat {
  align-self: flex-end;
  margin: auto 1.2rem 1.2rem 1.2rem;
}
.post-cover.has-img .post-num { display: none; }

/* ==========================================================================
   ICON ANIMATIONS — glow, pulse, breathe
   ========================================================================== */
@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(79,184,196,0)); }
  50% { filter: drop-shadow(0 0 12px rgba(79,184,196,0.6)); }
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes iconBreathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,184,196,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(79,184,196,0); }
}

/* Service card icons - pulse glow on card hover */
.service-card .icon-circle,
.service-detail .icon-bubble {
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card .icon-circle::before,
.service-detail .icon-bubble::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-light));
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.5s ease;
}
.service-card:hover .icon-circle::before,
.service-detail:hover .icon-bubble::before {
  opacity: 0.6;
}
.service-card:hover .icon-circle svg,
.service-detail:hover .icon-bubble svg {
  animation: iconPulse 1.4s ease-in-out infinite;
  stroke: var(--navy-deep);
}
.service-card .icon-circle svg,
.service-detail .icon-bubble svg {
  transition: stroke 0.4s ease;
}

/* Subtle ambient breathing on the icons even at rest */
.problem-card:not(:hover) .num,
.service-card:not(:hover) .icon-circle {
  animation: none;
}

/* ==========================================================================
   DECORATIVE SVG FLOURISHES (drawn via CSS)
   ========================================================================== */
.section-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 200px;
}
.section-flourish .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,37,64,0.2), transparent);
}
.section-flourish .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
  position: relative;
}
.section-flourish .dot::before,
.section-flourish .dot::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  top: 2px;
}
.section-flourish .dot::before { left: -14px; opacity: 0.5; }
.section-flourish .dot::after { right: -14px; opacity: 0.5; }

/* ==========================================================================
   PULSE on PRIMARY CTAs — subtle attention-grabber
   ========================================================================== */
.btn-primary:not(:hover) {
  position: relative;
}
.final-cta .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--teal);
  opacity: 0;
  animation: ctaPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}
.final-cta .btn-primary:hover::after {
  animation: none;
  opacity: 0;
}

/* ==========================================================================
   PROBLEM CARD ICON BUBBLES (homepage) — adding visual interest
   ========================================================================== */
.problem-card { position: relative; }
.problem-card .num {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.problem-card .num::before {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-pale), var(--pale-blue));
  display: inline-block;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-card:hover .num::before {
  transform: scale(1.15) rotate(180deg);
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
}

/* ==========================================================================
   SVG flourish line (used between sections)
   ========================================================================== */
.divider-flourish {
  display: block;
  margin: 0 auto;
  width: 120px;
  height: 24px;
  opacity: 0.5;
}

/* ==========================================================================
   HERO 2-COL LAYOUT WITH ILLUSTRATION (homepage)
   ========================================================================== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-illustration { order: -1; max-width: 360px; margin: 0 auto; }
}
.hero-illustration img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
  filter: drop-shadow(0 16px 40px rgba(10,37,64,0.12));
  animation: heroFloat 8s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.4deg); }
  100% { transform: translateY(2px) rotate(-0.3deg); }
}

/* ==========================================================================
   SERVICE ILLUSTRATIONS
   ========================================================================== */
.service-illustration {
  width: 100%;
  height: 140px;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.service-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-illustration img { transform: scale(1.06); }

.service-illustration-large {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.service-illustration-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-detail:hover .service-illustration-large img { transform: scale(1.04); }

/* ==========================================================================
   METHOD STEP ILLUSTRATIONS
   ========================================================================== */
.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 720px) {
  .step { grid-template-columns: 1fr; gap: 0.75rem; }
}
.step-illustration {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10,37,64,0.08);
  grid-row: 1 / span 99;
  align-self: start;
  position: sticky;
  top: 110px;
}
.step-illustration img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.step:hover .step-illustration img { transform: scale(1.05); }

@media (max-width: 720px) {
  .step-illustration { width: 80px; height: 80px; position: static; grid-row: auto; }
}

/* ==========================================================================
   HERO PHOTO BREAKS (services, method, contact intros)
   ========================================================================== */
.hero-photo-break {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,37,64,0.12);
  aspect-ratio: 21/9;
  background: var(--pale-blue);
}
.hero-photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-photo-break:hover img { transform: scale(1.03); }


/* ==========================================================================
   "WHAT I DO" STRIP — homepage clarity bar
   ========================================================================== */
.what-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 2.8rem);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}
@media (max-width: 880px) {
  .what-strip { grid-template-columns: 1fr; gap: 1.5rem; }
}
.what-col { position: relative; }
.what-col + .what-col { padding-left: clamp(1.5rem, 3vw, 3rem); border-left: 1px solid rgba(10,37,64,0.08); }
@media (max-width: 880px) {
  .what-col + .what-col { padding-left: 0; padding-top: 1.5rem; border-left: none; border-top: 1px solid rgba(10,37,64,0.08); }
}
.what-label {
  display: block;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.85rem;
}
.what-body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
}
.what-body strong { color: var(--navy-deep); font-weight: 600; }

/* Problem-mirror with image */
.problem-mirror-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .problem-mirror-grid { grid-template-columns: 1fr; }
}
.problem-mirror-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10,37,64,0.18);
  aspect-ratio: 3/4;
  max-height: 560px;
}
.problem-mirror-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-mirror-img:hover img { transform: scale(1.04); }

/* Make problem-mirror text-only inside the grid not have its own max-width */
.problem-mirror-grid .problem-mirror {
  max-width: none;
  text-align: left;
}
.problem-mirror-grid .problem-mirror h2 {
  text-align: left;
}

/* WHO IT'S FOR section */
.who-section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--pale-blue-2) 100%);
  position: relative;
}
.who-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(63,174,188,0.06), transparent 50%),
                    radial-gradient(circle at 85% 70%, rgba(10,37,64,0.04), transparent 55%);
  pointer-events: none;
}
.who-section .container { position: relative; z-index: 1; }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3.5rem;
  max-width: 1080px;
  margin: 3rem auto 0;
}
.who-item-wide {
  grid-column: 1 / -1;
  max-width: 660px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .who-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .who-item-wide { grid-column: auto; max-width: none; margin: 0; }
}
.who-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: start;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(10,37,64,0.14);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.who-item:hover {
  transform: translateX(4px);
  border-top-color: var(--teal-bright);
}
.who-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal-bright);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 0.15rem;
  min-width: 2.4rem;
  font-style: italic;
}
.who-item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.who-item p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.who-footer {
  max-width: 760px;
  margin: 3.5rem auto 0;
  padding: 1.6rem 1.8rem;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal-bright);
  backdrop-filter: blur(8px);
}
.who-footer p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}
.who-footer strong { color: var(--navy-deep); font-weight: 600; }

/* PAYHIP EMBED SECTION */
.payhip-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--pale-blue-2) 100%);
  position: relative;
}
.payhip-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 30%, rgba(63,174,188,0.05), transparent 55%),
                    radial-gradient(circle at 80% 75%, rgba(10,37,64,0.04), transparent 55%);
  pointer-events: none;
}
.payhip-wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 20px 60px rgba(10,37,64,0.10), 0 4px 12px rgba(10,37,64,0.04);
}
.payhip-header {
  text-align: center;
  margin-bottom: 2rem;
}
.payhip-header .eyebrow {
  color: var(--teal-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.payhip-header h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  color: var(--navy-deep);
  margin: 0.6rem 0 0.8rem;
  letter-spacing: -0.025em;
}
.payhip-header h2 em {
  font-style: italic;
  color: var(--teal-bright);
}
.payhip-header p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0;
}
/* Make sure Payhip's embedded iframe/content sits inside the card cleanly */
.payhip-embed-page {
  margin-top: 1rem;
}
.payhip-embed-page iframe {
  max-width: 100% !important;
  border-radius: var(--radius-sm) !important;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 540px;
  margin: 0 auto;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 1.5rem 1.6rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(10,37,64,0.35);
  z-index: 9999;
  font-family: var(--body);
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.cookie-banner.is-visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: var(--cream);
}
.cookie-banner .cookie-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.6rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.cookie-banner .btn-accept {
  background: var(--teal-bright);
  color: var(--navy-deep);
}
.cookie-banner .btn-accept:hover { transform: translateY(-1px); background: #5fd5e0; }
.cookie-banner .btn-decline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,242,230,0.3);
}
.cookie-banner .btn-decline:hover { background: rgba(245,242,230,0.08); }
.cookie-banner .cookie-link {
  font-size: 0.82rem;
  color: rgba(245,242,230,0.7);
  text-decoration: underline;
  margin-left: auto;
}
.cookie-banner .cookie-link:hover { color: var(--cream); }
@media (max-width: 600px) {
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; padding: 1.25rem; }
  .cookie-banner .cookie-link { margin-left: 0; margin-top: 0.5rem; width: 100%; }
}

/* ==========================================================================
   FOOTER LEGAL LINKS
   ========================================================================== */
.footer-legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(245,242,230,0.08);
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(245,242,230,0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--cream); }
.footer-legal .sep {
  font-size: 0.75rem;
  color: rgba(245,242,230,0.25);
}

/* ==========================================================================
   PULL-QUOTE TESTIMONIAL (single, sprinkled across pages)
   ========================================================================== */
.pull-testimonial {
  max-width: 760px;
  margin: clamp(2.5rem, 5vw, 4.5rem) auto;
  padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.8rem, 3vw, 3rem);
  position: relative;
}
.pull-testimonial::before {
  content: '"';
  font-family: var(--display);
  font-style: italic;
  font-size: 7rem;
  line-height: 0.6;
  color: var(--teal-bright);
  opacity: 0.45;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}
.pull-testimonial .pt-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  color: var(--navy-deep);
  margin: 0 0 1.4rem;
  padding-left: 2.5rem;
  letter-spacing: -0.005em;
}
.pull-testimonial .pt-attribution {
  padding-left: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10,37,64,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: baseline;
}
.pull-testimonial .pt-name {
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--navy-deep);
}
.pull-testimonial .pt-business {
  font-family: var(--body);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.92rem;
}
@media (max-width: 600px) {
  .pull-testimonial::before { font-size: 5rem; top: 1rem; left: 1rem; }
  .pull-testimonial .pt-text, .pull-testimonial .pt-attribution { padding-left: 1.5rem; }
}
