/* ============================================================
   LEVERAGE LOGIC — Global Stylesheet
   leveragelogic.co | Warm Minimal palette
   ============================================================
   TABLE OF CONTENTS
   1.  CSS Custom Properties (Design Tokens)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Navigation
   6.  Buttons
   7.  Hero Section
   8.  Value Props Section
   9.  How It Works Strip
   10. Social Proof / Callout
   11. CTA Band
   12. Page Hero (inner pages)
   13. About Page
   14. Services Page
   15. Contact Page
   16. Privacy Policy Page
   17. Footer
   18. Animations & Scroll Reveal
   19. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* === Warm Minimal Brand Palette === */
  --cream:         #F4F1EA;   /* Primary background */
  --cream-mid:     #EAE6DC;   /* Alternate section backgrounds, card backgrounds */
  --cream-dark:    #DDD8CC;   /* Borders, dividers */
  --charcoal:      #2A2928;   /* Primary text */
  --charcoal-mid:  #4A4745;   /* Secondary / body text */
  --charcoal-light:#6E6B68;   /* Muted / caption text */
  --sage:          #6B826E;   /* Accent — CTAs, highlights, icons */
  --sage-dark:     #556657;   /* Sage hover state */
  --sage-light:    rgba(107, 130, 110, 0.10); /* Soft sage tint for backgrounds */
  --sage-border:   rgba(107, 130, 110, 0.25); /* Sage-tinted borders */

  /* Supporting / feedback colors */
  --gold:          #B07D3A;   /* Warm gold for value callouts (desaturated to fit palette) */
  --red:           #C0392B;   /* Urgency / alerts */
  --white:         #FFFFFF;

  /* Semantic aliases — makes the rest of the CSS intent-readable */
  --bg:            var(--cream);
  --bg-alt:        var(--cream-mid);
  --text:          var(--charcoal);
  --text-body:     var(--charcoal-mid);
  --text-muted:    var(--charcoal-light);
  --border:        var(--cream-dark);
  --accent:        var(--sage);
  --accent-hover:  var(--sage-dark);

  /* Typography */
  --font-display: 'Outfit', sans-serif;      /* Headlines — 700/800 */
  --font-body:    'Work Sans', sans-serif;   /* Body, nav, UI */

  /* Spacing (8px base) */
  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-5:  3rem;
  --space-6:  4rem;
  --space-7:  6rem;
  --space-8:  8rem;

  /* Layout */
  --max-width:        1160px;
  --nav-height:       68px;
  --radius:           6px;
  --radius-lg:        12px;
  --radius-xl:        20px;

  /* Shadows — warm-tinted, not grey */
  --shadow-sm:  0 1px 3px rgba(42, 41, 40, 0.08);
  --shadow-md:  0 4px 16px rgba(42, 41, 40, 0.10);
  --shadow-lg:  0 8px 32px rgba(42, 41, 40, 0.12);

  --transition: 0.2s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

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


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.25;
  color: var(--charcoal);
}

h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--charcoal);
}

p {
  color: var(--text-body);
  max-width: 66ch;
}

/* Eyebrow — small label above a heading */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-2);
}

/* Inline accent word */
.text-sage   { color: var(--sage); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }

/* Strong within body text */
strong {
  font-weight: 600;
  color: var(--charcoal);
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section      { padding: var(--space-7) 0; }
.section--sm  { padding: var(--space-5) 0; }
.section--alt { background: var(--bg-alt); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-5) 0;
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav__logo span { color: var(--sage); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: var(--charcoal); }

.nav__links .nav__cta {
  background: var(--sage);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition);
}

.nav__links .nav__cta:hover { background: var(--sage-dark); color: var(--white); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(244, 241, 234, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3);
  flex-direction: column;
  gap: var(--space-1);
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.nav__mobile-menu.open { display: flex; }

.nav__mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu a:hover { color: var(--sage); }


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}

/* Primary — sage fill */
.btn--primary {
  background: var(--sage);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Outline — charcoal border */
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--charcoal);
  background: rgba(42, 41, 40, 0.04);
}

/* Ghost — text only */
.btn--ghost {
  background: transparent;
  color: var(--sage);
  padding: 0;
  font-weight: 600;
}

.btn--ghost:hover { gap: 0.75rem; }

.btn--lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-height) + var(--space-8));
  padding-bottom: var(--space-7);
  position: relative;
  /* Subtle warm texture via radial gradient */
  background: radial-gradient(ellipse 80% 60% at 110% -10%, rgba(107,130,110,0.06) 0%, transparent 65%),
              var(--cream);
}

.hero__content { max-width: 760px; }

.hero__headline { margin-bottom: var(--space-3); }

