:root {
  --teal: #5b9a8b;
  --teal-deep: #3d7568;
  --sand: #e8d5c4;
  --sand-deep: #d4b896;
  --coral: #d4897a;
  --coral-soft: #e8b4a8;
  --navy: #1a2a4a;
  --navy-mid: #2a3f66;
  --chalk: #f7f4ef;
  --ivory: #faf7f2;
  --ink: #1a2a4a;
  --muted: #5c6578;
  --rule: rgba(26, 42, 74, 0.18);
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;
  --radius: 0.35rem;
  --radius-lg: 0.75rem;
  --shadow-lift: 0 12px 32px rgba(26, 42, 74, 0.08);
  --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-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    linear-gradient(165deg, var(--chalk) 0%, #f0ebe3 42%, #e8f0ed 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.25s var(--ease);
}

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

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

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

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

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

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;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 0.75rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn--ink {
  background: var(--navy);
  color: var(--chalk);
  border-color: var(--navy);
}

.btn--ink:hover {
  background: transparent;
  color: var(--navy);
}

.btn--sand {
  background: transparent;
  color: var(--sand);
  border-color: var(--sand-deep);
}

.btn--sand:hover {
  background: var(--sand);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--chalk);
}

.btn--coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.btn--coral:hover {
  background: transparent;
  color: var(--coral);
}

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

.link-arrow::after {
  content: " →";
  color: var(--teal);
}

.panel {
  background: var(--ivory) var(--grain);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--navy);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-md);
  box-shadow: var(--shadow-lift);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 42, 74, 0.12);
}

.panel__title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 244, 239, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: height 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.site-header.is-condensed {
  height: 3.4rem;
  background: rgba(247, 244, 239, 0.92);
  border-bottom-color: var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2.5rem));
}

.site-header__brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-header__list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}

.site-header__list a:hover {
  color: var(--teal-deep);
}

.site-header__cta {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.site-header__cta:hover {
  background: var(--navy);
  color: var(--chalk) !important;
}

.site-header__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.25s var(--ease);
}

@media (max-width: 920px) {
  .site-header__toggle {
    display: block;
    z-index: 110;
  }

  .site-header__nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: var(--header-h);
    background: var(--ivory);
    border-bottom: 1px solid var(--rule);
    padding: 1.25rem;
    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;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Footer */
.site-footer {
  margin-top: var(--space-2xl);
  background:
    linear-gradient(180deg, var(--navy-mid), var(--navy));
  color: var(--sand);
  padding: var(--space-xl) 0 var(--space-lg);
}

.site-footer a {
  color: var(--sand);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(232, 213, 196, 0.2);
}

.site-footer__wordmark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--chalk);
  margin: 0;
}

.site-footer__ornament {
  color: var(--coral-soft);
  margin: 0.35rem 0 0.75rem;
  letter-spacing: 0.3em;
}

.site-footer__tagline {
  color: rgba(232, 213, 196, 0.85);
  max-width: 18rem;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin: 0 0 0.85rem;
}

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

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

.site-footer__links li {
  margin-bottom: 0.45rem;
}

.site-footer__newsletter p {
  font-size: 0.95rem;
  color: rgba(232, 213, 196, 0.85);
}

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

.newsletter-form input {
  flex: 1 1 10rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(232, 213, 196, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--chalk);
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(232, 213, 196, 0.55);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: var(--space-md);
  font-size: 0.9rem;
}

.site-footer__contact p {
  margin: 0 0 0.35rem;
}

.site-footer__copy {
  color: rgba(232, 213, 196, 0.6);
  margin: 0;
}

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

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 640px;
  margin-inline: auto;
}

.cookie-banner__inner {
  background: var(--ivory) var(--grain);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.cookie-banner__error {
  width: 100%;
  color: var(--coral);
  margin: 0;
  font-size: 0.9rem;
}

/* Home hero — asymmetrical editorial */
.home-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

.home-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

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

.home-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 244, 239, 0.15),
    transparent 40%
  );
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) clamp(1.5rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, rgba(91, 154, 139, 0.12), transparent 50%),
    linear-gradient(180deg, var(--chalk), rgba(232, 213, 196, 0.35));
}

.home-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.4rem;
  line-height: 1.02;
}

.home-hero__line {
  width: 4rem;
  height: 2px;
  background: var(--coral);
  margin: 0.5rem 0 1.25rem;
}

