:root {
  color-scheme: light;
  --paper: #f3eee4;
  --paper-2: #e7dfd0;
  --card: #fbf7f1;
  --ink: #1e1914;
  --muted: #4e463d;
  --line: #d2c7b6;
  --moss: #1f3d34;
  --moss-2: #2c5649;
  --copper: #8d4530;
  --copper-soft: #c4785a;
  --cream: #f7f1e6;
  --shadow: 0 18px 40px rgba(36, 28, 20, 0.08);
  --serif: "Fraunces", "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --measure: 68ch;
  --wide: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  background:
    radial-gradient(ellipse at 0 0, rgba(141, 69, 48, 0.07), transparent 36%),
    linear-gradient(180deg, #f7f3ea 0%, var(--paper) 28%, #efe6d6 100%);
  min-height: 100vh;
}

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

a {
  color: var(--moss);
}

a:hover {
  color: var(--copper);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--moss);
  color: var(--cream);
  padding: 0.5rem 0.8rem;
  z-index: 40;
}

.skip:focus {
  top: 0.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--moss);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 640;
  letter-spacing: 0.04em;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name,
.footer-brand {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 1.05rem;
}

.brand-sub,
.footer-label,
.kicker,
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.98rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--copper);
}

.nav-cta {
  border: 1px solid var(--moss);
  padding: 0.35rem 0.7rem;
}

.nav-cta:hover {
  background: var(--moss);
  color: var(--cream);
}

main {
  display: block;
}

.wrap {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin-inline: auto;
}

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

.hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.3rem, 4.6vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 1rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 560;
  color: var(--moss);
}

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

.eyebrow {
  display: flex;
  gap: 0.8rem;
  margin: 0;
}

.eyebrow span + span::before {
  content: "·";
  margin-right: 0.8rem;
  color: var(--line);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.15rem;
}

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

.hero-figure img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: 1.2rem -0.8rem -0.8rem 1.4rem;
  background: var(--moss);
  z-index: -1;
}

.hero-figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.clause-band {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 2.4rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.clause {
  padding: 1.1rem 1.15rem 1.3rem;
  border-right: 1px solid var(--line);
}

.clause:last-child {
  border-right: 0;
}

.clause strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 560;
  margin-bottom: 0.35rem;
}

.clause span {
  color: var(--copper);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 3.2rem auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.section h2,
.page-title,
.prose h2,
.article-body h2 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section h2,
.page-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.2rem 0 0;
}

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

.journal-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.offer-card,
.journal-card,
.person,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.offer-card img,
.journal-card img,
.person img,
.frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.offer-card div,
.journal-card div,
.person div {
  padding: 0.95rem 1rem 1.15rem;
}

.offer-card h3,
.journal-card h3,
.person h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 560;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.offer-card p,
.journal-card p,
.person p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.card-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 600;
}

.quote-band {
  width: min(900px, calc(100% - 2.4rem));
  margin: 2rem auto 3rem;
  padding: 0 0 0 1.2rem;
  border-left: 3px solid var(--copper);
}

.quote-band blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 560;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.quote-band figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
}

.doc-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

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

.doc-row dt {
  font-weight: 600;
  color: var(--copper);
}

.doc-row dd {
  margin: 0;
}

.close-band {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 1rem auto 3rem;
  background: var(--moss);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  padding: 1.6rem;
}

.close-band h2 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.03em;
}

.close-band a {
  color: var(--cream);
}

.button {
  display: inline-block;
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button:hover {
  background: #733622;
  color: #fff;
}

.button.moss {
  background: var(--moss);
}

.page-intro {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 2rem auto 1rem;
}

.page-title em {
  font-style: italic;
  color: var(--moss);
}

.lead {
  font-size: 1.16rem;
  max-width: var(--measure);
  color: var(--muted);
}

.split {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 1.2rem auto 2.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: start;
}

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

.prose,
.article-body {
  width: min(74ch, calc(100% - 2.4rem));
  margin: 0 auto 3rem;
}

.prose p,
.article-body p,
.legal p {
  margin: 0 0 0.95rem;
}

.prose h2,
.article-body h2,
.legal h2 {
  margin: 1.8rem 0 0.6rem;
  font-size: 1.7rem;
}

.prose ul,
.article-body ul,
.legal ul,
.meta-list {
  padding-left: 1.1rem;
}

.meta-panel {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

.meta-panel h2 {
  font-family: var(--serif);
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meta-list li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
}

.meta-list li:first-child {
  border-top: 0;
}

.people {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 0 auto 3rem;
}

.person img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(0.15);
}

.fee-table,
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  margin: 1rem 0 1.5rem;
}

