:root {
  --fog: #eef1ec;
  --paper: #f6f4ef;
  --ink: #122026;
  --teal: #1c5c58;
  --teal-deep: #0d3533;
  --sand: #d8c4a8;
  --muted: #5c6a68;
  --line: rgba(18, 32, 38, 0.12);
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Sora", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--fog);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

h1 em,
h2 em {
  font-style: italic;
  font-weight: 550;
  color: var(--teal);
}

p {
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.05rem;
  max-width: 38rem;
  color: var(--muted);
}

.kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-solid {
  background: var(--teal);
  color: #fff;
}

.btn-solid:hover {
  background: var(--teal-deep);
}

.btn-line {
  background: transparent;
  border-color: currentColor;
}

.btn-line:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.text-link {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(238, 241, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background:
    linear-gradient(var(--teal) 0 50%, transparent 50% 100%),
    linear-gradient(90deg, transparent 0 50%, var(--sand) 50% 100%);
  background-size: 100% 100%;
  box-shadow: inset 18px 18px 0 0 var(--ink);
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--teal);
}

.nav-cta {
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  color: var(--paper) !important;
}

.nav-cta:hover {
  background: var(--teal);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 2.2rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-media {
  margin: 0;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.hero-media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.7rem 1rem;
  background: var(--teal-deep);
  color: var(--sand);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.credentials {
  background: var(--ink);
  color: var(--sand);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  padding: 1.1rem 1.4rem;
}

.credentials p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8aa09c;
}

.credentials ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
}

.about {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 5.5rem 0;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 4rem;
  align-items: center;
}

.about-media {
  margin: 0;
  background: var(--teal);
  padding: 1.1rem 1.1rem 2.4rem;
}

.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-media figcaption {
  margin-top: 0.85rem;
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method {
  background: var(--paper);
  padding: 5.5rem 0;
}

.method-intro {
  width: min(760px, calc(100% - 2.4rem));
  margin: 0 auto 2.8rem;
}

.steps {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 0.9;
  color: var(--teal);
  font-style: italic;
}

.steps h3 {
  margin-bottom: 0.4rem;
}

.steps p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
}

.focus {
  padding: 5.5rem 0 4.5rem;
}

.focus-bento {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.7rem;
}

.focus-bento article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.focus-bento .is-wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.focus-bento img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.8);
}

.focus-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(transparent, rgba(13, 53, 51, 0.88));
  color: #f4efe6;
}

.focus-copy h3,
.focus-copy p {
  margin: 0;
}

.focus-copy p {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--sand);
}

.stories {
  padding: 4.5rem 0 5rem;
  background: var(--ink);
  color: var(--paper);
}

.stories .eyebrow,
.stories h2 em {
  color: var(--sand);
}

.stories-head {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
}

.stories-head p:last-child {
  margin: 0;
  color: #b7c4c1;
}

.story-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.story-nav button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 196, 168, 0.4);
  background: transparent;
  color: var(--sand);
  font-size: 1.1rem;
  cursor: pointer;
}

.story-nav button:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.story-track {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 38%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
}

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

.story-track blockquote {
  scroll-snap-align: start;
  margin: 0;
  padding: 1.6rem 1.5rem 1.4rem;
  background: #173033;
  border-top: 3px solid var(--sand);
}

.story-track p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
}

