:root {
  color-scheme: light;
  --ink: #3d3428;
  --ink-soft: #655a4d;
  --paper: #eadfce;
  --paper-strong: #fffdf8;
  --paper-soft: #f6efe5;
  --muted: #827565;
  --line: rgba(184, 156, 111, 0.34);
  --wine: #b99a63;
  --wine-deep: #8b7047;
  --gold: #c1a36f;
  --gold-soft: #e3d4bd;
  --olive: #9d8969;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(110, 89, 58, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 8px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(184, 156, 111, 0.22);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(110, 89, 58, 0.08);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 248, 0.97);
}

.brand {
  display: grid;
  gap: 1px;
  min-width: 188px;
  padding: 2px 0;
}

.brand-name {
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.2px;
  line-height: 1.25;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action,
.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-action {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(184, 156, 111, 0.42);
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
}

.header-action:hover {
  background: var(--wine-deep);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 156, 111, 0.36);
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--wine-deep);
  cursor: pointer;
}

.site-header svg,
.button svg,
.practice-card svg,
.text-link svg,
.contact-link svg,
.site-footer svg,
.check-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 84vh;
  overflow: hidden;
  padding: 126px max(20px, calc((100vw - 1160px) / 2)) 68px;
  color: var(--ink);
  background: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 22%;
  filter: saturate(0.9) contrast(1.02) brightness(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246, 239, 229, 0.98) 0%, rgba(246, 239, 229, 0.9) 42%, rgba(246, 239, 229, 0.54) 74%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.25) 0%, rgba(234, 223, 206, 0.82) 100%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6.6vw, 5.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 4.25rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

section[id] {
  scroll-margin-top: 92px;
}

.hero-lead,
.about-copy p,
.section-heading p,
.practice-card p,
.feature-content p,
.book-content p,
.contact-inner p,
.subpage-hero p:last-child,
.news-row p,
.article-hero p,
.article-content p,
.article-card p,
.check-list li {
  hyphens: auto;
  text-align: justify;
  text-align-last: left;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(139, 112, 71, 0.18);
}

.button-secondary {
  border-color: rgba(184, 156, 111, 0.46);
  background: rgba(255, 253, 248, 0.78);
  color: var(--wine-deep);
}

.button-primary:hover {
  background: var(--wine-deep);
}

.button-secondary:hover {
  border-color: rgba(184, 156, 111, 0.74);
  background: var(--paper-strong);
}

.authority-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--container);
  margin: -38px auto 0;
  border: 1px solid rgba(184, 156, 111, 0.34);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
}

.authority-item {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 148px;
  padding: 30px 28px;
  border-right: 1px solid rgba(184, 156, 111, 0.22);
}

.authority-item:last-child {
  border-right: 0;
}

.authority-item span {
  display: block;
  min-height: 48px;
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 0.95;
}

.authority-item p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 112px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.about-copy {
  padding-top: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-copy p {
  margin-bottom: 22px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p {
  margin-bottom: 22px;
  color: var(--muted);
}

.practice-section {
  border-top: 1px solid var(--line);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.practice-card {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.practice-card:hover {
  border-color: rgba(184, 156, 111, 0.62);
  box-shadow: 0 14px 34px rgba(110, 89, 58, 0.12);
  transform: translateY(-3px);
}

.practice-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--gold);
}

.practice-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 620px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
}

.feature-image {
  min-height: 520px;
}

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

.feature-content {
  align-self: center;
  padding: 80px max(20px, calc((100vw - 1160px) / 2)) 80px 72px;
}

.feature-content p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.03rem;
}

.check-list {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
}

.check-list svg {
  color: var(--gold);
  margin-top: 3px;
}

.book-section {
  padding-bottom: 80px;
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.76fr);
  gap: 54px;
  align-items: center;
}

.book-content p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.03rem;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.topic-cloud span {
  position: relative;
  overflow: hidden;
  padding: 9px 13px;
  border: 1px solid rgba(184, 156, 111, 0.34);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--wine-deep);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 0 0 rgba(110, 89, 58, 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.topic-cloud span::after {
  position: absolute;
  inset: -20% auto -20% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

.topic-cloud span:hover {
  border-color: rgba(184, 156, 111, 0.68);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(110, 89, 58, 0.16);
  transform: translateY(-3px);
}

.topic-cloud span:hover::after {
  left: 115%;
}

@media (prefers-reduced-motion: reduce) {
  .topic-cloud span,
  .topic-cloud span::after {
    transition: none;
  }

  .topic-cloud span:hover {
    transform: none;
  }
}

.book-visual {
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.book-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.articles-section {
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: var(--wine-deep);
  font-weight: 800;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  overflow: hidden;
}

.post-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--gold-soft);
}

.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--cover-position, center);
}

.article-card > div {
  padding: 22px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  justify-content: flex-start;
  margin-bottom: 12px;
  width: 100%;
  padding: 0;
}

.post-date {
  display: block;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(110, 89, 58, 0.14);
}

.article-card h3,
.news-row h2 {
  width: 100%;
}

.article-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--wine-deep);
  font-weight: 800;
}

.contact-section {
  padding: 96px 20px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(234, 223, 206, 0.96)),
    var(--paper);
  color: var(--ink);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: center;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.contact-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  justify-content: flex-start;
  min-height: 78px;
  padding: 18px;
  border: 1px solid rgba(184, 156, 111, 0.32);
  border-radius: var(--radius);
  background: var(--paper-strong);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-link:hover {
  border-color: rgba(184, 156, 111, 0.56);
  background: var(--paper-soft);
  transform: translateY(-2px);
}