.fee-table th,
.fee-table td,
.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.fee-table th,
.cookie-table th {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.reviews {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
}

.review {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
}

.review:nth-child(2) {
  margin-left: 6%;
  max-width: 46rem;
}

.review:nth-child(3) {
  max-width: 38rem;
}

.review p {
  margin: 0;
  font-size: 1.08rem;
}

.review footer {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.story {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.2rem;
  align-items: center;
}

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

.steps {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 0 auto 2.5rem;
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--ink);
}

.step:last-child {
  border-bottom: 1px solid var(--ink);
}

.step b {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 560;
  color: var(--copper);
}

.contact-grid {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.4rem;
}

.address-block address,
.verbatim {
  font-style: normal;
  font-weight: 600;
  word-break: break-word;
}

form {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.1rem;
}

.form-fields {
  display: grid;
  gap: 0.85rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

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

label {
  font-weight: 600;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.55rem 0.65rem;
}

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

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.field-error,
.form-status.is-error,
.inline-error {
  color: #6d2418;
}

.field-error {
  font-size: 0.92rem;
}

.form-status {
  margin: 0 0 0.8rem;
}

.form-status.is-success {
  background: #e5efe8;
  border: 1px solid var(--moss);
  padding: 0.8rem;
  color: var(--moss);
}

.form-status.is-error {
  background: #f8e6e0;
  border: 1px solid var(--copper);
  padding: 0.8rem;
}

.inline-error {
  margin: 0;
  padding: 0.75rem 1rem;
  background: #f6ddd4;
  border-bottom: 2px solid var(--copper);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--moss);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.cookie-actions button,
.cookie-actions a {
  min-width: 8.5rem;
  text-align: center;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.cookie-actions a {
  color: var(--moss);
  border-bottom: 1px solid var(--copper);
  min-width: 0;
  padding-inline: 0.2rem;
}

.cookie-actions [data-choice="accept"] {
  background: var(--moss);
  color: var(--cream);
  border: 1px solid var(--moss);
}

.cookie-actions [data-choice="reject"] {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.legal {
  width: min(76ch, calc(100% - 2.4rem));
  margin: 0 auto 3rem;
}

.not-found {
  width: min(40rem, calc(100% - 2.4rem));
  margin: 4rem auto;
}

.not-found h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.article-hero {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 1.4rem auto;
}

.article-hero img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  aspect-ratio: 16 / 7;
}

.journal-card time,
.byline {
  color: var(--copper);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.site-footer {
  background: var(--moss);
  color: #f3ecdf;
  padding: 2rem 0 1.2rem;
  margin-top: 2rem;
}

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

.footer-brand {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.site-footer a {
  color: #f3ecdf;
}

.site-footer p,
.site-footer address {
  margin: 0.25rem 0;
  font-style: normal;
}

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

.footer-links li {
  margin: 0.25rem 0;
}

.footer-note {
  width: min(var(--wide), calc(100% - 2.4rem));
  margin: 1.4rem auto 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(243, 236, 223, 0.25);
  font-size: 0.92rem;
}

.four-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    flex: none;
  }

  .brand-sub {
    display: none;
  }

  .brand-name {
    white-space: nowrap;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f7f3ea;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1.2rem 1rem;
    gap: 0.7rem;
  }

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

  .hero,
  .clause-band,
  .offer-grid,
  .journal-grid,
  .people,
  .split,
  .story,
  .contact-grid,
  .close-band,
  .footer-grid,
  .field-row,
  .four-grid {
    grid-template-columns: 1fr;
  }

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

  .review:nth-child(2),
  .review:nth-child(3) {
    margin-left: 0;
    max-width: none;
  }

  .hero-figure::before {
    inset: auto;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}
