:root {
  --terracotta: #c45c2e;
  --terracotta-deep: #a84b24;
  --ink: #161412;
  --muted: #2c2824;
  --cream: #f7f0e6;
  --cream-2: #fbf6ee;
  --line: #d9cfc2;
  --stats: #1b1a18;
  --stats-line: rgba(255, 255, 255, 0.22);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Montserrat", "Segoe UI", sans-serif;
  --script: "Breathing Brush", cursive;
  --hand: "Caveat", "Segoe UI", cursive;
  --pad: clamp(1rem, 3.2vw, 3.4rem);
}

@font-face {
  font-family: "Breathing Brush";
  src:
    url("../fonts/Breathing.woff2") format("woff2"),
    url("../fonts/Breathing.woff") format("woff"),
    url("../fonts/Breathing.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  min-height: 100dvh;
  overflow-x: hidden;
}

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

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 20;
}

.skip:focus {
  left: 0.8rem;
  top: 0.8rem;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #111;
}

html.capture .hero {
  min-height: 860px;
}

html.capture .hero-visual img {
  height: 540px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(252, 246, 236, 0.38) 0%,
      rgba(252, 246, 236, 0.12) 14%,
      rgba(252, 246, 236, 0) 34%,
      rgba(28, 22, 16, 0.14) 100%
    ),
    url("../images/hero-landscape.png") center 58% / cover no-repeat;
  filter: saturate(0.62) brightness(1.12) contrast(0.92) sepia(0.08);
  transform: scale(1.06);
  z-index: 0;
}

.site-header,
.hero-body,
.stats {
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem var(--pad) 0.15rem;
}

.header-top {
  display: contents;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  height: clamp(52px, 4.6vw, 66px);
  width: auto;
  max-width: min(280px, 48vw);
}

.header-end {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.5rem;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.9rem, 1.7vw, 1.95rem);
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  font-size: clamp(0.7rem, 0.78vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible {
  color: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease;
}

.btn svg {
  width: 20px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--terracotta-deep);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--terracotta);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--cream-2);
  color: var(--ink);
  border-color: var(--terracotta-deep);
}

.header-cta {
  padding: 0.78rem 1.15rem;
  font-size: 0.7rem;
}

.nav-cta {
  display: none !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  flex-shrink: 0;
  gap: 6px;
  z-index: 30;
}

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

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }

  .hero {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .hero-copy h1 span.accent:nth-child(3) {
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: max-content minmax(0, 1fr) auto;
    gap: 1.4rem 2rem;
    padding: 0.5rem calc(var(--pad) + 1.4rem) 0.15rem var(--pad);
  }

  .nav {
    justify-content: flex-start;
    padding-left: clamp(0.4rem, 1.2vw, 1.2rem);
  }

  .hero-copy {
    align-self: center;
    justify-content: center;
    padding: 0;
  }

  .hero-body {
    grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.36fr);
    gap: 0;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 0.26fr);
  }

  .hero-visual img {
    width: 142%;
    margin-left: clamp(-9.8rem, -8.4vw, -7.2rem);
    object-position: 32% bottom;
  }

  .hero-visual blockquote {
    margin-top: clamp(5.6rem, calc(10vh + 4.4rem), 10.2rem);
    margin-left: clamp(-2.6rem, -2.2vw, -1.5rem);
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .btn {
    padding: 0.88rem 1.32rem;
  }
}

.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 1.08fr);
  align-items: stretch;
  gap: clamp(0.4rem, 1.6vw, 1.4rem);
  padding: 0.05rem var(--pad) 0;
  min-height: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: 0;
  max-width: min(54vw, 820px);
}

.kicker {
  font-size: clamp(0.68rem, 0.82vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.38rem;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.05rem, 4.15vw, 3.95rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 .accent {
  color: var(--terracotta);
}

.sign {
  font-family: var(--script);
  font-size: clamp(2.05rem, 3.1vw, 3.05rem);
  margin: 0.62rem 0 0.55rem;
  color: var(--ink);
}

.roles {
  list-style: none;
  font-size: clamp(0.84rem, 0.95vw, 0.96rem);
  font-weight: 500;
  line-height: 1.52;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions .btn {
  padding: 0.92rem 1.4rem;
  font-size: 0.74rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.34fr);
  align-items: stretch;
  align-self: stretch;
  min-height: 0;
}

.hero-visual img {
  width: 112%;
  max-width: none;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: 42% bottom;
  filter: drop-shadow(0 18px 28px rgba(40, 24, 10, 0.18));
  justify-self: start;
  margin-left: -8%;
}

.hero-visual blockquote {
  align-self: start;
  margin-top: clamp(1.6rem, 10vh, 5.8rem);
  padding-left: 0;
}

.hero-visual blockquote p {
  font-family: var(--hand);
  font-size: clamp(1.28rem, 1.85vw, 1.82rem);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 400;
}

.marked {
  --mark: 92%;
  position: relative;
  display: inline-block;
}

.marked::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08em;
  width: var(--mark);
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: rotate(-2deg);
}

.marked-double::before {
  content: "";
  position: absolute;
  left: 0.12em;
  bottom: -0.28em;
  width: calc(var(--mark) - 8%);
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: rotate(1.5deg);
  opacity: 0.85;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--stats);
  color: #fff;
  list-style: none;
  min-height: clamp(6.4rem, 13vh, 8.6rem);
}

