:root {
  --rose: #d8afa6;
  --rose-dark: #a96c61;
  --olive: #7a835f;
  --olive-soft: #b0b365;
  --paper: #f3eee1;
  --paper-deep: #d8ceb7;
  --blue: #7e9ca7;
  --blue-deep: #477fae;
  --ink: #3a332b;
  --muted: #756d62;
  --white: #fffdf8;
  --gold: #e8bf59;
  --shadow: 0 22px 70px rgba(58, 51, 43, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Nunito Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(126, 156, 167, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(126, 156, 167, 0.1) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.25;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(58, 51, 43, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(58, 51, 43, 0.08) 0 1px, transparent 1px);
  background-size: 4px 4px, 7px 7px;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(58, 51, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(58, 51, 43, 0.08);
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  line-height: 0.9;
}

.brand span {
  font-size: 1.45rem;
  font-weight: 800;
}

.brand small {
  font-size: 0.86rem;
  color: var(--rose-dark);
  font-weight: 700;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(216, 206, 183, 0.35);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(58, 51, 43, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(58, 51, 43, 0.2);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.88rem;
}

.button-ghost {
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  border: 1px solid rgba(58, 51, 43, 0.18);
  box-shadow: none;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 56px;
  padding-top: 128px;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  margin-bottom: 22px;
}

h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

.photo-card {
  position: relative;
  margin: 0;
  border: 12px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.hero-photo {
  height: 650px;
  transform: rotate(1.5deg);
}

.hero-photo figcaption {
  position: absolute;
  left: 28px;
  right: auto;
  bottom: 28px;
  padding: 12px 16px;
  background: var(--paper);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--olive);
  transform: rotate(-2deg);
  z-index: 2;
}

.paper-note {
  position: absolute;
  max-width: 190px;
  padding: 18px 20px;
  background: var(--paper);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.05;
  box-shadow: var(--shadow);
}

.note-one {
  top: 110px;
  left: -44px;
  background: var(--rose);
  transform: rotate(-7deg);
}

.note-two {
  right: -24px;
  bottom: 120px;
  background: var(--olive-soft);
  color: var(--white);
  transform: rotate(7deg);
}

.credibility {
  overflow: hidden;
  border-block: 1px solid rgba(58, 51, 43, 0.12);
  background: var(--ink);
  color: var(--white);
}

.ticker {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  font-weight: 900;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.split,
.narrative,
.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.story-stack .tall {
  height: 520px;
  transform: rotate(-1.5deg);
}

.story-stack .short {
  width: 78%;
  height: 260px;
  justify-self: end;
  transform: rotate(2deg);
}

.text-flow {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.text-flow p {
  margin-bottom: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 0;
}

.mini-card,
.audience-card,
.pillar,
.testimonial,
.care-card {
  border: 1px solid rgba(58, 51, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 15px 45px rgba(58, 51, 43, 0.08);
}

.mini-card {
  min-height: 180px;
  padding: 24px;
}

.mini-card span,
.audience-card span,
.service-panel .tag {
  display: block;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.mini-card strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.08;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card {
  min-height: 360px;
  padding: 28px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.audience-card:nth-child(2) {
  background: rgba(216, 175, 166, 0.38);
}

.audience-card:nth-child(3) {
  background: rgba(126, 156, 167, 0.28);
}

.audience-card:nth-child(4) {
  background: rgba(176, 179, 101, 0.28);
}

.audience-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.alert-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.alert-intro blockquote {
  margin: 30px 0 0;
  padding: 26px;
  background: var(--blue-deep);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.1;
  border-radius: 8px;
}

.alert-board {
  min-height: 430px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 14px;
  align-items: center;
}

.arrow-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.arrow-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: -4px auto 0;
  padding: 9px 12px;
  border: 1px solid rgba(58, 51, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(58, 51, 43, 0.08);
}

.swipe-hint svg {
  width: 56px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: hintArrow 1.35s ease-in-out infinite;
}

@keyframes hintArrow {
  50% {
    transform: translateX(6px);
  }
}

.alert-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--rose);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.alert-card span {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 253, 248, 0.55);
}

.alert-card p {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.08;
  color: var(--ink);
}

.care-card {
  grid-column: 1 / -1;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--white);
}

.narrative {
  grid-template-columns: 1fr 0.9fr;
}

.narrative-photo {
  position: relative;
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.narrative-photo img {
  height: 620px;
  object-fit: cover;
}

.narrative-photo p {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  margin: 0;
  padding: 20px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.65rem;
  line-height: 1.12;
}

.anchor-questions {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.anchor-questions span {
  padding: 14px 16px;
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 900;
}

.service-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
}

.service-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.service-tabs button {
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid rgba(58, 51, 43, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink);
  text-align: left;
  font-weight: 1000;
  cursor: pointer;
}

.service-tabs button.active {
  background: var(--olive);
  color: var(--white);
}

.service-panel {
  min-height: 520px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-panel h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.service-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.service-panel li {
  padding: 14px 16px;
  background: var(--paper);
  border-radius: 8px;
  font-weight: 800;
}

.pillars,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar {
  min-height: 300px;
  padding: 34px;
}

.pillar span {
  display: block;
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 800;
  color: var(--olive);
}

.podcast-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: center;
  padding: clamp(32px, 6vw, 68px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.podcast-card p {
  color: rgba(255, 253, 248, 0.78);
}

.podcast-card .eyebrow {
  background: #1db954;
  color: #0f2216;
}

.spotify {
  background: #1db954;
  color: #0f2216;
}

.podcast-orbit {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(255, 253, 248, 0.16) 0 2px, transparent 2px 14px),
    var(--blue);
  animation: breathe 5s ease-in-out infinite;
}

.podcast-orbit span {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
}

@keyframes breathe {
  50% {
    transform: scale(1.04) rotate(2deg);
  }
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 360px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 18px;
  cursor: grab;
  scrollbar-color: var(--olive) transparent;
}

.gallery-track.dragging {
  cursor: grabbing;
  user-select: none;
}

.gallery-track img {
  height: 420px;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(58, 51, 43, 0.12);
}

.testimonial {
  position: relative;
  padding: 34px;
  background: var(--white);
}

.quote-mark {
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
  color: rgba(216, 175, 166, 0.55);
}

.testimonial p {
  position: relative;
  font-style: italic;
  color: var(--ink);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.testimonial strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
}

.testimonial small {
  color: var(--muted);
  font-weight: 800;
}

.faq {
  align-items: start;
}

.faq-side {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(58, 51, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.faq-question svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.mission-cta {
  padding: 110px 24px;
  background: var(--blue-deep);
  color: var(--white);
  text-align: center;
}

.mission-cta > div {
  max-width: 820px;
  margin: 0 auto;
}

.mission-cta p,
.final-cta p {
  color: rgba(255, 253, 248, 0.82);
}

.mission-cta .button,
.final-cta .button {
  background: var(--paper);
  color: var(--ink);
}

.final-cta {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: var(--olive);
  color: var(--white);
  text-align: center;
}

.final-cta .eyebrow {
  margin-inline: auto;
  background: rgba(255, 253, 248, 0.2);
}

.final-cta p {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta small {
  display: block;
  margin-top: 14px;
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 32px;
  padding: 62px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.footer p,
.footer span,
.footer a {
  color: rgba(255, 253, 248, 0.72);
}

.footer h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  font-size: 0.92rem;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 1000;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 8px;
    background: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero,
  .split,
  .narrative,
  .alert-section,
  .faq,
  .podcast-card {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-photo,
  .story-stack .tall,
  .narrative-photo,
  .narrative-photo img {
    height: 520px;
    min-height: 0;
  }

  .highlight-grid,
  .audience-grid,
  .pillars,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-card,
  .service-shell {
    grid-template-columns: 1fr;
  }

  .swipe-hint {
    display: inline-flex;
  }

  .faq-side {
    position: static;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 24px, 1180px);
    padding: 72px 0;
  }

  .hero {
    padding-top: 112px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .hero-actions,
  .care-card {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .note-one {
    left: 8px;
    top: 56px;
  }

  .note-two {
    right: 8px;
    bottom: 132px;
    max-width: min(210px, 58vw);
    z-index: 2;
  }

  .hero-photo figcaption {
    left: 22px;
    right: 22px;
    bottom: 28px;
    max-width: none;
    padding: 12px 14px;
    font-size: 1.18rem;
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
    z-index: 3;
  }

  .highlight-grid,
  .audience-grid,
  .pillars,
  .testimonial-grid,
  .service-panel ul {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .alert-board {
    grid-template-columns: 1fr;
  }

  .arrow-btn {
    display: none;
  }

  .alert-card {
    min-height: 340px;
  }

  .podcast-orbit {
    width: 240px;
    margin: 0 auto;
  }

  .floating-cta {
    display: inline-flex;
  }
}
