/* Palette: lime accent (#D3D645), deep navy (#0F1729), warm cream (#F8F6F0)
   Typography: Fraunces (display serif) + Manrope (body sans) */

:root {
  --color-lime: #D3D645;
  --color-lime-dim: #B8BB3A;
  --color-navy: #0F1729;
  --color-navy-soft: #1F2A44;
  --color-cream: #F8F6F0;
  --color-cream-dark: #EFEBE0;
  --color-white: #FFFFFF;
  --color-gray: #6B7280;
  --color-gray-light: #D1D5DB;
  --color-line: #E5E1D5;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --max-width: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow-soft: 0 1px 2px rgba(15,23,41,0.04), 0 12px 32px -12px rgba(15,23,41,0.10);
  --shadow-lift: 0 1px 2px rgba(15,23,41,0.06), 0 24px 48px -16px rgba(15,23,41,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-navy);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography utilities */

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-navy);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-navy);
  opacity: 0.5;
  display: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--color-navy);
  font-variation-settings: "SOFT" 30, "WONK" 0;
}

h1 { font-size: clamp(40px, 6.4vw, 86px); line-height: 0.98; }
h2 { font-size: clamp(32px, 4.8vw, 56px); line-height: 1.04; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; }
h4 { font-size: 19px; line-height: 1.25; }

.italic-accent { font-style: italic; font-weight: 300; }

p.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--color-navy-soft);
  max-width: 60ch;
}

/* Highlight = lime underline (hand-drawn feel) */
.highlight {
  background-image: linear-gradient(transparent 60%, var(--color-lime) 60%, var(--color-lime) 92%, transparent 92%);
  padding: 0 2px;
}

/* Layout */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(64px, 9vw, 120px) 0; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: var(--radius-sm);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-navy);
  color: var(--color-cream);
}
.btn-primary:hover {
  background: var(--color-navy-soft);
  box-shadow: var(--shadow-lift);
}

.btn-lime {
  background: var(--color-lime);
  color: var(--color-navy);
}
.btn-lime:hover { background: var(--color-lime-dim); box-shadow: var(--shadow-lift); }

.btn-ghost {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid rgba(15,23,41,0.18);
}
.btn-ghost:hover { background: var(--color-navy); color: var(--color-cream); border-color: var(--color-navy); }

.btn-arrow { transition: transform 0.18s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid var(--color-navy);
  padding-bottom: 2px;
  transition: gap 0.18s ease;
}
.text-link:hover { gap: 12px; }

/* Navigation */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 240, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--color-line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-logo { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-lime);
  transition: width 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--color-cream);
    padding: 24px var(--gutter);
    gap: 20px;
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }
  .nav-cta .btn:not(.btn-toggle) { display: none; }
}

/* HERO (homepage) */

.hero {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(64px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow { margin-bottom: 24px; }

.hero-headline {
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-navy-soft);
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--color-navy-soft);
  max-width: 56ch;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-navy-soft);
}
.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 4px;
}

/* Hero photo with editorial frame */
.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  filter: contrast(1.02) saturate(0.95);
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: var(--color-lime);
  z-index: 1;
}
.hero-photo-tag {
  position: absolute;
  z-index: 3;
  bottom: -20px; left: -20px;
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  max-width: 270px;
  line-height: 1.4;
}
.hero-photo-tag em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin-top: 4px;
  color: var(--color-lime);
}
@media (max-width: 880px) { .hero-photo-wrap { max-width: 100%; margin-left: 0; } }

/* Trusted By strip */

.featured {
  padding: 40px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-cream);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-items: center;
}
@media (max-width: 720px) {
  .featured-inner { grid-template-columns: 1fr; gap: 20px; text-align: center;}
}
.featured-label {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-navy);
  opacity: 0.6;
  max-width: 140px;
  line-height: 1.5;
  white-space: nowrap;
}
.featured-logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 720px) { .featured-logos { justify-content: center; } }
.featured-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--color-navy);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.featured-logo:hover { opacity: 1; }
.featured-logo.bold { font-weight: 700; }

/* STORY */

.story {
  background: var(--color-cream);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }

.story-aside { position: sticky; top: 110px; }
@media (max-width: 880px) { .story-aside { position: static; } }

.story-aside h2 { margin: 18px 0 24px; }

.pull-quote {
  border-left: 3px solid var(--color-lime);
  padding: 4px 0 4px 22px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-navy);
  font-weight: 400;
}

.story-body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-navy-soft);
  margin-bottom: 22px;
}
.story-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--color-navy);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}
.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--color-white);
}

/* VALUE PILLARS */

.pillars {
  background: var(--color-navy);
  color: var(--color-cream);
}
.pillars h2 { color: var(--color-cream); margin-bottom: 16px; }
.pillars .eyebrow { color: var(--color-lime); opacity: 1; }
.pillars .eyebrow::before { background: var(--color-lime); opacity: 1; display: none;}
.pillars-intro { margin-bottom: 64px; max-width: 60ch; opacity: 0.85; }
.pillars p.lead { color: var(--color-cream); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.pillar {
  padding: 36px 28px;
  background: var(--color-navy);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease;
}
.pillar:hover { background: var(--color-navy-soft); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-lime);
  font-weight: 500;
}
.pillar h4 {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(248,246,240,0.72);
}

/* SERVICES PREVIEW (homepage) */

.services-preview h2 { margin-bottom: 16px; }
.services-preview-intro { margin-bottom: 56px; max-width: 56ch; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.svc-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--color-lime);
  transition: width 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.svc-card:hover::before { width: 100%; }