/* The italic accent inside the headline */
.hero__headline em {
  font-style: italic;
  color: var(--sage);
}

.hero__subhead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-body);
  margin-bottom: var(--space-5);
  max-width: 60ch;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Proof line */
.hero__proof {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero__proof-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cream-dark);
  flex-shrink: 0;
}


/* ============================================================
   8. VALUE PROPS (3-column)
   ============================================================ */
.value-props {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-card {
  padding: var(--space-4) 0;
  border-right: 1px solid var(--border);
  padding-right: var(--space-4);
  padding-left: var(--space-1);
}

.value-card:last-child { border-right: none; }

/* Small numbered label */
.value-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: var(--space-2);
  /* Pure CSS number — no icon dependency */
  user-select: none;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-1);
}

.value-card p {
  font-size: 0.9375rem;
  max-width: none;
  line-height: 1.65;
}


/* ============================================================
   9. HOW IT WORKS STRIP
   ============================================================ */
.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
  position: relative;
}

/* Connecting rule between steps */
.how-it-works__steps::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border);
  pointer-events: none;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--sage);
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
  transition: background var(--transition), border-color var(--transition);
}

.step:hover .step__num {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.step h4 { margin-bottom: 0.375rem; }

.step p {
  font-size: 0.9rem;
  max-width: none;
}


/* ============================================================
   10. SOCIAL PROOF / FOUNDING CALLOUT
   ============================================================ */
.callout-band {
  background: var(--sage-light);
  border: 1px solid var(--sage-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.callout-band__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(107, 130, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.callout-band__text {
  flex: 1;
  min-width: 200px;
}

.callout-band__text p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  max-width: none;
  line-height: 1.5;
}

.callout-band__text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}


/* ============================================================
   11. CTA BAND
   ============================================================ */
.cta-band {
  background: var(--charcoal);
  padding: var(--space-7) 0;
}

.cta-band__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.cta-band p {
  color: rgba(244, 241, 234, 0.65);
  margin: 0 auto var(--space-5);
  font-size: 1.05rem;
}

/* Inverted buttons on dark background */
.btn--primary-inv {
  background: var(--cream);
  color: var(--charcoal);
}

.btn--primary-inv:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}


/* ============================================================
   12. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-6));
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: var(--space-2);
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 56ch;
  line-height: 1.7;
}


/* ============================================================
   13. ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-6);
  align-items: start;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: var(--space-3);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-3));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-body p {
  max-width: none;
  margin-bottom: var(--space-3);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.about-body p:last-child { margin-bottom: 0; }

/* The pull-quote / thesis line */
.about-thesis {
  border-left: 3px solid var(--sage);
  padding-left: var(--space-3);
  margin: var(--space-4) 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.6;
  max-width: none;
}


/* ============================================================
   14. SERVICES PAGE
   ============================================================ */
/* Service feature blocks — full-width alternating layout */
.service-block {
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-of-type { border-bottom: none; }

.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-5);
  align-items: start;
}

.service-block__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-1);
  display: block;
}

.service-block h3 { margin-bottom: var(--space-2); }

.service-block p {
  max-width: none;
  font-size: 1rem;
  line-height: 1.75;
}

/* Pricing card — retainer offering */
.pricing-note {
  background: var(--sage-light);
  border: 1px solid var(--sage-border);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  margin-top: var(--space-3);
}

/* How engagements start box */
.engagement-start {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--border);
}

.engagement-start h3 { margin-bottom: var(--space-2); }

.engagement-start p {
  max-width: none;
  font-size: 1rem;
  margin-bottom: var(--space-4);
}

/* FAQ */
.faq { margin-top: var(--space-2); }

.faq__item { border-bottom: 1px solid var(--border); }

.faq__question {
  width: 100%;
  text-align: left;
  padding: var(--space-3) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--space-3);
  transition: color var(--transition);
  font-family: var(--font-body);
}

.faq__question:hover { color: var(--sage); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq__item.open .faq__chevron { transform: rotate(180deg); }
.faq__item.open .faq__question { color: var(--sage); }

.faq__answer {
  display: none;
  padding-bottom: var(--space-3);
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: none;
}

.faq__item.open .faq__answer { display: block; }


/* ============================================================
   15. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-6);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--space-2); }

.contact-info > p {
  max-width: none;
  margin-bottom: var(--space-4);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9375rem;
  color: var(--text-body);
  margin-bottom: var(--space-2);
}

.contact-detail svg { flex-shrink: 0; color: var(--sage); }

.contact-detail a {
  color: var(--sage);
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--sage-dark); }

/* Calendly placeholder box */
.calendly-placeholder {
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  margin-top: var(--space-5);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.calendly-placeholder p { max-width: none; margin: 0; }

/* Contact form */
.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.form__group { margin-bottom: var(--space-3); }

.form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--charcoal-light);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 130, 110, 0.12);
}