.stats li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.15rem 0.8rem;
}

.stats li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--stats-line);
}

.stats svg {
  width: clamp(42px, 3.4vw, 54px);
  height: clamp(42px, 3.4vw, 54px);
  flex: 0 0 auto;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.75rem, 2.7vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
}

.stats span {
  display: block;
  margin-top: 0.22rem;
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1180px) {
  .nav a:not(.btn) {
    letter-spacing: 0.07em;
    font-size: 0.64rem;
  }

  .header-cta {
    font-size: 0.62rem;
    padding: 0.7rem 0.85rem;
  }
}

@media (max-width: 1024px) {
  .site-header {
    display: block;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    right: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100dvh;
    background: var(--cream-2);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 5.4rem 1.6rem 2rem;
    transform: translateX(104%);
    transition: transform 0.35s ease;
    box-shadow: -18px 0 40px rgba(20, 12, 6, 0.12);
    z-index: 8;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a:not(.btn) {
    width: 100%;
    font-size: 0.82rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    display: inline-flex !important;
    margin-top: 1.4rem;
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-copy {
    padding: 0.5rem 0 1rem;
    max-width: none;
    align-self: stretch;
    justify-content: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 3.3vw, 2.7rem);
  }

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

  .hero-visual img {
    width: 100%;
    margin-left: 0;
    height: min(58vh, 520px);
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .btn {
    padding: 0.72rem 0.85rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 0;
  }

  .hero-body {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 0.8rem;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 0.2rem;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.5fr);
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-visual img {
    height: min(46vh, 400px);
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .brand img {
    height: 40px;
    max-width: min(220px, calc(100vw - 96px));
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 48px);
    overflow: hidden;
  }

  .nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }

  .hero-actions {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }

  .hero-visual img {
    height: min(42vh, 340px);
    width: 100%;
    margin-left: 0;
  }

  .hero-visual blockquote {
    margin-top: 0.35rem;
    justify-self: start;
    padding-left: 0.2rem;
    padding-bottom: 0.8rem;
  }

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

  .stats li {
    justify-content: flex-start;
    padding-left: 1.1rem;
  }

  .stats li:nth-child(2n)::after {
    content: none;
  }

  .stats li:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1px;
    background: var(--stats-line);
  }
}

@media (max-width: 420px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .stats li::after {
    content: none;
  }

  .stats li::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1px;
    background: var(--stats-line);
  }

  .stats li:last-child::before {
    content: none;
  }
}

@media (min-width: 1600px) {
  .site-header {
    padding-left: 4.6rem;
    padding-right: 6rem;
  }

  .hero-body,
  .people,
  .closing-quote,
  .contact-bar,
  .strip {
    padding-left: 4.6rem;
    padding-right: 4.6rem;
  }

  .why {
    padding-left: 4.6rem;
  }
}


.why,
.people {
  scroll-margin-top: 0.5rem;
}

.mark-word {
  position: relative;
  display: inline-block;
}

.mark-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 1.05em;
  height: 3px;
  background: var(--terracotta);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.58fr) minmax(280px, 1.12fr);
  gap: 0;
  background: var(--cream-2);
  padding: 0 0 0 var(--pad);
  align-items: stretch;
}

.why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.6rem 1.8rem 2.6rem 0;
}

.why-quote {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.6rem 1.15rem 2.6rem 1.45rem;
  border-left: 1px solid #d2c8bb;
}

.why-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.why-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 38%;
  filter: grayscale(1) contrast(1.08) brightness(0.94);
}

.why-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--cream-2) 0%,
    rgba(251, 246, 238, 0.82) 16%,
    rgba(251, 246, 238, 0.28) 38%,
    rgba(251, 246, 238, 0) 58%
  );
}

.why h2,
.people h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.why-lead {
  margin: 0.9rem 0 1.2rem;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 500;
  line-height: 1.4;
}

.gap-icons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.4rem;
  list-style: none;
  margin-bottom: 1.25rem;
  max-width: 24rem;
}

.gap-icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.38rem;
  flex: 1 1 0;
  min-width: 0;
}

.gap-icons svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gap-icons span {
  font-size: 0.7rem;
  font-weight: 500;
}