.home-hero__headline {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  color: var(--navy-mid);
  max-width: 22ch;
  margin-bottom: 1rem;
}

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

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

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

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

.section--band {
  background:
    linear-gradient(120deg, rgba(91, 154, 139, 0.14), rgba(212, 137, 122, 0.08)),
    var(--ivory);
  border-block: 1px solid var(--rule);
}

.section__header {
  max-width: 38rem;
  margin-bottom: var(--space-lg);
}

.section__header--offset {
  margin-left: clamp(0rem, 8vw, 6rem);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  height: clamp(280px, 42vw, 480px);
  object-fit: cover;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  border: 1px solid var(--rule);
}

.split__media::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1rem -1rem 1.25rem;
  border: 1px solid var(--teal);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.45;
}

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

  .split--reverse .split__media {
    order: 0;
  }
}

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

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

.card {
  background: var(--ivory) var(--grain);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--navy);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__body h3 {
  margin-bottom: 0.5rem;
}

.card__body p {
  color: var(--muted);
  flex: 1;
}

.card__meta {
  font-size: 0.85rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.quote-block {
  background: var(--ivory) var(--grain);
  border-left: 3px solid var(--coral);
  padding: 1.5rem 1.75rem;
  margin: 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1rem;
}

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

.story-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.story-band__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

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

  .story-band__image img {
    border-radius: var(--radius-lg);
    min-height: 220px;
  }
}

.cta-band {
  padding: var(--space-xl) 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(91, 154, 139, 0.22), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 137, 122, 0.18), transparent 45%),
    var(--navy);
  color: var(--sand);
  text-align: center;
}

.cta-band h2 {
  color: var(--chalk);
}

.cta-band p {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  color: rgba(232, 213, 196, 0.88);
}

.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.page-hero--media {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.page-hero--media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 42, 74, 0.15),
    rgba(26, 42, 74, 0.72)
  );
}

.page-hero--media .container {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-lg);
}

.page-hero--media h1,
.page-hero--media .lede,
.page-hero--media .eyebrow {
  color: var(--chalk);
}

.page-hero--media .lede {
  color: rgba(247, 244, 239, 0.85);
}

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

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

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

.prose th {
  background: rgba(91, 154, 139, 0.12);
  font-weight: 600;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.92rem;
}

.form-status--success {
  color: var(--teal-deep);
}

.form-status--error {
  color: #a14538;
}

.field-error {
  color: #a14538;
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
}

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

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--ivory);
  font: inherit;
  color: var(--ink);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

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

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

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

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 0;
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--ivory) var(--grain);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--teal);
  padding: 1.15rem 1.35rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ivory);
  border: 1px solid var(--rule);
}

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

.fee-table th {
  font-family: var(--font-display);
  font-size: 1.15rem;
  background: rgba(26, 42, 74, 0.04);
}

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

.review-list {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  background: var(--ivory) var(--grain);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--navy);
  padding: 1.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.review-card__service {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.4;
}

.review-card footer {
  font-size: 0.92rem;
  color: var(--muted);
}

.approach-steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

.approach-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--ivory) var(--grain);
  border: 1px solid var(--rule);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.approach-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
}

.service-detail__hero {
  margin-bottom: var(--space-lg);
}

.service-detail__media {
  max-height: 420px;
  overflow: hidden;
}

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

.service-detail__intro {
  margin-top: -4rem;
  position: relative;
  background: var(--ivory) var(--grain);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--navy);
  padding: var(--space-md) var(--space-lg);
  max-width: 40rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.service-detail__price {
  font-weight: 600;
  color: var(--teal-deep);
  margin: 0;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

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

  .service-detail__intro {
    margin-top: -2rem;
  }
}

.post__hero {
  position: relative;
  margin-bottom: var(--space-lg);
}

.post__cover {
  width: 100%;
  height: min(52vh, 480px);
  object-fit: cover;
}

.post__intro {
  margin-top: -5rem;
  position: relative;
  background: var(--ivory) var(--grain);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--navy);
  padding: var(--space-md);
  max-width: 40rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

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

.post__back {
  margin: var(--space-lg) 0 var(--space-xl);
}

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

.page-legal__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-xl) 1rem;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--coral);
  line-height: 1;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--rule);
}

.feature-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.65rem;
  top: 0.85rem;
}
