/* ─── ANDREA ESAMOR ─── */

/* ── Fonts ── */
@font-face {
  font-family: 'BoogyBrut';
  src: url('fonts/BoogyBrutPosterTEST-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'BoogyBrut';
  src: url('fonts/BoogyBrutPosterTEST-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: 'BoogyBrut';
  src: url('fonts/BoogyBrutPosterTEST-White.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'BoogyBrut';
  src: url('fonts/BoogyBrutPosterTEST-WhiteItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'BoogyBrut';
  src: url('fonts/BoogyBrutTEST-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'BoogyBrut';
  src: url('fonts/BoogyBrutTEST-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'HaasGrot';
  src: url('fonts/neuehaasgrotdisp-55roman-trial.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'HaasGrot';
  src: url('fonts/neuehaasgrotdisp-56italic-trial.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'HaasGrot';
  src: url('fonts/neuehaasgrotdisp-45light-trial.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'HaasGrot';
  src: url('fonts/neuehaasgrotdisp-65medium-trial.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'HaasGrot';
  src: url('fonts/neuehaasgrotdisp-75bold-trial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* ── Tokens ── */
:root {
  --navy:     #004492;
  --pink:     #E8559A;
  --yellow:   #FFF0B8;
  --offwhite: #F5F4F0;
  --brown:    #A67765;
  --white:    #FFFFFF;
  --black:    #1A1A1A;

  --display: 'BoogyBrut', serif;
  --body:    'HaasGrot', sans-serif;

  /* Spacing system */
  --space-xs: 16px;
  --space-sm: 32px;
  --space-md: 80px;
  --space-lg: 160px;

  /* Shadow system */
  --shadow-card: 0 8px 32px rgba(0,68,146,0.15);
  --shadow-card-hover: 0 16px 48px rgba(0,68,146,0.26);
  --shadow-blob: 0 24px 64px rgba(0,0,0,0.13);
  --shadow-hero-blob: 0 20px 56px rgba(0,0,0,0.17);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--offwhite);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Page transitions ── */
.page-transition {
  animation: pageIn 0.6s ease both;
}
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; }

/* ── Type ── */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); line-height: 1.02; }
h2 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h3 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
p  { font-weight: 300; line-height: 1.85; font-size: 1rem; }

/* Mixed italic accent within headlines — wrap words in <em> */
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Pill Button ── */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 48px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-pink   { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn-pink:hover { background: transparent; color: var(--pink); transform: scale(1.03); }
.btn-navy   { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: transparent; color: var(--navy); transform: scale(1.03); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: scale(1.03); }
.btn-outline-navy  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover  { background: var(--navy); color: var(--white); transform: scale(1.03); }
.btn-outline-pink  { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-outline-pink:hover  { background: var(--pink); color: var(--white); transform: scale(1.03); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(0, 50, 120, 0.94);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
}
.nav-logo {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 12px; margin: -12px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); }

/* ── Services page: nav over offwhite background ── */
.services-page .nav .nav-logo {
  color: var(--navy);
  transition: color 0.4s ease;
}
.services-page .nav .nav-links a {
  color: rgba(0, 68, 146, 0.65);
  transition: color 0.25s ease;
}
.services-page .nav .nav-links a:hover,
.services-page .nav .nav-links a.active {
  color: var(--navy);
}
.services-page .nav .nav-hamburger span {
  background: var(--navy);
}
.services-page .nav.scrolled {
  background: rgba(245, 244, 240, 0.95);
  backdrop-filter: blur(12px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 200;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 44px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 2.8rem;
  font-style: normal;
  color: var(--white);
  transition: color 0.25s ease;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-close {
  position: absolute; top: 24px; right: 60px;
  font-size: 2.4rem; color: var(--white);
  background: none; border: none; cursor: pointer; line-height: 1;
}

/* ═══════════════════════════════════
   HOME — HERO
═══════════════════════════════════ */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  gap: 80px;
}
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
  max-width: 620px;
  z-index: 1;
}
.hero-photo {
  width: 160px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
}
.hero-photo-left { align-self: flex-start; margin-top: 80px; }
.hero-photo-right { align-self: flex-end; margin-bottom: 40px; }
.hero-photo-top {
  width: 160px;
  height: auto;
  border-radius: 4px;
}
.hero-content { max-width: 560px; position: relative; z-index: 1; }
/* "Let's build something beautiful" — secondary italic supporting line */
.hero-sub {
  font-family: var(--body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  color: var(--yellow);
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.02em;
}
.hero h1 { color: var(--yellow); margin-bottom: 10px; }
.hero p.hero-body {
  color: var(--yellow);
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
/* SVG blob decorations in hero */
.hero-blob-svg {
  position: absolute;
  pointer-events: none;
}
.hero-blob-svg-1 {
  top: -200px; right: -240px;
  width: 860px; height: 860px;
  opacity: 0.07;
  transform: rotate(18deg);
  z-index: 0;
}
.hero-blob-svg-2 {
  bottom: -100px; left: -140px;
  width: 320px; height: 320px;
  opacity: 0.04;
}

/* ═══════════════════════════════════
   HOME — WHAT I DO
═══════════════════════════════════ */
.what-i-do {
  background: var(--offwhite);
  padding: var(--space-lg) 60px;
  text-align: center;
}
.what-i-do h2 { color: var(--navy); margin-bottom: var(--space-md); }
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
/* Cards align on the same horizontal baseline */
.cards-row .service-card:nth-child(2) { transform: none; }

.service-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: var(--shadow-card);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.cards-row .service-card:nth-child(2):hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

/* Blue heading area */
.service-heading {
  padding: 36px 32px 28px;
}
.service-card .card-label {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  display: block;
}
.service-card h3 {
  color: var(--yellow);
  font-family: var(--body);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  line-height: 1.15;
}
.card-tagline {
  font-family: var(--body);
  font-style: normal;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--yellow);
  display: block;
}

/* White inset content panel */
.service-content {
  background: var(--white);
  border-radius: 16px;
  margin: 0 14px 14px;
  padding: 32px 32px 36px;
}
.service-content p {
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════
   HOME — STORYTELLING (blob as decoration)
═══════════════════════════════════ */
.storytelling {
  background: var(--yellow);
  padding: var(--space-md) 60px var(--space-md) 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: center;
  overflow: visible;
  position: relative;
}
/* The navy blob — rotated to stand vertically */
.storytelling-blob-wrap {
  position: relative;
  width: 100%;
  height: 520px;
}
@keyframes blob-breathe {
  0%   { transform: translate(-50%, -50%) rotate(135deg) scale(1)      translate(0px, 0px); }
  20%  { transform: translate(-50%, -50%) rotate(136.5deg) scale(1.012) translate(3px, -4px); }
  45%  { transform: translate(-50%, -50%) rotate(134deg) scale(1.022)  translate(-4px, 2px); }
  65%  { transform: translate(-50%, -50%) rotate(137deg) scale(1.01)   translate(2px, 5px); }
  80%  { transform: translate(-50%, -50%) rotate(133.5deg) scale(1.018) translate(-2px, -3px); }
  100% { transform: translate(-50%, -50%) rotate(135deg) scale(1)      translate(0px, 0px); }
}
.storytelling-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1120px;
  height: auto;
}
.storytelling-blob-mobile { display: none; }
.storytelling-text { padding-left: 20px; }
.storytelling-text .eyebrow { color: var(--brown); font-style: italic; font-weight: 400; }
.storytelling-text h2 { color: var(--navy); margin-bottom: 22px; max-width: none; white-space: nowrap; }
.storytelling-text p { color: var(--navy); max-width: 580px; margin-bottom: 40px; font-size: 1.05rem; }

/* ═══════════════════════════════════
   HOME — CTA (pink blob IS the container)
═══════════════════════════════════ */
.cta-blob-section {
  background: var(--offwhite);
  padding: var(--space-md) 40px var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-blob {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.cta-blob .blob-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.cta-blob .blob-inner {
  position: relative;
  z-index: 1;
  padding: 80px 100px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-blob h2 { color: var(--white); margin-bottom: 16px; white-space: nowrap; }
.cta-blob p  { color: rgba(255,255,255,0.92); margin-bottom: 36px; font-size: clamp(1.05rem, 1.9vw, 1.5rem); font-weight: 500; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--yellow);
  padding: 80px 60px 52px;
  text-align: center;
}
.footer-logo {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: var(--brown);
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.footer-tagline {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 20px;
}
.footer-social {
  margin-bottom: 28px;
}
.footer-social a {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.8rem;
  padding: 10px 28px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  transition: background 0.3s ease;
}
.footer-social a:hover { background: var(--navy); }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  border-top: 1px solid rgba(0,68,146,0.12);
  padding-top: 24px;
}
.footer-nav a {
  font-family: var(--body);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
}
.footer-copy {
  font-size: 0.68rem;
  color: var(--navy);
  margin-top: 16px;
}

/* ═══════════════════════════════════
   ABOUT — HERO (large irregular SVG blob over navy)
═══════════════════════════════════ */
.about-hero {
  background: var(--navy);
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 40px 120px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.about-hero-blob-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-blob-png {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: auto;
  object-fit: unset;
}
.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 60px 90px;
}
.about-hero-content .eyebrow { color: var(--brown); }
.about-hero-content h1 { color: var(--navy); margin-bottom: 12px; }
.about-hero-content p  { color: var(--navy); font-size: 1.05rem; }

/* ═══════════════════════════════════
   ABOUT — QUOTE
═══════════════════════════════════ */
.about-quote {
  background: var(--offwhite);
  padding: 0 40px var(--space-md);
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-quote-img {
  display: block;
  width: calc(100% - 80px);
  max-width: 1100px;
  height: auto;
  border-radius: 4px;
  margin: 48px auto 48px;
  position: relative;
  z-index: 3;
}
.about-quote h2 {
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto var(--space-sm);
  line-height: 1.12;
}
.about-quote p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.85;
}

/* ═══════════════════════════════════
   ABOUT — STATS (irregular yellow blob container)
═══════════════════════════════════ */
.stats-section {
  background: var(--offwhite);
  padding: 40px 40px 80px;
  display: flex;
  justify-content: center;
}
.stats-blob {
  position: relative;
  width: 100%;
  max-width: 860px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: statsFloat 15s cubic-bezier(0.37, 0, 0.63, 1) infinite;
  will-change: transform;
}
.stats-blob .blob-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  object-fit: unset;
}
.stats-inner {
  position: relative;
  z-index: 1;
  padding: 90px 80px 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  width: 100%;
}
.stat-item .stat-num {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-item .stat-label {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  color: #004492;
  opacity: 1;
  line-height: 1.5;
}

/* ═══════════════════════════════════
   ABOUT — HOW I WORK
═══════════════════════════════════ */
.how-i-work-section {
  background: var(--offwhite);
  padding: 60px 40px 40px;
}
.how-i-work {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: start;
}
.how-i-work-heading h2 { color: var(--navy); }
.how-i-work-items { display: flex; flex-direction: column; gap: 24px; }
.how-i-work-item { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.value-pill {
  display: block;
  width: 220px;
  text-align: center;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  padding: 12px 28px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.how-i-work-item p { font-size: 1.05rem; color: #004492; opacity: 1; padding-top: 0; line-height: 1.7; text-align: left; }

/* About CTA button row */
.about-cta { text-align: center; padding: 40px 40px 80px; background: var(--offwhite); }
.about-cta-image { display: block; width: 100%; max-width: 900px; margin: 48px auto 0; height: auto; }

/* ═══════════════════════════════════
   SERVICES PAGE HERO
═══════════════════════════════════ */
.services-hero {
  background: var(--offwhite);
  padding: 140px 40px 40px;
  text-align: center;
}
.services-hero .eyebrow { color: var(--brown); }
.services-hero h1 { color: var(--navy); margin-bottom: 16px; }
.services-hero p { color: var(--navy); max-width: 480px; margin: 0 auto; }

/* ═══════════════════════════════════
   SERVICES — CENTERED FLOATING BLOBS
═══════════════════════════════════ */
.service-blob-section {
  background: var(--offwhite);
  padding: 20px 40px 100px;
  overflow: visible;
}

.service-row {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  overflow: visible;
}

/* Centered floating blob — sits like an object on the page */
.service-blob-c {
  position: relative;
  width: 100%;
  max-width: 980px;
  display: flex;
  justify-content: center;
}
.service-blob-c:has(.blob-bg-png) {
  max-width: 1350px;
}

.service-blob-c .blob-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(var(--shadow-blob));
  overflow: visible;
}
.service-blob-c .blob-bg-png {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
  position: relative;
}
.service-blob-c:has(.blob-bg-png) {
  display: block;
  max-width: 1200px;
}
.service-blob-c:has(.blob-bg-png) .blob-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  padding: 0;
}
.service-blob-c:has(.blob-bg-png) .service-label { margin-bottom: 4px; }
.service-blob-c:has(.blob-bg-png) h2 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin-bottom: 8px; }
.service-blob-c:has(.blob-bg-png) .blob-content > p { font-size: 1.05rem; line-height: 1.6; margin-bottom: 12px; max-width: none; }
.service-blob-c:has(.blob-bg-png) .blob-content ul { max-width: none; }
.service-blob-c:has(.blob-bg-png) .included-header { margin-bottom: 6px; }
.service-blob-c:has(.blob-bg-png) .blob-content ul { margin-bottom: 10px; }
.service-blob-c:has(.blob-bg-png) .blob-content ul li { font-size: 0.95rem; padding: 4px 0; line-height: 1.4; }
.service-blob-c:has(.blob-bg-png) .best-for-line { display: block; margin-bottom: 4px; }
.service-blob-c:has(.blob-bg-png) .best-for-text { display: block; font-size: 0.95rem; margin-bottom: 12px; }
.service-blob-c:has(.blob-bg-png) .btn { padding: 10px 28px; }

.service-blob-c .blob-content {
  position: relative;
  z-index: 1;
  padding: 72px 100px;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.service-blob-c .service-label {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-xs);
}
.service-blob-c h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  margin-bottom: var(--space-sm);
  line-height: 1.08;
}
.service-blob-c .blob-content > p {
  color: var(--white);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto var(--space-sm);
  line-height: 1.8;
}
.service-blob-c .blob-content ul {
  list-style: none;
  max-width: 480px;
  margin: 0 auto var(--space-sm);
  text-align: left;
}
.service-blob-c .blob-content ul li {
  color: var(--white);
  font-size: 0.95rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-weight: 300;
  line-height: 1.6;
}
.service-blob-c .included-header {
  margin: 0 auto var(--space-sm);
}
.service-blob-warm .service-label,
.service-blob-warm h2,
.service-blob-warm .blob-content > p,
.service-blob-warm .included-header,
.service-blob-warm .blob-content ul li,
.service-blob-warm .best-for-line,
.service-blob-warm .best-for-text { color: #fff0b8; }
.service-blob-warm .blob-content ul li { border-bottom-color: rgba(255,240,184,0.2); }

/* Keep old .service-blob for any fallback references */
.service-blob {
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-blob .blob-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.service-blob .blob-content {
  position: relative;
  z-index: 1;
  padding: 80px 90px;
  text-align: center;
  max-width: 680px;
  width: 100%;
}
.service-blob .service-label {
  display: block;
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.service-blob h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.service-blob .blob-content > p { color: rgba(255,255,255,0.8); font-size: 0.92rem; max-width: 500px; margin: 0 auto 36px; }

/* "What's Included" pill header */
.included-header {
  display: block;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.included-header.brown-text { color: var(--brown); }

.service-blob .blob-content ul { list-style: none; text-align: left; max-width: 380px; margin: 0 auto 24px; }
.service-blob .blob-content ul li {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 300;
}
.best-for-line {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  display: block;
}
.best-for-text {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: var(--space-sm);
  display: block;
  line-height: 1.65;
}

/* ═══════════════════════════════════
   PROCESS (navy section)
═══════════════════════════════════ */
.process {
  background: var(--navy);
  padding: 90px 60px;
  text-align: center;
}
.process h2 { color: var(--white); margin-bottom: 8px; }
.process .sub { color: var(--white); margin-bottom: 60px; font-size: 1rem; font-weight: 700; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 60px;
}
.process-step { text-align: left; }
.step-label {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-style: normal;
  color: var(--yellow);
  margin-bottom: 8px;
  display: block;
}
.step-pill {
  display: inline-block;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.process-step p { color: var(--white); font-size: 1rem; }

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */
.contact-hero {
  background: var(--navy);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 60px;
  position: relative;
  overflow: hidden;
}
.contact-hero-blob-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0;
}
.contact-hero-blob-png {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: auto;
  object-fit: unset;
  filter: drop-shadow(var(--shadow-hero-blob));
}
.contact-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 60px 90px;
  text-align: center;
}
.contact-hero-content .eyebrow { color: var(--brown); font-style: italic; font-weight: 400; }
.contact-hero-content h1 { color: var(--navy); margin-bottom: 14px; }
.contact-hero-content p { color: var(--navy); font-size: 1rem; max-width: 420px; margin: 0 auto; }

.contact-body {
  background: var(--offwhite);
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-circle-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 40px 0;
}
.contact-info-item { margin-bottom: 36px; }
.contact-info-item span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 6px;
}
.contact-info-item a, .contact-info-item p {
  font-family: var(--display);
  font-style: normal;
  font-size: 1.1rem;
  color: var(--navy);
  transition: color 0.25s ease;
}
.contact-info-item a:hover { color: var(--pink); }

.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(0,68,146,0.18);
  border-radius: 12px;
  padding: 18px 22px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23004492' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-success {
  display: none;
  background: var(--yellow);
  border-left: 3px solid var(--pink);
  padding: 18px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--navy);
}

/* ═══════════════════════════════════
   BLOB ANIMATIONS
   Rules: 8-16s durations, movement ≤12px, scale ≤3%
   Each blob has a different duration so they never sync
   will-change added only on elements that actually float
═══════════════════════════════════ */

/* Slow lava-lamp float — drifts X+Y+rotate simultaneously */
@keyframes blobFloat1 {
  0%   { transform: translate(-20px,  0px)  rotate(-8deg)   scale(1);    }
  20%  { transform: translate(-17px, -2px)  rotate(-6.8deg) scale(1.01); }
  42%  { transform: translate(-22px, -4px)  rotate(-9deg)   scale(1.01); }
  60%  { transform: translate(-16px, -2px)  rotate(-7.2deg) scale(1.01); }
  78%  { transform: translate(-23px, -3px)  rotate(-8.8deg) scale(1.01); }
  100% { transform: translate(-20px,  0px)  rotate(-8deg)   scale(1);    }
}
@keyframes blobFloat2 {
  0%   { transform: translate(0px,  0px)  rotate(0deg)    scale(1);    }
  25%  { transform: translate(-2px, 3px)  rotate(-1deg)   scale(1.01); }
  48%  { transform: translate(2px,  2px)  rotate(0.8deg)  scale(1.01); }
  68%  { transform: translate(-2px, 4px)  rotate(-1.2deg) scale(1.01); }
  85%  { transform: translate(3px,  2px)  rotate(0.5deg)  scale(1.01); }
  100% { transform: translate(0px,  0px)  rotate(0deg)    scale(1);    }
}
@keyframes statsFloat {
  0%   { transform: translate(0px, 0px)  scale(1);    }
  22%  { transform: translate(2px, -3px) scale(1.01); }
  48%  { transform: translate(-3px,-4px) scale(1.01); }
  70%  { transform: translate(3px, -2px) scale(1.01); }
  88%  { transform: translate(-1px,-3px) scale(1.01); }
  100% { transform: translate(0px, 0px)  scale(1);    }
}
@keyframes aboutHeroFloat {
  0%   { transform: translate(0px,   0px) scale(1);    }
  28%  { transform: translate(-3px, -4px) scale(1.01); }
  55%  { transform: translate(2px,  -4px) scale(1.02); }
  78%  { transform: translate(-2px, -2px) scale(1.01); }
  100% { transform: translate(0px,   0px) scale(1);    }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .storytelling-blob,
  .stats-blob,
  .about-hero-blob-wrap,
  .cta-blob,
  .hero-blob-svg { animation: none !important; }
  .storytelling-blob { transform: translate(-20px, 0) rotate(-8deg); }
}

/* ═══════════════════════════════════
   REVEAL
═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* Hero entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-mobile-photos { display: none; }
.about-quote-img-mobile { display: none; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.hero-photo-left { animation: fadeUp 0.9s ease both 0.1s, float 6s ease-in-out infinite 1s; }
.hero-photo-right { animation: fadeUp 0.9s ease both 0.1s, float 7.5s ease-in-out infinite 2s; }
.hero-photo-top { animation: fadeUp 0.9s ease both 0.3s, float 5s ease-in-out infinite 0.5s; }
.ha { animation: fadeUp 0.9s ease both; }
.ha-1 { animation-delay: 0.1s; }
.ha-2 { animation-delay: 0.3s; }
.ha-3 { animation-delay: 0.5s; }
.ha-4 { animation-delay: 0.7s; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 900px) {
  h1 { font-size: clamp(1.95rem, 8.5vw, 2.47rem); }
  h2, h3, .step-label { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .desktop-break { display: none; }
  :root {
    --space-xs: 12px;
    --space-sm: 20px;
    --space-md: 48px;
    --space-lg: 80px;
  }
  .hero { padding: 100px 0 60px; flex-direction: column; gap: 0; }
  .hero-photo { display: none; }
  .hero-photo-top { display: none; }
  .hero-center { gap: 0; width: 100%; max-width: 100%; }
  .hero-content { padding: 0 32px; }

  /* mobile photo row */
  .hero-mobile-photos {
    display: block;
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 36px;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .hero-mobile-photos .hmp {
    position: absolute;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.45s ease;
  }
  /* slots assigned by data-slot attribute */
  .hero-mobile-photos .hmp[data-slot="left"] {
    left: -8%; width: 38%; height: 200px; top: 80px; opacity: 0.85; z-index: 1;
  }
  .hero-mobile-photos .hmp[data-slot="center"] {
    left: 24%; width: 52%; height: 300px; top: 0; opacity: 1; z-index: 2;
  }
  .hero-mobile-photos .hmp[data-slot="right"] {
    left: 70%; width: 38%; height: 200px; top: 80px; opacity: 0.85; z-index: 1;
  }
  .about-hero { padding: 0 24px 40px; min-height: auto; align-items: flex-start; }
  .about-hero-blob-wrap { margin-top: 16px; }
  .about-hero-content { padding: 48px 32px 56px; }
  .about-quote { padding: 0 0 20px; }
  .about-quote h2, .about-quote p { padding: 0 24px; }
  .about-quote-img { display: none; }
  .about-quote-img-mobile {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 0;
    margin: 0 0 32px;
    position: relative;
    z-index: 3;
  }
  .stats-section { padding: 0 24px 0; }
  .how-i-work-section { padding: 0px 24px 32px; }
  .how-i-work { display: flex; flex-direction: column; gap: 24px; }
  .how-i-work-heading { text-align: center; width: 100%; }
  .how-i-work-heading h2 { text-align: center; }
  .how-i-work-items { gap: 16px; }
  .how-i-work-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .how-i-work-item p { text-align: center; font-size: 0.9rem; }
  .cta-blob { padding: 48px 40px; }

  .nav { padding: 20px 32px; }
  .about-page .nav, .about-page .nav.scrolled { background: var(--navy); backdrop-filter: none; }
  .services-page .nav, .services-page .nav.scrolled { background: rgba(245, 244, 240, 0.95) !important; backdrop-filter: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-close { right: 32px; }

  .cards-row { grid-template-columns: 1fr; max-width: 480px; }
  .cards-row .service-card:nth-child(2) { transform: none; }
  .cards-row .service-card:nth-child(2):hover { transform: translateY(-8px); }

  .storytelling { grid-template-columns: 1fr; text-align: center; padding: 70px 32px; overflow: hidden; }
  .storytelling-blob-wrap { display: none; }
  .storytelling-blob-mobile { display: block; width: 100%; height: auto; margin-bottom: 24px; }
  .storytelling-text { padding-left: 0; text-align: center; }
  .storytelling-text h2 { margin: 0 auto 22px; white-space: normal; }
  .storytelling-text p { margin: 0 auto 36px; }

  .cta-blob-section { overflow: visible; padding: 40px 20px; }
  .cta-blob { position: relative; min-height: 320px; width: 100%; max-width: 100%; }
  .cta-blob .blob-bg { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 110%; height: auto; object-fit: unset; display: block; }
  .cta-blob .blob-inner { position: absolute; top: 52%; left: 50%; transform: translate(-50%, -50%); width: 62%; padding: 0; }
  .cta-blob h2 { white-space: nowrap; margin-bottom: 8px; font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .cta-blob h2 br { display: none; }
  .cta-blob p { margin-bottom: 14px; font-size: 0.65rem; font-weight: 500; white-space: nowrap; }
  .cta-blob .btn { white-space: nowrap; padding: 8px 20px; font-size: 0.85rem; }

  .about-hero-blob-wrap { min-height: 320px; }
  .about-hero-blob-png { width: 162%; left: 55%; }
  .about-hero-content h1 em { letter-spacing: 0.03em; }
  .about-hero-content { padding: 60px 40px 70px; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); padding: 60px 16px 40px; gap: 8px; }
  .stat-item .stat-num { font-size: clamp(1.8rem, 7vw, 3rem); margin-bottom: 6px; }
  .stat-item .stat-label { font-size: 0.8rem; }
  .how-i-work-section { padding: 0 32px 32px; }
  .how-i-work { grid-template-columns: 1fr; gap: 32px; }
  .how-i-work-item { grid-template-columns: 1fr; gap: 10px; }
  .about-cta-image { width: 100vw; max-width: 100vw; margin: 48px 0 0 calc(-50vw + 50%); height: 315px; object-fit: cover; object-position: center top; }

  /* ── Services page mobile ── */
  .services-hero { padding: 100px 24px 40px; }
  .services-hero p { max-width: none; }
  .service-blob-section { padding: 0 0 60px; overflow: hidden; }
  .service-row { padding: 0; overflow: visible; }

  /* Scale blob PNG up so it's tall enough to hold all content — allow horizontal overflow */
  .service-blob-c:has(.blob-bg-png) { max-width: 100%; overflow: visible; }
  .service-blob-c .blob-bg-png {
    width: 320%;
    margin-left: -110%;
  }

  /* Keep content centered over the blob */
  .service-blob-c:has(.blob-bg-png) .blob-content {
    width: 82%;
    top: 52%;
  }

  /* Scale down h2 inside service blobs */
  .service-blob-c:has(.blob-bg-png) h2 { font-size: clamp(1.6rem, 7vw, 2.1rem); }


  .service-blob { min-height: 460px; }
  .service-blob .blob-content { padding: 60px 48px; }
  .service-blob-h { width: 100%; min-height: 520px; flex-direction: column; }
  .service-row-left .service-blob-h { margin-left: 0; }
  .service-row-right .service-blob-h { margin-left: 0; }
  .service-blob-h .blob-content { padding: 60px 40px; max-width: 100%; }
  .service-row-right .blob-content { margin-left: 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
  .step-pill { margin-bottom: 0; }
  .step-label { margin-bottom: 0; }
  .process-step p { width: 100%; margin-top: 8px; text-align: center; }
  .contact-body { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px; }
  .contact-circle-img { display: none; }
  .what-i-do { padding: 80px 32px; }
  .process { padding: 70px 32px; }
  .footer { padding: 60px 32px 40px; }

  /* ── Contact page mobile ── */
  .contact-hero { padding: 80px 24px 100px; min-height: unset; }
  .contact-hero-blob-wrap { min-height: auto; align-items: center; padding-top: 0; padding-bottom: 0; }
  .contact-hero-blob-png { width: 190%; left: 55%; }
  .contact-hero-content { padding: 20px 44px 60px; }
  .contact-hero-content h1 { font-size: clamp(1.95rem, 8.5vw, 2.47rem); }
  .contact-hero-content p { font-size: 0.88rem; }
  .contact-p-break { display: block; }
  .nav.nav-over-blob .nav-logo { color: #a67765; }
  .nav.nav-over-blob .nav-hamburger span { background: #a67765; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(1.95rem, 8.5vw, 2.47rem); }
  .process-steps { grid-template-columns: 1fr; }
  .service-blob { min-height: 380px; }
  .service-blob .blob-content { padding: 50px 28px; }
  .service-blob-h .blob-content { padding: 50px 28px; }
  .cta-blob .blob-inner { padding: 0; }
  .service-heading { padding: 28px 24px 20px; }
  .service-content { margin: 0 10px 10px; padding: 20px 20px 24px; }
}