.story-track footer {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.services {
  padding: 5.5rem 0;
}

.service-list {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.service-list article {
  display: grid;
  grid-template-columns: 8.5rem 1fr auto auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.service-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.service-meta {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-list h3,
.service-list p {
  margin: 0;
}

.service-list p:not(.service-meta):not(.price) {
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
}

.service-list a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--teal);
  color: var(--teal);
}

.plans {
  padding: 0 0 5.5rem;
}

.plan-grid {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.plan-grid article {
  padding: 1.6rem 1.35rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.plan-grid .is-featured {
  background: var(--teal-deep);
  color: var(--paper);
  border-color: var(--teal-deep);
}

.plan-tag {
  margin: 0 0 0.7rem;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}

.plan-price {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0 0 0.2rem;
}

.plan-price span {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.is-featured .plan-price span {
  color: var(--sand);
}

.plan-term {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.is-featured .plan-term {
  color: #c5d3d0;
}

.plan-grid ul {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.plan-grid li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.is-featured li {
  border-color: rgba(216, 196, 168, 0.2);
}

.plan-grid .btn {
  width: 100%;
}

.is-featured .btn-solid {
  background: var(--sand);
  color: var(--ink);
}

.is-featured .btn-solid:hover {
  background: #fff;
}

.intake {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
}

.intake-copy {
  background: var(--teal-deep);
  color: var(--paper);
  padding: 4rem 8% 3.5rem;
}

.intake-copy .eyebrow,
.intake-copy h2 em {
  color: var(--sand);
}

.intake-copy .lede {
  color: #d5e0dd;
}

.intake-copy figure {
  margin: 2rem 0 0;
}

.intake-copy img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
}

.intake-form {
  background: var(--paper);
  padding: 4rem 8% 3.5rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 0.7rem 0;
  font: inherit;
  color: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--teal);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.45;
  cursor: pointer;
}

.check span {
  min-width: 0;
  padding-top: 0.05rem;
}

.check a {
  color: var(--teal);
  border-bottom: 1px solid currentColor;
}

.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  min-width: 1.15rem;
  margin: 0.12rem 0 0;
  padding: 0;
  flex-shrink: 0;
  border: 1px solid var(--teal);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.check input:checked {
  background: var(--teal);
  box-shadow: inset 0 0 0 2px var(--paper);
}

.newsletter .check input {
  border-color: var(--sand);
}

.newsletter .check input:checked {
  background: var(--sand);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.newsletter .check a {
  color: var(--sand);
}

.legal-body a,
.contact-facts a {
  color: var(--teal);
  border-bottom: 1px solid currentColor;
}

.site-notice {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1.2rem;
  background: rgba(13, 53, 51, 0.55);
  backdrop-filter: blur(6px);
}

.site-notice.is-open {
  display: grid;
}

.site-notice-card {
  width: min(420px, 100%);
  background: var(--paper);
  color: var(--ink);
  padding: 2rem 1.7rem 1.6rem;
  box-shadow: 0 24px 60px rgba(18, 32, 38, 0.22);
}

.site-notice-card .eyebrow {
  margin-bottom: 0.5rem;
}

.site-notice-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.85rem;
}

.site-notice-card p {
  color: var(--muted);
}

.site-notice-card .btn {
  margin-top: 0.6rem;
  width: 100%;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto 2.4rem;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
  gap: 2rem;
}

.footer-label {
  margin: 0 0 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
}

.footer-place {
  color: #b7c4c1;
  font-size: 0.92rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.newsletter {
  display: grid;
  gap: 0.8rem;
}

.newsletter input[type="email"] {
  border-bottom-color: rgba(216, 196, 168, 0.35);
  color: #fff;
}

.copyright {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8aa09c;
  font-size: 0.82rem;
}

.page-hero {
  width: min(860px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 4.2rem 0 3rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.page-hero .btn {
  margin-top: 0.6rem;
}

.page-split {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}

.page-split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.band {
  background: var(--teal-deep);
  color: var(--paper);
  padding: 4.5rem 0;
  margin-bottom: 4.5rem;
}

.band-inner {
  width: min(860px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.band .eyebrow,
.band h2 em {
  color: var(--sand);
}

.band p {
  color: #d5e0dd;
}

.work-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(216, 196, 168, 0.22);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.page-wrap {
  width: min(860px, calc(100% - 2.4rem));
  margin: 0 auto 5rem;
}

.legal-body h2 {
  margin-top: 2.2rem;
  font-size: 1.35rem;
  color: var(--teal);
}

.legal-body ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.legal-body li + li {
  margin-top: 0.35rem;
}

.contact-grid {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2.4rem;
  align-items: start;
}

.contact-facts {
  display: grid;
  gap: 1.4rem;
}

.contact-facts p {
  margin: 0;
  color: var(--muted);
}

.contact-facts strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

.contact-form {
  background: var(--paper);
  padding: 2rem 1.8rem 1.8rem;
  display: grid;
  gap: 1rem;
}

@media (max-width: 980px) {
  .hero,
  .about,
  .intake,
  .plan-grid,
  .footer-grid,
  .page-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-split img {
    height: 320px;
  }

  .hero-media img,
  .about-media img {
    height: 420px;
  }

  .focus-bento {
    grid-template-columns: 1fr 1fr;
  }

  .service-list article {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
  }

  .service-meta,
  .price {
    grid-column: auto;
  }

  .service-list article > div {
    grid-column: 1 / -1;
  }

  .service-list a {
    justify-self: end;
  }

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

  .intake-copy img {
    height: 260px;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--fog);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.3rem;
    gap: 0.9rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .form-row,
  .focus-bento,
  .plan-grid,
  .steps li {
    grid-template-columns: 1fr;
  }

  .story-track {
    grid-auto-columns: 86%;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .service-list a {
    justify-self: start;
  }
}
