/* ============================================================
   James Lidback Coaching — Water + Earth palette
   ============================================================ */

:root {
  /* Water */
  --ocean-deep: #0f2a36;
  --ocean: #1a4257;
  --ocean-mid: #2d6a82;
  --ocean-light: #6e9bae;
  --mist: #cfdde3;

  /* Earth */
  --driftwood: #7a6753;
  --sand: #c9b18e;
  --sand-light: #e6dcc8;
  --cream: #f5efe4;
  --paper: #fbf8f1;

  /* Accent */
  --sunrise: #c97b3f;
  --sunrise-deep: #a35a2a;
  --gold-bright: #ecb95a;

  /* Ink */
  --ink: #1d2a30;
  --ink-soft: #4a5a62;
  --ink-mute: #7d8b91;

  /* Layout */
  --container: 1180px;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(15, 42, 54, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 42, 54, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 42, 54, 0.18);

  /* Type */
  --serif: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: var(--ocean-mid); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sunrise-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ocean-deep);
  margin: 0 0 .6em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1.1em; }
em { font-style: italic; color: var(--sunrise-deep); }

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

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin: 0 0 1rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: var(--paper);
  border-bottom: 1px solid rgba(15, 42, 54, 0.08);
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(15, 42, 54, 0.08);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
  color: var(--ocean-deep);
  letter-spacing: .04em;
}
.brand-logo {
  height: 91px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}
.brand-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right .3s ease;
}
.nav-links a:not(.nav-cta):hover::after { right: 0; }
.nav-links a:hover { color: var(--sunrise-deep); }
.nav-cta {
  background: var(--sunrise);
  color: var(--paper) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--sunrise-deep); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ocean-deep);
  transition: background .3s, transform .3s, opacity .3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--sunrise);
  color: var(--paper);
  border-color: var(--sunrise);
}
.btn-primary:hover {
  background: var(--sunrise-deep);
  border-color: var(--sunrise-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--paper);
  color: var(--paper);
}
.btn-block { width: 100%; }

/* ===== Hero (video underlay + text overlay) ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ocean-deep);
  color: var(--paper);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15,42,54,.55) 0%, rgba(15,42,54,.40) 45%, rgba(15,42,54,.70) 100%);
}

/* Sound toggle */
.sound-toggle {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 42, 54, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.sound-toggle:hover {
  background: rgba(15, 42, 54, 0.72);
  transform: scale(1.06);
}
.sound-toggle .sound-icon-on { display: none; }
.sound-toggle.is-on .sound-icon-off { display: none; }
.sound-toggle.is-on .sound-icon-on { display: block; }
.sound-toggle.is-on {
  background: var(--sunrise);
  border-color: var(--sunrise);
  color: var(--paper);
}
.sound-toggle.is-on:hover {
  background: var(--sunrise-deep);
  border-color: var(--sunrise-deep);
}
audio#heroAudio { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.4em;
  color: var(--gold-bright);
  margin: 0 0 28px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-title {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.22;
  color: var(--paper);
  margin: 0 auto 28px;
  font-weight: 500;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  max-width: 28ch;
  text-wrap: balance;
}
.hero-title em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--paper);
  margin: 0 auto 40px;
  max-width: 640px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.5);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===== Section base ===== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-head h2 { margin: 0; }

/* ===== Intro section ===== */
.intro {
  background: var(--paper);
  padding: 100px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.intro-photo {
  position: relative;
}
.intro-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  position: relative;
  z-index: 1;
}
.intro-photo-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--sunrise);
  border-radius: var(--radius);
  z-index: 0;
}
.intro-text .eyebrow { margin-bottom: 12px; }
.intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--ocean-deep);
  margin: 0 0 28px;
}
.intro-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.intro-close {
  font-family: var(--serif) !important;
  font-size: clamp(1.2rem, 1.6vw, 1.35rem) !important;
  font-style: italic;
  color: var(--driftwood) !important;
  margin-top: 28px !important;
  line-height: 1.5;
}