.form__group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form__group 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='%236E6B68' 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__group select option { background: var(--cream); }

.form__optional {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.25rem;
}

.form__submit { width: 100%; justify-content: center; }

.form__message {
  display: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: var(--space-2);
}

.form__message--success {
  background: rgba(107, 130, 110, 0.10);
  border: 1px solid var(--sage-border);
  color: var(--sage-dark);
}

.form__message--error {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: var(--red);
}


/* ============================================================
   16. PRIVACY POLICY PAGE
   ============================================================ */
.privacy-wrap {
  max-width: 720px;
}

.privacy-wrap .last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  display: block;
}

.privacy-toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-5);
  font-size: 0.9rem;
}

.privacy-toc h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.privacy-toc ol {
  list-style: decimal;
  padding-left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.privacy-toc ol li a {
  color: var(--charcoal-mid);
  transition: color var(--transition);
}

.privacy-toc ol li a:hover { color: var(--sage); }

.privacy-section {
  margin-bottom: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.privacy-section:first-of-type { border-top: none; padding-top: 0; }

.privacy-section h2 {
  font-size: 1.3rem;
  margin-bottom: var(--space-2);
}

.privacy-section p,
.privacy-section li {
  font-size: 0.9375rem;
  color: var(--text-body);
  margin-bottom: var(--space-2);
  line-height: 1.75;
  max-width: none;
}

.privacy-section ul {
  padding-left: var(--space-3);
  list-style: disc;
}

.privacy-section a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: var(--space-6) 0 var(--space-4);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer__brand { }

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  display: block;
}

.footer__logo span { color: rgba(107, 130, 110, 0.9); }

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(244, 241, 234, 0.5);
  max-width: 30ch;
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.footer__email a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(244, 241, 234, 0.75);
  transition: color var(--transition);
}

.footer__email a:hover { color: var(--cream); }

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.35);
  margin-bottom: var(--space-2);
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(244, 241, 234, 0.55);
  transition: color var(--transition);
  line-height: 2;
}

.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid rgba(244, 241, 234, 0.08);
  padding-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(244, 241, 234, 0.35);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-3);
}

.footer__legal-links a {
  font-size: 0.8rem;
  color: rgba(244, 241, 234, 0.35);
  transition: color var(--transition);
}

.footer__legal-links a:hover { color: rgba(244, 241, 234, 0.7); }


/* ============================================================
   18. ANIMATIONS & SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }


/* ============================================================
   19. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (min-width: 768px) {
  .container { padding: 0 var(--space-4); }
}

@media (max-width: 900px) {
  .service-block__inner { grid-template-columns: 1fr; }
  .about-photo { position: static; aspect-ratio: 1 / 1; max-width: 280px; }
}

@media (max-width: 767px) {
  /* Hide desktop nav, show hamburger */
  .nav__links    { display: none; }
  .nav__hamburger { display: flex; }

  /* Stack all multi-column grids */
  .grid-2,
  .grid-3,
  .about-grid,
  .contact-layout,
  .footer__grid,
  .how-it-works__steps,
  .value-props .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Remove the step connector line on mobile */
  .how-it-works__steps::after { display: none; }

  .value-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: var(--space-4);
  }

  .value-card:last-child { border-bottom: none; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .footer__grid { gap: var(--space-4); }

  .callout-band { flex-direction: column; text-align: center; }
}


/* ============================================================
   COOKIE NOTICE BAR
   Fixed to the bottom of the screen. Dismissed via JS and
   remembered in localStorage — won't show again once accepted.
   z-index 200 keeps it above the nav (100).
============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal);
  border-top: 1px solid rgba(244, 241, 234, 0.10);
  padding: var(--space-2) var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  /* Slides up from off-screen */
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

/* JS adds .cookie-bar--visible once page loads and no consent found */
.cookie-bar--visible {
  transform: translateY(0);
}

.cookie-bar__text {
  font-size: 0.8125rem;
  color: rgba(244, 241, 234, 0.70);
  line-height: 1.5;
  max-width: 60ch;
}

.cookie-bar__text a {
  color: rgba(244, 241, 234, 0.90);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.cookie-bar__text a:hover { color: var(--cream); }

.cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.cookie-bar__accept {
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-bar__accept:hover { background: var(--sage-dark); }

@media (max-width: 767px) {
  .cookie-bar { flex-direction: column; align-items: flex-start; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__accept { width: 100%; text-align: center; }
}
