/* ============================================================
   COVERED BY SABRINA — Stylesheet
   Colors: Navy #1C3A6E | Teal #3DBFBF | Off-white #F7F9FB
   ============================================================ */

:root {
  --navy:       #1C3A6E;
  --navy-dark:  #142d58;
  --teal:       #3DBFBF;
  --teal-light: #6fd4d4;
  --teal-faint: #edf8f8;
  --white:      #ffffff;
  --off-white:  #F7F9FB;
  --gray-100:   #f0f2f5;
  --gray-200:   #e2e6ec;
  --gray-400:   #9aa5b4;
  --gray-600:   #4a5568;
  --gray-800:   #2d3748;
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --max-width:  1160px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --radius:     12px;
  --shadow-sm:  0 2px 12px rgba(28,58,110,0.07);
  --shadow-md:  0 8px 32px rgba(28,58,110,0.10);
  --shadow-lg:  0 20px 60px rgba(28,58,110,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
p { color: var(--gray-600); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: var(--navy); line-height: 1.15; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--navy); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding: var(--section-pad) 0; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(61,191,191,0.35);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61,191,191,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(28,58,110,0.4);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(61,191,191,0.3);
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* === LOGO COMPONENT === */
.logo-html {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0;
}
.logo-script {
  font-family: var(--font-script);
  color: var(--navy);
  line-height: 0.85;
  display: block;
}
.logo-sub-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-bysabrina {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}
.logo-swoosh-svg { display: flex; align-items: center; }
.logo-swoosh-svg svg { height: auto; }

/* Nav size */
.nav .logo-script    { font-size: 2rem; }
.nav .logo-bysabrina { font-size: 0.52rem; }
.nav .logo-swoosh-svg svg { width: 58px; }

/* Footer: invert colors via currentColor cascade */
.footer .logo-html .logo-script    { color: rgba(255,255,255,0.88); }
.footer .logo-html .logo-bysabrina { color: var(--teal-light); }
.footer .logo-html .logo-swoosh-svg { color: var(--teal-light); }
.footer .logo-html p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.nav-logo-img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-active { color: var(--navy) !important; font-weight: 500 !important; }
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--teal-light) !important; transform: translateY(-1px); }
.nav-active-cta { background: var(--navy) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.25rem 0; }
.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 400;
}
.mobile-link-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 500;
  margin-top: 1rem;
}

/* === SHARED PAGE ELEMENTS === */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}
.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-headline em { color: var(--teal); }
.section-intro { font-size: 1.05rem; max-width: 560px; color: var(--gray-600); }
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* === SWOOSH DIVIDER === */
.swoosh-divider {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1.5rem;
}
.swoosh-divider svg { width: min(420px, 90%); height: auto; }

/* === DOT GRID GRAPHIC === */
.dot-grid {
  position: absolute;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(61,191,191,0.4) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}
.dot-grid--photo { bottom: -24px; left: -24px; z-index: 0; }
.dot-grid--story { bottom: -20px; right: -20px; z-index: 0; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* === HERO GRAPHIC ANIMATIONS === */
@keyframes badge-float-1 {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-10px); }
}
@keyframes badge-float-2 {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-8px);  }
}
@keyframes badge-float-3 {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-12px); }
}
@keyframes shield-breathe {
  0%, 100% { opacity: 1;    transform: scale(1);    }
  50%       { opacity: 0.88; transform: scale(1.04); }
}
@keyframes hero-bg-drift {
  0%, 100% { background-position: 0% 50%;   }
  50%       { background-position: 100% 50%; }
}

.badge-float-1 { animation: badge-float-1 4s ease-in-out infinite; }
.badge-float-2 { animation: badge-float-2 5.2s ease-in-out infinite 0.8s; }
.badge-float-3 { animation: badge-float-3 4.6s ease-in-out infinite 1.6s; }
.shield-group {
  transform-box: fill-box;
  transform-origin: center;
  animation: shield-breathe 5s ease-in-out infinite;
}