.contact-link svg {
  color: var(--gold);
}

.contact-link strong {
  display: block;
  margin-bottom: 2px;
}

.contact-link span {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 24px max(20px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(139, 112, 71, 0.18);
}

.site-footer.article-site-footer {
  padding-right: max(20px, calc((100% - 960px) / 2));
  padding-left: max(20px, calc((100% - 960px) / 2));
}

.subpage-hero {
  display: grid;
  align-items: end;
  min-height: 520px;
  padding: 156px max(20px, calc((100vw - 1160px) / 2)) 78px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(234, 223, 206, 0.94)),
    var(--paper);
  color: var(--ink);
}

.subpage-hero div {
  width: min(850px, 100%);
}

.subpage-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.subpage-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.news-index {
  display: grid;
  gap: 18px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.category-filter__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(184, 156, 111, 0.34);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--wine-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-filter__button:hover,
.category-filter__button:focus-visible {
  border-color: rgba(184, 156, 111, 0.62);
  background: var(--paper-soft);
  transform: translateY(-2px);
}

.category-filter__button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.category-empty {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--muted);
}

.category-empty[hidden],
.news-row[hidden] {
  display: none;
}

.news-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.news-row .post-cover {
  border-radius: 6px;
}

.news-row .post-meta {
  margin-bottom: 10px;
}

.news-row h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
}

.news-row p {
  max-width: 760px;
  color: var(--muted);
}

.news-row a,
.article-footer .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wine-deep);
  font-weight: 800;
}

.article-page {
  width: min(960px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 150px 0 90px;
}

.article-hero {
  padding-bottom: 34px;
}

.article-meta {
  margin-bottom: 16px;
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
}

.article-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-cover {
  width: 100%;
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.article-content {
  width: 100%;
  margin: 48px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-content p {
  max-width: none;
  margin-bottom: 24px;
}

.article-content blockquote {
  margin: 34px 0;
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: var(--paper-strong);
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.45;
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 46px 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.article-footer .button-primary {
  background: var(--gold);
  color: var(--white);
}

.article-footer .button-primary:hover {
  background: var(--wine-deep);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    width: auto;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-items: start;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(184, 156, 111, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 18px 46px rgba(110, 89, 58, 0.14);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 118px;
  }

  .hero-bg img {
    object-position: 64% 16%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(246, 239, 229, 0.98) 0%, rgba(246, 239, 229, 0.9) 50%, rgba(246, 239, 229, 0.58) 100%),
      linear-gradient(180deg, rgba(255, 253, 248, 0.2) 0%, rgba(234, 223, 206, 0.78) 100%);
  }

  .authority-strip,
  .practice-grid,
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-item {
    min-height: 136px;
  }

  .about-grid,
  .section-heading,
  .feature-band,
  .book-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .section-heading,
  .book-layout,
  .contact-inner {
    gap: 28px;
  }

  .feature-content {
    padding: 64px max(20px, calc((100vw - 720px) / 2));
  }

  .text-link {
    justify-self: start;
  }

  .news-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
    letter-spacing: 1.6px;
  }

  .main-nav {
    top: 70px;
    right: 14px;
    left: 14px;
  }

  .hero {
    align-items: end;
    min-height: 92vh;
    padding: 118px 14px 74px;
  }

  .hero-bg img {
    object-position: 58% 10%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(246, 239, 229, 0.36) 0%, rgba(246, 239, 229, 0.8) 42%, rgba(234, 223, 206, 0.96) 100%),
      linear-gradient(90deg, rgba(255, 253, 248, 0.88) 0%, rgba(246, 239, 229, 0.44) 100%);
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

  .authority-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .authority-item {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 156, 111, 0.22);
  }

  .authority-item span {
    min-height: 0;
  }

  .section {
    padding: 76px 0;
  }

  section[id] {
    scroll-margin-top: 82px;
  }

  .practice-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: auto;
    padding: 24px;
  }

  .feature-image {
    min-height: 360px;
  }

  .feature-content {
    padding: 52px 14px;
  }

  .book-section {
    padding-bottom: 64px;
  }

  .contact-section {
    padding: 76px 14px;
  }

  .contact-actions {
    min-width: 0;
  }

  .contact-link {
    align-items: flex-start;
  }

  .contact-link span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 22px 14px;
  }

  .site-footer.article-site-footer {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: 146px;
    padding-right: 14px;
    padding-left: 14px;
    text-align: center;
  }

  .site-footer.article-site-footer p {
    max-width: 330px;
    margin: 0 auto;
    text-align: center;
  }

  .site-footer.article-site-footer a {
    flex: 0 0 46px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .site-footer.article-site-footer svg {
    width: 18px;
    height: 18px;
  }

  .subpage-hero {
    min-height: 440px;
    padding: 126px 14px 58px;
  }

  .subpage-hero h1,
  .article-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .article-page {
    width: min(calc(100% - 28px), 960px);
    padding: 120px 0 70px;
  }

  .article-content {
    margin-top: 38px;
    font-size: 1rem;
  }

  .article-content blockquote {
    padding: 22px;
    font-size: 1.12rem;
  }

  .article-footer .button {
    width: 100%;
  }

  .article-footer {
    justify-content: center;
    text-align: center;
  }

  .article-footer .text-link {
    justify-content: center;
    width: 100%;
  }
}