/* ===== What I help with ===== */
.work {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--sand-light) 100%);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.pillar {
  background: var(--paper);
  padding: 44px 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(122, 103, 83, 0.12);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 123, 63, 0.4);
}
.pillar h3 {
  margin: 0 0 16px;
  color: var(--ocean-deep);
  position: relative;
  padding-top: 18px;
}
.pillar h3::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 2px;
  background: var(--sunrise);
}
.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.pillar-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--sunrise-deep);
  border-bottom: 1px solid rgba(163, 90, 42, 0.3);
  transition: color .2s ease, border-color .2s ease;
}
.pillar-link:hover {
  color: var(--sunrise);
  border-bottom-color: currentColor;
}

/* ===== FAQ ===== */
.faq {
  background: var(--paper);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(122, 103, 83, 0.2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 48px 26px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--ocean-deep);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--sunrise);
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--sunrise-deep); }
.faq-answer {
  padding: 0 48px 26px 0;
}
.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ===== Parallax bands ===== */
.parallax-band {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,42,54,.4), rgba(15,42,54,.7));
}
.parallax-band .container { position: relative; z-index: 1; }
.band-lake { background-image: url('assets/lake-sunrise.jpg'); }
.band-beach { background-image: url('assets/beach-sunset.jpg'); }
.band-beach::before {
  background: linear-gradient(180deg, rgba(15,42,54,.18), rgba(15,42,54,.42));
}
.band-beach .band-quote {
  text-shadow: 0 2px 12px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.55);
}
.band-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ===== About ===== */
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 100px;
  position: relative;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-photo-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--sunrise);
  border-radius: var(--radius);
  z-index: 0;
}
.about-text .eyebrow { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 28px; }
.about-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.about-cta-line {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ocean-deep);
  margin-top: 32px;
}
.about-cta-line a {
  color: var(--sunrise-deep);
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  transition: color .2s ease;
}
.about-cta-line a:hover {
  color: var(--sunrise);
}

/* ===== Testimonials ===== */
.testimonials {
  background:
    linear-gradient(180deg, var(--sand-light) 0%, var(--cream) 100%);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--paper);
  padding: 44px 40px 36px;
  border-radius: var(--radius);
  margin: 0;
  position: relative;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--ocean-mid);
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 28px;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--sunrise);
  line-height: 1;
  opacity: 0.4;
}
.testimonial blockquote {
  margin: 0 0 24px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.testimonial blockquote p {
  margin: 0 0 14px;
}
.testimonial blockquote p:last-child {
  margin-bottom: 0;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(122, 103, 83, 0.18);
  padding-top: 18px;
}
.t-name {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ocean-deep);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.t-loc {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin-top: 4px;
}

/* ===== Contact ===== */
.contact {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: stretch;
}
.contact-text h2 { margin-bottom: 24px; }
.contact-text p { color: var(--ink-soft); }
.contact-photo {
  position: relative;
  max-width: 320px;
  margin: 0 0 36px;
}
.contact-photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.contact-photo-frame {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--sunrise);
  border-radius: var(--radius);
  z-index: 0;
}
.contact-book {
  margin: 8px 0 0;
  padding: 18px 36px;
  font-size: 1rem;
}
.contact-direct {
  grid-column: 1 / -1;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(122, 103, 83, 0.18);
  font-size: 0.95rem;
  text-align: center;
  color: var(--ink-soft);
}
.contact-form {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(122, 103, 83, 0.18);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ocean-deep);
  text-transform: uppercase;
}
.contact-form small {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid rgba(122, 103, 83, 0.25);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ocean-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 130, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-message { flex: 1 1 auto; }
.contact-form .form-message textarea { height: 100%; min-height: 160px; }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  margin-top: 4px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-status.is-success {
  background: rgba(45, 106, 130, 0.10);
  border-left: 3px solid var(--ocean-mid);
  color: var(--ocean-deep);
}
.form-status.is-error {
  background: rgba(201, 123, 63, 0.10);
  border-left: 3px solid var(--sunrise-deep);
  color: var(--sunrise-deep);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ocean-deep);
  color: var(--mist);
  padding: 16px 0 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--paper);
  margin: 0 0 2px;
}
.footer-tag {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
}
.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.footer-nav a {
  color: var(--mist);
  font-size: 0.92rem;
}
.footer-nav a:hover { color: var(--sunrise); }
.footer-copy-block {
  text-align: right;
  line-height: 1.35;
}
.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(207, 221, 227, 0.65);
}
.footer-rights {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: rgba(207, 221, 227, 0.45);
}
.footer-credit {
  margin: 2px 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(207, 221, 227, 0.5);
}
.footer-credit a {
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.footer-credit a:hover {
  color: var(--gold-bright);
  border-bottom-color: currentColor;
}

/* ===== Inner pages (disclaimer, etc) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 80px 0 56px;
  text-align: center;
  border-bottom: 1px solid rgba(122, 103, 83, 0.18);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0 0 18px;
}
.page-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.15rem;
  margin: 0;
}

.page-content {
  background: var(--paper);
  padding: 80px 0 100px;
}
.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.content-narrow .lede {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ocean-deep);
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(122, 103, 83, 0.16);
}
.content-narrow h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.55rem;
  color: var(--ocean-deep);
}
.content-narrow p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}
.content-narrow strong { color: var(--ocean-deep); }
.content-narrow a {
  color: var(--sunrise-deep);
  border-bottom: 1px solid rgba(163, 90, 42, 0.3);
  transition: border-color .2s ease;
}
.content-narrow a:hover { border-bottom-color: currentColor; }

.content-narrow h3 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--ocean-deep);
}
.content-narrow ul {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
  color: var(--ink-soft);
}
.content-narrow li {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 1.02rem;
}
.content-narrow li::marker { color: var(--sunrise); }

/* End-of-article CTA */
.article-cta {
  margin: 56px 0 0;
  padding: 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(122, 103, 83, 0.18);
  text-align: center;
}
.article-cta h2 {
  margin: 0 0 14px;
  font-size: 1.6rem;
}
.article-cta p {
  margin: 0 0 24px;
  color: var(--ink-soft);
}
.article-cta .btn { border-bottom: 0; }

/* Insights hub */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.insight-card {
  display: block;
  background: var(--paper);
  padding: 38px 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(122, 103, 83, 0.16);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid rgba(122, 103, 83, 0.16);
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 123, 63, 0.4);
}
.insight-card .eyebrow { margin-bottom: 10px; }
.insight-card h2 {
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--ocean-deep);
}
.insight-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}
.insight-card .insight-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sunrise-deep);
}

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; gap: 22px; }
  .article-cta { padding: 32px 24px; }
}