/* === HERO === */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 11rem);
  background: linear-gradient(-45deg, #eaf4f7, #f3f7fa, #e8f5f5, #f0f6f9);
  background-size: 400% 400%;
  animation: hero-bg-drift 14s ease infinite;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,191,191,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-faint);
  border: 1px solid rgba(61,191,191,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-headline em { color: var(--teal); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-graphic { display: flex; align-items: center; justify-content: center; }
.hero-svg { width: 100%; max-width: 600px; height: auto; }
.hero-swoosh { position: relative; height: 60px; margin-bottom: -2px; }
.hero-swoosh svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }

/* === TRUST BAR === */
.trust-bar { background: var(--off-white); padding: 3rem 0; }
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; padding: 0.5rem 3rem; }
.trust-num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--navy); font-weight: 500; line-height: 1; }
.trust-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); margin-top: 0.35rem; font-weight: 500; }
.trust-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* === ABOUT TEASER === */
.about-teaser { background: var(--white); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-teaser-photo { position: relative; }
.about-photo-placeholder {
  position: relative;
  z-index: 1;
  background: var(--gray-100);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-inner { text-align: center; }
.photo-icon { width: 64px; height: 64px; margin: 0 auto 1rem; opacity: 0.4; }
.photo-inner p { font-size: 0.85rem; color: var(--gray-400); }
.about-photo-accent {
  position: absolute;
  bottom: -14px; right: -14px;
  width: 75%; height: 75%;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  opacity: 0.18;
  z-index: 0;
}

/* === SECTION BG GRAPHIC === */
.section-bg-graphic {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  pointer-events: none;
  z-index: 0;
}
.coverage { position: relative; background: var(--off-white); }
.coverage .container { position: relative; z-index: 1; }

/* === COVERAGE CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(61,191,191,0.2); }
.card:hover::before { opacity: 1; }
.card-icon-wrap { width: 44px; height: 44px; margin-bottom: 1.25rem; }
.card h3 { font-family: var(--font-sans); font-weight: 500; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.6rem; }
.card p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 0; line-height: 1.65; }

/* === CARRIERS === */
.carriers { background: var(--white); }
.carriers-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.carrier-badge {
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--gray-600);
  background: var(--off-white);
  transition: var(--transition);
  cursor: default;
}
.carrier-badge:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-faint); transform: translateY(-2px); }
.carriers-note { font-size: 0.875rem; color: var(--gray-400); font-style: italic; }

/* === WHY SECTION (dark) === */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
}
.why-graphic {
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  pointer-events: none;
}
.why-graphic svg { width: 100%; height: 100%; }
.why .section-tag { color: var(--teal-light); }
.why .section-headline { color: var(--white); }
.why .section-headline em { color: var(--teal-light); }
.why p { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
.pillar {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pillar:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.pillar-num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--teal); opacity: 0.5; flex-shrink: 0; line-height: 1.3; }
.pillar h4 { color: var(--white); font-family: var(--font-sans); font-weight: 500; font-size: 0.95rem; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.875rem; margin-bottom: 0; }

/* === CTA BANNER === */
.cta-banner { background: var(--off-white); }
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  background: var(--white);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.cta-banner-text .section-headline { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.cta-banner-action { text-align: right; flex-shrink: 0; }
.cta-banner-action p { font-size: 0.9rem; margin-bottom: 1.25rem; max-width: 240px; margin-left: auto; }
.cta-banner-graphic {
  position: absolute;
  right: clamp(180px, 25%, 300px);
  top: 50%; transform: translateY(-50%);
  width: 120px; height: 120px;
  opacity: 0.6;
  pointer-events: none;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: 0;
  background: linear-gradient(145deg, #eaf4f7 0%, #f3f7fa 55%, #fff 100%);
  overflow: hidden;
}
.page-hero-graphic {
  position: absolute;
  top: 0; right: 0;
  width: 62%; max-width: 820px;
  height: 100%;
  pointer-events: none;
}
.page-hero-graphic svg { width: 100%; height: 100%; }

.contact-hero-photo {
  position: absolute;
  top: 0; right: 0;
  width: 58%; height: 100%;
  pointer-events: none;
}
.contact-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.contact-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(234,244,247,0.7) 0%, rgba(234,244,247,0.25) 22%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.contact-hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  z-index: 2;
  pointer-events: none;
}
.page-hero--contact .page-hero-inner {
  max-width: 44%;
  margin-left: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gray-400); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal); }
.page-hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-faint);
  border: 1px solid rgba(61,191,191,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.page-hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1rem;
  max-width: 600px;
}
.page-hero-headline em { color: var(--teal); }
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 480px;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE HERO ANIMATIONS
   ============================================================ */
