:root {
  --ink: #1c1614;
  --ink-soft: #4a403b;
  --paper: #f4efe8;
  --paper-2: #ebe4da;
  --surface: #fffdf9;
  --line: #d9cfc4;
  --rose: #8b3a4a;
  --rose-deep: #6e2c3a;
  --sage: #3f5a4c;
  --sand: #c4a484;
  --focus: #8b3a4a;
  --error: #8b2e2e;
  --ok: #2f5d45;
  --radius: 3px;
  --shadow: 0 12px 40px rgba(28, 22, 20, 0.08);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --space: 1.25rem;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: var(--rose);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rose-deep);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.main {
  min-height: 60vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.header__toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.4rem 0.7rem;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
}

.header__toggle-bars {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 -5px 0 var(--ink), 0 5px 0 var(--ink);
}

.header__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__link {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.header__link:hover,
.header__link[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
}

.header__link--accent {
  color: var(--rose);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: 3rem 1.25rem 1.5rem;
  margin-top: 4rem;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr;
  gap: 2rem;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.footer__tag,
.footer__address {
  margin: 0;
  color: var(--ink-soft);
}

.footer__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  color: var(--sage);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--rose);
}

.footer__copy {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cookie {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 40;
  max-width: 36rem;
  margin-left: auto;
}

.cookie__inner {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.cookie__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.cookie__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.cookie__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.65rem 1.15rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--rose);
  color: #fffdf9;
}

.btn--primary:hover {
  background: var(--rose-deep);
  color: #fffdf9;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section--tight {
  padding: 2rem 0;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.6rem;
}

.headline {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.headline--xl {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.headline--l {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.home-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 4rem);
}

.home-hero__media {
  position: relative;
  min-height: 28rem;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.home-hero__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(244, 239, 232, 0.92);
  padding: 0.45rem 0.7rem;
  font-size: 0.8rem;
  max-width: 18rem;
}

.home-hero__copy {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--paper);
}

.home-hero__copy .lede {
  margin-bottom: 1.5rem;
}

.pull {
  border-left: 3px solid var(--sand);
  padding: 0.2rem 0 0.2rem 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.35;
  margin: 0 0 2rem;
  max-width: 36rem;
}

.problem-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.problem-list__row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.problem-list__day {
  font-weight: 600;
  color: var(--rose);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.card__body {
  padding: 1.15rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin: 0;
}

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

.card__title a:hover {
  color: var(--rose);
}

.card__text {
  margin: 0;
  color: var(--ink-soft);
  flex: 1;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.story img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.note {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.note__meta {
  font-size: 0.85rem;
  color: var(--sage);
  margin: 0 0 0.6rem;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.people__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.people__card h3 {
  font-family: var(--font-serif);
  margin: 0.8rem 0 0.2rem;
}

.people__role {
  margin: 0 0 0.5rem;
  color: var(--rose);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
}

.form__row {
  display: grid;
  gap: 0.35rem;
}

.form label {
  font-weight: 500;
}

.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.form textarea {
  min-height: 9rem;
  resize: vertical;
}

.form__error {
  color: var(--error);
  font-size: 0.9rem;
  margin: 0;
}

.form__banner {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
}

.form__banner--ok {
  border-color: var(--ok);
  color: var(--ok);
}

.form__banner--err {
  border-color: var(--error);
  color: var(--error);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 2rem 0 0.6rem;
}

.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 1.5rem 0 0.4rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 0.55rem 0.4rem;
  vertical-align: top;
}

.hero-page {
  padding: 3rem 0 1rem;
}

.hero-page--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.hero-page img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.rate {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}

.rate h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}

.rate__price {
  color: var(--rose);
  font-weight: 600;
}

.quote-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.quote-block:first-of-type {
  border-top: 1px solid var(--line);
}

.quote-block blockquote {
  margin: 0 0 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.35;
}

.quote-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.meta-line {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.include-list {
  padding-left: 1.1rem;
}

.js-error {
  color: var(--error);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .home-hero,
  .hero-page--split,
  .story,
  .footer__inner,
  .card-grid,
  .people {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__media {
    min-height: 18rem;
    position: relative;
  }

  .home-hero__media img {
    position: relative;
    height: 18rem;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.25rem 1.2rem;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__list {
    flex-direction: column;
  }

  .problem-list__row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}