.why-close {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.why-accent {
  font-family: var(--serif);
  color: var(--terracotta);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.4;
  max-width: 24rem;
}

.why-mark {
  display: block;
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 0.65;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.why-quote p {
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.5;
  font-weight: 500;
}

.why-try {
  margin-top: 0.85rem;
  color: var(--ink);
  font-weight: 700;
  font-style: italic;
}

.why-try-word {
  color: var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 0.04em;
}

.people {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 2.2rem 2.4rem;
  background: var(--stats);
  color: #fff;
  padding: 3.6rem var(--pad) 2.4rem;
}

.people-lead {
  margin: 1rem 0 0.85rem;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 700;
  line-height: 1.35;
}

.people-body {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.people-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.stories-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.story-card {
  background: transparent;
  min-width: 0;
}

.story-play {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.story-play img {
  width: 100%;
  aspect-ratio: 3 / 3.35;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 15px;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--terracotta);
}

.story-meta {
  background: #fff;
  color: var(--ink);
  padding: 0.9rem 0.85rem 1.1rem;
  min-height: 6.6rem;
  border-radius: 0 0 4px 4px;
}

.story-meta h3 {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.story-meta p {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stories-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.stories-nav p {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.stories-arrow {
  width: 36px;
  height: 36px;
  color: #fff;
  display: grid;
  place-items: center;
}

.stories-arrow svg {
  width: 22px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stories-arrow:hover,
.stories-arrow:focus-visible {
  color: var(--terracotta);
}

@media (max-width: 1100px) {
  .why {
    grid-template-columns: 1fr 1fr;
  }

  .why-photo {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .gap-icons {
    flex-wrap: wrap;
    max-width: none;
  }

  .stories-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .stories-track::-webkit-scrollbar {
    display: none;
  }

  .story-card {
    flex: 0 0 min(58vw, 230px);
    scroll-snap-align: start;
  }
}

@media (max-width: 860px) {
  .why {
    grid-template-columns: 1fr;
    padding: 2.4rem var(--pad) 0;
  }

  .why-copy,
  .why-quote {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 1.4rem;
    padding-top: 0;
  }

  .why-quote {
    border-left: 0;
    border-top: 1px solid #cfc6ba;
    padding-top: 1.4rem;
  }

  .why-photo {
    grid-column: auto;
    min-height: 260px;
  }

  .people {
    grid-template-columns: 1fr;
    padding: 2.8rem var(--pad) 2rem;
  }

  .people-actions .btn {
    width: 100%;
  }

  .story-card {
    flex: 0 0 min(78vw, 260px);
  }
}

.dream {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem 2rem;
  background: var(--cream-2);
  padding: 2.4rem var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plane {
  flex: 0 0 auto;
}

.plane img {
  width: min(28vw, 240px);
  height: auto;
  display: block;
  background: transparent;
}

.dream-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.dream-sub {
  font-family: var(--serif);
  color: var(--terracotta);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  margin: 0.25rem 0 0.7rem;
}

.dream-body {
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.dream-checks {
  list-style: none;
}

.dream-checks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.dream-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  border: 0;
}

.dream-cta {
  align-self: center;
}

.split-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-2);
}

.circle-block,
.vision-block,
.join {
  padding: 2.4rem var(--pad) 2.6rem;
}

.circle-block {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vision-block {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--cream-2) 42%, rgba(251, 246, 238, 0.88) 72%, rgba(251, 246, 238, 0.55) 100%),
    url("../images/institution.png") right 80% / 52% auto no-repeat;
}

.circle-block h2,
.vision-block h2,
.join h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  margin-bottom: 1.4rem;
}

.circle-flow {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  list-style: none;
}

.circle-flow li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 0;
  position: relative;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.circle-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -11px;
  width: 18px;
  height: 10px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10' fill='none' stroke='%23c45c2e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 5h14M11.5 1.6 16.2 5 11.5 8.4'/%3E%3C/svg%3E");
  z-index: 1;
}

.circle-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--terracotta);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  background: transparent;
}

.circle-flow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circle-cycle {
  position: relative;
}

.circle-loop {
  display: block;
  width: 100%;
  height: 42px;
  margin: -2px 0 0.65rem;
  overflow: visible;
}

.circle-loop path {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.circle-foot {
  text-align: center;
}

.circle-foot span {
  display: block;
  font-family: var(--serif);
  color: var(--terracotta);
  font-size: 1.12rem;
  margin-bottom: 0.2rem;
}

.circle-foot {
  font-size: 0.86rem;
}

.vision-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.vision-list {
  list-style: none;
  border-left: 1.5px solid #c8bfb4;
  padding-left: 1.1rem;
}

.vision-list li {
  position: relative;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
}

.vision-list li::before {
  content: "";
  position: absolute;
  left: -1.32rem;
  top: 0.28rem;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--cream-2);
}

.vision-list .now {
  color: var(--terracotta);
}

.vision-list .now::before {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.vision-list .now em {
  font-style: normal;
  font-weight: 600;
}

.vision-aside p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.vision-aside .accent {
  color: var(--terracotta);
  font-weight: 600;
}

.classroom {
  position: relative;
  min-height: 420px;
  padding: 2.6rem var(--pad) 2.4rem;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
}

.classroom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.35) 0%, rgba(12, 10, 8, 0.78) 100%),
    url("../images/classroom.png") center 40% / cover no-repeat;
  filter: grayscale(1) contrast(1.08);
  z-index: 0;
}