.svc-card-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-gray);
  letter-spacing: 1px;
}
.svc-card h3 { font-size: 24px; font-weight: 500; }
.svc-card p {
  color: var(--color-navy-soft);
  font-size: 15px;
  line-height: 1.55;
  flex-grow: 1;
}
.svc-card .text-link { margin-top: 8px; align-self: flex-start; }

/* Services PAGE (detailed) */

.services-hero {
  padding: clamp(72px, 8vw, 110px) 0 clamp(48px, 6vw, 72px);
  background-color:#0F1729
}
.services-hero h1 {
  max-width: 18ch;
  margin: 24px 0 28px;
  color:#D1D5DB
}
.services-hero p { max-width: 60ch; 
color:#D1D5DB
}

#services-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color:#D1D5DB;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

#services-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: #D1D5DB;
  opacity: 0.5;
  display: none;
}


.svc-detail {
  border-top: 1px solid var(--color-line);
  padding: clamp(56px, 7vw, 88px) 0;
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 24px; }
}
.svc-detail-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-lime);
  line-height: 1;
}
.svc-detail-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 12px;
}
.svc-detail-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-navy-soft);
  opacity: 0.7;
  margin-bottom: 18px;
}
.svc-detail-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-navy-soft);
  margin-bottom: 24px;
}
.svc-detail-list {
  list-style: none;
  margin-bottom: 28px;
}
.svc-detail-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  font-size: 15px;
  color: var(--color-navy);
}
.svc-detail-list li::before {
  content: '';
  color: var(--color-lime-dim);
  font-weight: 600;
}


/* FINAL CTA BAND */

.cta-band {
  background: var(--color-navy);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 80px);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: var(--color-lime);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(40px);
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 720px) { .cta-band-inner { grid-template-columns: 1fr; } }

.cta-band h2 { color: var(--color-cream); max-width: 14ch; }
.cta-band h2 em { color: var(--color-lime); font-style: italic; font-weight: 300; }
.cta-band p {
  color: rgba(248,246,240,0.78);
  font-size: 17px;
  margin: 20px 0 32px;
  max-width: 50ch;
}
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-self: center; align-self: center;  margin-right: 180px;}
@media (max-width: 720px) { .cta-band-actions { justify-self: start; } }

.cta-band-actions .btn { padding: 24px 44px; font-size: 17px; }


/* BOOKING PAGE */

.booking-hero {
  padding: clamp(64px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  text-align: left;
  background-color: #0F1729;
}
.booking-hero h1 {
  max-width: 16ch;
  margin: 24px 0 24px;
  color: #D1D5DB;
}
.booking-hero p { max-width: 60ch; font-size: 19px; color: #D1D5DB; }

.booking-hero .eyebrow {
  color: #D1D5DB;
}

.booking-hero .eyebrow::before {
  background-color: #D1D5DB;
  display: none;
}

.booking-section {
  padding: clamp(40px, 5vw, 72px) 0 clamp(72px, 9vw, 120px);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 980px) { .booking-grid { grid-template-columns: 1fr; } }

/* Form */
.form {
  background: var(--color-white);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--color-navy);
}
.field label .req { color: var(--color-lime-dim); margin-left: 2px; }
.field label .opt {
  color: var(--color-gray);
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}

.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--color-line);
  background: var(--color-cream);
  color: var(--color-navy);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%230F1729' d='M6 8 0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 10px; padding-right: 36px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(211, 214, 69, 0.25);
}
.field .error-msg {
  font-size: 12.5px;
  color: #B23A48;
  display: none;
  font-weight: 500;
}
.field.has-error .error-msg { display: block; }
.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: #B23A48; }

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.form-submit button { width: 100%; justify-content: center; padding: 18px; font-size: 15px; }
.form-disclaimer {
  font-size: 12.5px;
  color: var(--color-gray);
  line-height: 1.5;
}

.form-success {
  display: none;
  background: var(--color-lime);
  color: var(--color-navy);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-weight: 500;
}
.form-success.is-visible { display: block; }
.form-success strong { font-family: var(--font-display); font-size: 19px; display: block; margin-bottom: 4px; }

/* Booking Aside */
.booking-aside {}
@media (max-width: 980px) { .booking-aside { position: static; } }

.aside-card {
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 32px 28px;
  margin-bottom: 24px;
}
.aside-card h3 {
  color: var(--color-cream);
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 500;
}

.expect-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.expect-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.expect-list li .step {
  width: 32px; height: 32px;
  background: var(--color-lime);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
}
.expect-list li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 2px;
  color: var(--color-cream);
}
.expect-list li span {
  font-size: 14px;
  color: rgba(248,246,240,0.72);
  line-height: 1.5;
}

.testi-card {
  background: var(--color-cream-dark);
  padding: 28px;
  border-left: 3px solid var(--color-lime);
}
.testi-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-navy);
  margin-bottom: 16px;
}
.testi-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--color-navy-soft);
  font-weight: 500;
}

/* FOOTER */

.footer {
  background: var(--color-cream);
  color: var(--color-navy-soft);
  padding: 64px clamp(24px, 5vw, 64px) 100px; 
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand p {
  margin-top: 18px;
  font-size: 16px;
  max-width: 40ch;
  line-height: 1.55;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-lime);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--color-navy-soft);
  transition: color 0.18s ease;
}
.footer ul a:hover { color: var(--color-lime); }

.footer-base {
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-navy-soft);
}
.footer-logo .mark {
  width: 40px; height: 40px;
  background: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 18px;
}

/* SCROLL REVEAL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
