:root {
  --color-chalk: #f7f5f0;
  --color-ivory: #faf8f3;
  --color-teal: #5b9a8b;
  --color-teal-deep: #3f7a6c;
  --color-dune: #d4c4a8;
  --color-dune-soft: #e8dcc8;
  --color-navy: #1b2a4a;
  --color-navy-mid: #2a3d66;
  --color-coral: #d4654a;
  --color-ink: #243044;
  --color-muted: #5c6578;
  --color-rule: rgba(27, 42, 74, 0.18);
  --color-white: #ffffff;
  --font-serif: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --radius-card: 18px;
  --shadow-paper: 0 10px 28px rgba(27, 42, 74, 0.08);
  --shadow-lift: 0 16px 36px rgba(27, 42, 74, 0.12);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;
  --max: 1180px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(91, 154, 139, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(212, 196, 168, 0.35), transparent 50%),
    linear-gradient(180deg, var(--color-chalk) 0%, #f0ebe3 48%, var(--color-chalk) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--color-teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 0.65em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.island-error {
  background: var(--color-coral);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.55rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-navy-mid);
  color: var(--color-white);
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
  letter-spacing: 0.08em;
}

.btn--ghost:hover {
  background: rgba(27, 42, 74, 0.06);
  color: var(--color-navy);
}

.btn--ghost-light {
  background: transparent;
  color: var(--color-chalk);
  border-color: rgba(247, 245, 240, 0.55);
  letter-spacing: 0.08em;
}

.btn--ghost-light:hover {
  background: rgba(247, 245, 240, 0.1);
  color: var(--color-white);
}

.link-underline {
  position: relative;
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 600;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.link-underline:hover::after {
  transform: scaleX(1);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal-deep);
  margin: 0 0 0.85rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 245, 240, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 245, 240, 0.92);
  border-bottom-color: var(--color-rule);
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.05);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__wordmark {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.site-header__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header__list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.2rem 0;
}

.site-header__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-header__list a:hover::after,
.site-header__list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.site-header__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--color-navy);
  transition: transform 0.25s var(--ease);
}

@media (max-width: 960px) {
  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(247, 245, 240, 0.98);
    border-bottom: 1px solid var(--color-rule);
    padding: 1.25rem 1.5rem 1.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header__list {
    flex-direction: column;
    gap: 0.85rem;
  }
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: rgba(247, 245, 240, 0.82);
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 0 0;
}

.site-footer a {
  color: rgba(247, 245, 240, 0.88);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-dune-soft);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem var(--space-lg);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.3fr;
  gap: 2rem 1.5rem;
}

.site-footer__wordmark {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-chalk);
  margin: 0 0 0.75rem;
}

.site-footer__tag {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 22rem;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.92rem;
  margin-top: 1.25rem;
  line-height: 1.7;
}

.site-footer__heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-dune-soft);
  margin: 0 0 1rem;
  font-weight: 600;
}

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

.site-footer__col li {
  margin-bottom: 0.55rem;
}

.site-footer__newsletter p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1 1 140px;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 240, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-chalk);
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(247, 245, 240, 0.5);
}

.site-footer__base {
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.55);
}

.site-footer__base p {
  margin: 0;
}

@media (max-width: 960px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner__inner {
  pointer-events: auto;
  max-width: 920px;
  margin: 0 auto;
  background: var(--color-navy);
  color: var(--color-chalk);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(91, 154, 139, 0.35);
}

.cookie-banner__copy {
  flex: 1 1 280px;
}

.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-chalk);
  margin: 0 0 0.4rem;
}

.cookie-banner__copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(247, 245, 240, 0.82);
}

.cookie-banner__copy a {
  color: var(--color-dune-soft);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-banner__error {
  flex: 1 1 100%;
  margin: 0;
  color: #ffb4a4;
  font-size: 0.88rem;
}

/* Layout helpers */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-xl) 0;
}

.section--tight {
  padding: var(--space-lg) 0;
}

.section--dune {
  background: linear-gradient(135deg, rgba(232, 220, 200, 0.45), rgba(247, 245, 240, 0.2));
}

.section--offset {
  position: relative;
}

.prose {
  max-width: 42rem;
}

.prose h2,
.prose h3 {
  margin-top: 1.75em;
}

.prose > *:first-child {
  margin-top: 0;
}

.card {
  background: var(--color-ivory);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

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

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  border-top: 1px solid var(--color-rule);
}

.card__body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
}

.card__body p {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}

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

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

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

.callout {
  max-width: var(--max);
  margin: var(--space-lg) auto;
  padding: 1.75rem 2rem;
  background: var(--color-ivory);
  border: 1px solid var(--color-rule);
  border-left: 3px solid var(--color-coral);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
}

.callout__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.cta-band {
  max-width: var(--max);
  margin: var(--space-xl) auto;
  padding: 2.5rem 2rem;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(91, 154, 139, 0.18), rgba(212, 196, 168, 0.35)),
    var(--color-ivory);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
}