.last-updated {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.crisis-callout {
  background: var(--cream);
  border-left: 4px solid var(--sunrise-deep);
  padding: 32px 36px;
  margin: 40px 0;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.crisis-callout h2 {
  margin: 0 0 14px;
  color: var(--sunrise-deep);
  font-size: 1.5rem;
}
.crisis-callout p { font-size: 1rem; }
.crisis-region {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin: 24px 0 8px !important;
}
.crisis-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
}
.crisis-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(122, 103, 83, 0.16);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}
.crisis-list li:last-child { border-bottom: 0; }
.crisis-list strong { color: var(--ocean-deep); }
.crisis-list a {
  color: var(--sunrise-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(163, 90, 42, 0.4);
}
.crisis-international {
  font-size: 0.95rem !important;
  color: var(--ink-soft) !important;
  margin: 14px 0 0 !important;
}
.back-to-home {
  margin-top: 56px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(122, 103, 83, 0.16);
  font-size: 0.95rem;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { color: var(--ink) !important; font-size: 1.05rem; }
  .nav-cta { background: var(--sunrise); color: var(--paper) !important; }

  .hero { min-height: calc(100vh - 68px); }
  .hero-content { padding: 56px 20px; }
  .hero-actions .btn { flex: 1 1 auto; }

  .pillars { grid-template-columns: 1fr; gap: 20px; }
  .pillar { padding: 32px 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { position: static; max-width: 460px; margin: 0 auto; }
  .about-photo-frame { inset: 12px -12px -12px 12px; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonial { padding: 36px 28px 28px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .contact-photo { max-width: 280px; margin: 0 auto 32px; }
  .contact-photo-frame { inset: 10px -10px -10px 10px; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-brand-block { justify-content: center; }
  .footer-logo { height: 50px; }
  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 18px; }
  .footer-copy-block { text-align: center; }

  .parallax-band {
    background-attachment: scroll;
    min-height: 40vh;
  }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-photo { max-width: 460px; margin: 0 auto; }
  .intro-photo-frame { inset: 12px -12px -12px 12px; }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .brand-logo { height: 69px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
  .parallax-band { background-attachment: scroll; }
}