.mark-word-light::after {
  background: var(--terracotta);
}

.classroom h2,
.classroom p {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.classroom h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  margin-bottom: 0.9rem;
}

.classroom p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.7rem;
}

.classroom-accent {
  color: #e08a62;
  font-weight: 700;
}

.join {
  display: flex;
  flex-direction: column;
}

.join h2 {
  text-align: center;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  flex: 1;
  align-content: center;
}

.join-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 1.15rem 0.45rem 1.2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(40, 24, 10, 0.08);
}

.join-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  background: radial-gradient(circle at 50% 42%, #f4c4a8 0%, #f8ddd0 42%, #fbf6ee 74%);
}

.join-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-card strong {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.join-card span:last-child {
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--muted);
}

.join-card:hover,
.join-card:focus-visible {
  outline: 1px solid var(--terracotta);
}

@media (max-width: 1100px) {
  .circle-flow {
    flex-wrap: wrap;
    row-gap: 1.2rem;
  }

  .circle-flow li:not(:last-child)::after,
  .circle-loop {
    display: none;
  }
}

@media (max-width: 560px) {
  .join-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .dream {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .dream-cta {
    width: 100%;
  }

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

  .circle-block,
  .classroom {
    border-right: 0;
  }

  .vision-row {
    grid-template-columns: 1fr;
  }
}

.closing-quote {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem 1.2rem;
  padding: 3.6rem var(--pad) 3.2rem;
  min-height: 320px;
  background:
    linear-gradient(
      90deg,
      var(--cream-2) 0%,
      var(--cream-2) 38%,
      rgba(251, 246, 238, 0.72) 58%,
      rgba(251, 246, 238, 0.2) 78%,
      rgba(251, 246, 238, 0) 100%
    ),
    url("../images/peak.png") right center / cover no-repeat;
  overflow: hidden;
}

.q {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 7.2rem);
  line-height: 0.7;
  color: var(--terracotta);
  align-self: start;
}

.q-close {
  align-self: end;
}

.closing-inner {
  text-align: center;
}

.closing-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
}

.closing-inner h2 span {
  color: var(--terracotta);
}

.closing-kicker {
  margin: 0.85rem 0 1.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.closing-by {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
}

.closing-by .sign {
  font-family: var(--script);
  font-size: 1.7rem;
  margin: 0;
}

.closing-by ul {
  list-style: none;
  text-align: left;
  border-left: 1px solid #cfc6ba;
  padding-left: 1.2rem;
  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-bar {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 1.1fr auto;
  align-items: center;
  gap: 1.2rem;
  background: var(--stats);
  color: #fff;
  padding: 1.6rem var(--pad);
}

.contact-bar > * {
  position: relative;
}

.contact-bar > *:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.6rem;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.contact-cta {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.contact-cta span {
  color: var(--terracotta);
}

.contact-phone,
.contact-bar address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-style: normal;
}

.contact-phone {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 600;
}

.contact-bar svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-bar address {
  justify-content: flex-start;
  font-size: 0.82rem;
  line-height: 1.4;
}

.contact-bar address strong {
  display: block;
  margin-bottom: 0.15rem;
}

.social {
  display: flex;
  gap: 0.55rem;
  padding-left: 0.4rem;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}

.social svg {
  width: 15px;
  height: 15px;
  stroke: #111;
  fill: none;
  stroke-width: 1.6;
}

.social a:hover,
.social a:focus-visible {
  background: var(--terracotta);
}

.social a:hover svg,
.social a:focus-visible svg {
  stroke: #fff;
}

.strip {
  background: var(--terracotta);
  color: #fff;
  text-align: center;
  padding: 0.85rem var(--pad);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.strip b {
  font-weight: 700;
}

@media (max-width: 900px) {
  .closing-quote {
    grid-template-columns: 1fr;
    text-align: center;
    background-position: center 20%;
  }

  .q {
    display: none;
  }

  .closing-by {
    flex-direction: column;
    gap: 0.6rem;
  }

  .closing-by ul {
    border-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .contact-bar {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.4rem;
  }

  .contact-bar > *:not(:last-child)::after {
    display: none;
  }

  .social {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .contact-bar {
    grid-template-columns: 1fr;
  }

  .contact-phone,
  .contact-bar address,
  .social {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