@keyframes about-ring-pulse {
  0%, 100% { transform: scale(1);    opacity: 1;    }
  50%       { transform: scale(1.06); opacity: 0.5; }
}
.about-ring-1 { animation: about-ring-pulse 5s ease-in-out infinite;       transform-box: fill-box; transform-origin: center; }
.about-ring-2 { animation: about-ring-pulse 5s ease-in-out infinite 1.7s;  transform-box: fill-box; transform-origin: center; }
.about-ring-3 { animation: about-ring-pulse 5s ease-in-out infinite 3.4s;  transform-box: fill-box; transform-origin: center; }
.about-shield-group { animation: shield-breathe 6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.story-photo-col { position: relative; }
.story-photo-wrap { position: relative; margin-bottom: 2rem; }
.story-photo-placeholder {
  position: relative;
  z-index: 1;
  background: var(--gray-100);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.signature-block {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}
.signature-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.signature-title { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); font-weight: 500; }
.story-subhead { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }

/* === VALUES === */
.values { background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 56px; height: 56px; margin: 0 auto 1.25rem; }
.value-card h3 { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { background: var(--white); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.contact-info-heading em { color: var(--teal); }
.contact-methods { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--teal); background: var(--teal-faint); }
.contact-method-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  color: var(--teal);
}
.contact-method-icon svg { width: 18px; height: 18px; }
.contact-method-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); font-weight: 500; margin-bottom: 0.15rem; }
.contact-method-value { font-size: 0.9rem; color: var(--navy); font-weight: 400; }

.contact-expect { margin-top: 2.5rem; }
.expect-step {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.expect-step:last-child { border-bottom: none; }
.expect-num {
  width: 28px; height: 28px;
  background: var(--teal-faint);
  border: 1.5px solid rgba(61,191,191,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.expect-step strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.expect-step p { font-size: 0.85rem; margin-bottom: 0; }
.contact-info-graphic { margin-top: 2rem; }

.contact-form-col { position: sticky; top: 100px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
  font-weight: 400;
}

/* === PHOTO STYLES === */
/* Full-color: About page */
.story-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.story-photo-placeholder { min-height: 400px; }

/* Duotone / silhouette: Home teaser */
.photo-duotone-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-100);
}
.photo-duotone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* === FORM ELEMENTS === */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.form-group:last-of-type { margin-bottom: 1.5rem; }
label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.45rem;
}
input, select, textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-800);
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61,191,191,0.12);
  background: var(--white);
}
textarea { resize: vertical; min-height: 100px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa5b4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-note { font-size: 0.8rem; color: var(--gray-400); text-align: center; margin-top: 1rem; margin-bottom: 0; }

/* === FOOTER === */
.footer { background: var(--navy-dark); padding: 3rem 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-logo img { height: 44px; width: auto; background: white; padding: 5px 10px; border-radius: 8px; margin-bottom: 0.75rem; display: block; }
.footer-logo p { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0; }
.footer-links { display: flex; gap: 2rem; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-legal { text-align: right; }
.footer-legal p { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-col { position: static; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-graphic { display: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser-grid,
  .why-grid,
  .story-grid,
  .contact-page-grid { grid-template-columns: 1fr; }
  .about-teaser-photo { max-width: 420px; }
  .story-photo-col { max-width: 380px; }
  .trust-item { padding: 0.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo img { margin: 0 auto 0.5rem; }
  .footer-legal { text-align: center; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-action { text-align: left; }
  .cta-banner-action p { margin-left: 0; }
  .cta-banner-graphic { display: none; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-bar { padding: 1.5rem 0; }
  .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-item { padding: 1rem 0.75rem; border-bottom: 1px solid var(--gray-200); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--gray-200); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .hero { padding-top: 4.5rem; }
  .hero-inner { padding-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .page-hero-graphic { display: none; }
  /* Contact hero: stack photo below text on mobile */
  .page-hero--contact .page-hero-inner {
    max-width: 100%;
    padding-bottom: 1.5rem;
  }
  .contact-hero-photo {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    height: 260px;
  }
  .contact-hero-photo::before {
    background: linear-gradient(to bottom, rgba(234,244,247,0.45) 0%, transparent 20%);
  }
  .contact-info-graphic { display: none; }
  .photo-duotone-frame { max-height: 460px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-headline, .page-hero-headline { font-size: 2.2rem; }
  .section-headline { font-size: 1.7rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav-logo-img { height: 38px; }
}