.cta-band p {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  color: var(--color-muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Home hero — asymmetric magazine layout */
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 3rem;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-xl);
  min-height: calc(100vh - var(--header-h) - 2rem);
}

.home-hero__copy {
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.home-hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  color: var(--color-navy);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.home-hero__line {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  color: var(--color-teal-deep);
  margin: 0 0 1.25rem;
  max-width: 22rem;
}

.home-hero__text {
  max-width: 28rem;
  color: var(--color-muted);
  margin-bottom: 1.75rem;
}

.home-hero__visual {
  position: relative;
  height: min(72vh, 640px);
  border-radius: var(--radius-card) var(--radius-card) var(--radius-card) 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--color-rule);
}

.home-hero__visual img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.home-hero__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(247, 245, 240, 0.92);
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
  border-radius: 8px;
}

@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: var(--space-md);
  }

  .home-hero__visual {
    height: 48vh;
    order: -1;
  }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.split--offset .split__media {
  transform: translateY(2rem);
}

.split__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-paper);
}

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

@media (max-width: 800px) {
  .split,
  .split--offset .split__media {
    grid-template-columns: 1fr;
    transform: none;
  }
}

.band-title {
  max-width: var(--max);
  margin: 0 auto var(--space-md);
  padding: 0 1.5rem;
}

.band-title p {
  max-width: 36rem;
  color: var(--color-muted);
}

.quote-rail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.quote-card {
  background: var(--color-ivory);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-paper);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--color-navy);
}

.quote-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-muted);
}

@media (max-width: 800px) {
  .quote-rail {
    grid-template-columns: 1fr;
  }
}

.horizon {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  padding: 0.5rem 1.5rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  scroll-snap-type: x mandatory;
}

.horizon__item {
  flex: 0 0 min(320px, 80vw);
  scroll-snap-align: start;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-md);
}

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

.page-hero--wide img {
  border-radius: var(--radius-card);
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-paper);
}

@media (max-width: 800px) {
  .page-hero--wide {
    grid-template-columns: 1fr;
  }
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem var(--space-xl);
}

.form-panel {
  background: var(--color-ivory);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-paper);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-rule);
  border-radius: 12px;
  font: inherit;
  background: var(--color-white);
  color: var(--color-ink);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--color-teal);
  outline-offset: 1px;
}

.form-group [data-field-error] {
  display: block;
  color: var(--color-coral);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-message--success {
  background: rgba(91, 154, 139, 0.18);
  color: var(--color-teal-deep);
}

.form-message--error {
  background: rgba(212, 101, 74, 0.15);
  color: #9a3d2c;
}

.contact-aside {
  padding: 0.5rem 0;
}

.contact-aside h2 {
  font-size: 1.5rem;
}

.contact-aside address {
  font-style: normal;
  line-height: 1.7;
  margin: 1rem 0;
}

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

/* Service detail */
.service-detail__hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.service-detail__figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-paper);
}

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

.service-detail__body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem var(--space-md);
}

.service-detail__body.prose {
  max-width: 46rem;
}

@media (max-width: 800px) {
  .service-detail__hero {
    grid-template-columns: 1fr;
  }
}

/* Post */
.post {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-xl);
}

.post__title {
  margin-bottom: 0.5rem;
}

.post__meta {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.post__cover {
  margin: 0 0 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-rule);
}

.post__cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post__back {
  margin-top: 2.5rem;
}

/* Reviews */
.review-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem var(--space-lg);
  display: grid;
  gap: 1.25rem;
}

.review-item {
  background: var(--color-ivory);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-paper);
}

.review-item blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.review-item cite {
  font-style: normal;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.story-block {
  max-width: var(--max);
  margin: 0 auto var(--space-lg);
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.story-block img {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 800px) {
  .story-block {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-ivory);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-paper);
}

.fee-table th,
.fee-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-rule);
  vertical-align: top;
}

.fee-table th {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-navy);
  background: rgba(232, 220, 200, 0.35);
}

.fee-table tr:last-child td {
  border-bottom: 0;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-xl);
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
  border: 1px solid var(--color-rule);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.cookies-table th {
  background: rgba(232, 220, 200, 0.4);
}

.error-page {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
  text-align: center;
}

.engagement-steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem var(--space-xl);
  display: grid;
  gap: 0;
}

.engagement-step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-rule);
}

.engagement-step__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-teal);
  line-height: 1;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem var(--space-xl);
}

.team-card {
  background: var(--color-ivory);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
}

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

.team-card__body {
  padding: 1.15rem 1.25rem 1.4rem;
  border-top: 1px solid var(--color-rule);
}

.team-card__body h3 {
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}

.team-card__role {
  color: var(--color-teal-deep);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

@media (max-width: 800px) {
  .team-row {
    grid-template-columns: 1fr;
  }
}

.coral-mark {
  color: var(--color-coral);
}
