:root {
  --ink: #17231f;
  --ink-soft: #31403a;
  --forest: #173f35;
  --forest-deep: #0d2d27;
  --red: #9d342c;
  --red-deep: #76251f;
  --gold: #d5a546;
  --gold-soft: #f1dfb5;
  --cream: #fbf6ed;
  --sand: #eee1cf;
  --white: #ffffff;
  --line: rgba(23, 35, 31, 0.14);
  --shadow-sm: 0 10px 30px rgba(23, 35, 31, 0.08);
  --shadow-lg: 0 24px 70px rgba(13, 45, 39, 0.16);
  --radius-sm: 0.65rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.75rem;
  --content: 74rem;
  --header-height: 5rem;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 0.4rem;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 7.25rem);
}

.section--white {
  background: var(--white);
}

.section--sand {
  background: var(--sand);
}

.section--forest {
  color: var(--white);
  background: var(--forest-deep);
}

.section--soft {
  background:
    radial-gradient(circle at 15% 10%, rgba(213, 165, 70, 0.16), transparent 25rem),
    var(--cream);
}

.eyebrow {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--gold {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.lead {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.section--forest .lead,
.on-dark {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: #66716c;
}

.kicker {
  color: var(--red);
  font-weight: 750;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.75rem;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--gold {
  color: #201a10;
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(213, 165, 70, 0.22);
}

.button--gold:hover {
  background: #e1b65d;
}

.button--red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(157, 52, 44, 0.2);
}

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

.button--forest {
  color: var(--white);
  background: var(--forest);
}

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

.button--outline {
  border-color: rgba(23, 35, 31, 0.3);
  color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.button--light-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button--light-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.text-link {
  color: var(--red);
  font-weight: 800;
}

.announcement {
  padding: 0.55rem 1rem;
  color: var(--white);
  background: var(--red-deep);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

.announcement a {
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 246, 237, 0.96);
  backdrop-filter: blur(16px);
}

.navbar {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(0.38rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.45rem);
}

.nav-menu > a:not(.button) {
  position: relative;
  padding-block: 1.6rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-menu > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 1.1rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-menu > a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(49rem, calc(100svh - 2rem));
  display: grid;
  color: var(--white);
  background: var(--forest-deep);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 31, 27, 0.95) 0%, rgba(9, 31, 27, 0.72) 47%, rgba(9, 31, 27, 0.15) 100%),
    linear-gradient(0deg, rgba(9, 31, 27, 0.5), transparent 55%);
  content: "";
}

.hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero__inner {
  display: grid;
  padding-block: clamp(5rem, 10vw, 8rem);
  align-items: end;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.hero__copy {
  max-width: 48rem;
}

.hero__copy .eyebrow {
  color: var(--gold-soft);
}

.hero__lede {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(13, 45, 39, 0.86);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
}

.service-card__top {
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card__top p {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card__row {
  display: flex;
  padding: 1.05rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card__row:last-child {
  border-bottom: 0;
}

.service-card__row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.service-card__row strong {
  white-space: nowrap;
}

.intro-grid,
.split {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.25rem, 7vw, 6.5rem);
}

.split--top {
  align-items: start;
}

.intro-mark {
  position: relative;
  min-height: 29rem;
}

.intro-mark::before {
  position: absolute;
  inset: 0 10% 8% 0;
  border-radius: 50% 50% 42% 58% / 54% 40% 60% 46%;
  background: var(--sand);
  content: "";
}

.intro-mark img {
  position: absolute;
  inset: 8% 0 0 12%;
  width: 82%;
  height: 86%;
  border-radius: 45% 55% 48% 52% / 48% 44% 56% 52%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.fact-row {
  display: grid;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fact strong {
  display: block;
  color: var(--red);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.fact span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.section-head {
  display: flex;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-head > * {
  margin-bottom: 0;
}

.section-head .lead {
  max-width: 31rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 19rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: var(--red);
  content: "";
}

.feature-card__number {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 3rem;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--ink-soft);
}

.feature-card a {
  color: var(--red);
  font-weight: 800;
}

.welcome-strip {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest-deep);
  grid-template-columns: 1.1fr 0.9fr;
  box-shadow: var(--shadow-lg);
}

.welcome-strip__copy {
  padding: clamp(2rem, 6vw, 4.5rem);
}

.welcome-strip__copy h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.welcome-strip__image {
  min-height: 30rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(14rem, 1fr));
  gap: 0.8rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--forest);
}

.gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 0.5rem;
  color: var(--white);
  background: rgba(13, 45, 39, 0.84);
  font-size: 0.84rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.cta-band {
  padding-block: clamp(3rem, 7vw, 5rem);
  color: var(--white);
  background: var(--red-deep);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
  color: var(--white);
  background: var(--forest-deep);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -8rem;
  right: -6rem;
  width: 34rem;
  height: 34rem;
  border: 6rem solid rgba(213, 165, 70, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero__grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
  gap: 3rem;
}

.page-hero h1 {
  max-width: 48rem;
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 44rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.page-hero__aside {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.page-hero__aside strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-soft);
}

.page-hero__aside p {
  font-size: 0.95rem !important;
}

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

.detail-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-card--accent {
  color: var(--white);
  background: var(--forest);
}

.detail-card--accent p {
  color: rgba(255, 255, 255, 0.75);
}

.detail-card__label {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-card--accent .detail-card__label {
  color: var(--gold-soft);
}

.schedule {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.schedule__row {
  display: grid;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.schedule__row:last-child {
  border-bottom: 0;
}

.schedule__row strong,
.schedule__row span {
  display: block;
}

.schedule__row span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.schedule__row time {
  color: var(--red);
  font-weight: 850;
  white-space: nowrap;
}

.step-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  display: grid;
  margin-bottom: 1.2rem;
  align-items: start;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.8rem;
  counter-increment: steps;
}

.step-list li::before {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-weight: 850;
  content: counter(steps);
}

.photo-frame {
  position: relative;
}

.photo-frame::before {
  position: absolute;
  z-index: 0;
  right: -0.75rem;
  bottom: -0.75rem;
  width: 45%;
  height: 45%;
  border-radius: 0 0 var(--radius-lg) 0;
  background: var(--gold);
  content: "";
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 38rem;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.expect-list,
.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.expect-list li,
.check-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.8rem;
}

.expect-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(213, 165, 70, 0.17);
  content: "";
}

.prose {
  max-width: 49rem;
}

.prose h2 {
  margin-top: 3.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.prose h3 {
  margin-top: 2rem;
}

.prose a {
  color: var(--red);
  font-weight: 750;
}

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

.belief-item {
  padding: clamp(1.4rem, 4vw, 2rem);
  border-left: 0.3rem solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.belief-item h2,
.belief-item h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.belief-item p:last-child {
  margin-bottom: 0;
}

.statement-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(15rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(2.25rem, 7vw, 6.5rem);
}

.statement-intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.belief-accordion {
  display: grid;
  gap: 0.85rem;
}

.belief-detail {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.belief-detail summary {
  display: grid;
  padding: 1.15rem 3.25rem 1.15rem 1.2rem;
  align-items: center;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.85rem;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  position: relative;
}

.belief-detail summary::-webkit-details-marker {
  display: none;
}

.belief-detail summary::after {
  position: absolute;
  right: 1.2rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  color: var(--forest);
  background: var(--gold-soft);
  content: "+";
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 850;
}

.belief-detail[open] summary::after {
  content: "\2212";
}

.belief-detail summary span {
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.belief-detail > div {
  padding: 0 1.2rem 1.35rem 4.65rem;
  border-top: 1px solid var(--line);
}

.belief-detail > div p:first-child {
  margin-top: 1.2rem;
}

.belief-reference {
  margin-bottom: 0;
  color: var(--red-deep);
  font-size: 0.88rem;
  font-weight: 750;
}

.notice {
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(157, 52, 44, 0.25);
  border-left: 0.35rem solid var(--red);
  border-radius: var(--radius-sm);
  background: #fff7f4;
}

.notice strong {
  display: block;
  margin-bottom: 0.25rem;
}

.notice p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.contact-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-block {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
}

.contact-block span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-block a,
.contact-block strong {
  overflow-wrap: anywhere;
}

.contact-panel {
  position: relative;
  padding: clamp(1.65rem, 5vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
}

.contact-panel h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-panel > p:not(.eyebrow) {
  max-width: 40rem;
}

.contact-panel__actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.contact-panel__actions .button {
  width: 100%;
  padding-inline: 1rem;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.contact-panel__list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-panel__list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.contact-panel__list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.contact-panel__note {
  margin: 1.3rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 0.25rem solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
  background: var(--sand);
  font-size: 0.9rem;
}

.footer {
  padding-block: 4rem 2rem;
  color: rgba(255, 255, 255, 0.76);
  background: #071d19;
}

.footer__top {
  display: grid;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer .brand {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__intro {
  max-width: 28rem;
}

.footer h2 {
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer nav,
.footer address {
  display: grid;
  gap: 0.5rem;
  font-style: normal;
}

.footer a {
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.footer a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  padding-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer__bottom p {
  margin: 0;
}

.error-page {
  display: grid;
  min-height: 70vh;
  padding-block: 5rem;
  place-items: center;
  text-align: center;
}

.error-page__code {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 700;
  line-height: 0.8;
}

.error-page h1 {
  margin-top: 2rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 64rem) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 35rem;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__aside {
    max-width: 34rem;
  }
}

@media (max-width: 52rem) {
  :root {
    --header-height: 4.5rem;
  }

  .navbar {
    flex-wrap: wrap;
    padding-block: 0.75rem;
  }

  .nav-menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .js .navbar {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .js .nav-toggle {
    display: block;
  }

  .js .nav-menu {
    position: absolute;
    z-index: 90;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: grid;
    height: calc(100dvh - var(--header-height));
    padding: 2rem 1.5rem 6rem;
    overflow-y: auto;
    align-content: start;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js .nav-menu[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .js .nav-menu > a:not(.button) {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-serif);
    font-size: 1.5rem;
  }

  .js .nav-menu > a:not(.button)::after {
    display: none;
  }

  .js .nav-menu .button {
    margin-top: 0.75rem;
  }

  .intro-grid,
  .split,
  .welcome-strip,
  .contact-layout,
  .statement-layout {
    grid-template-columns: 1fr;
  }

  .statement-intro {
    position: static;
  }

  .welcome-strip__image {
    min-height: 22rem;
  }

  .section-head,
  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 38rem) {
  .container {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .photo-frame::before {
    right: -0.5rem;
  }

  .announcement {
    font-size: 0.76rem;
  }

  .brand span {
    max-width: 11rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-block: 4rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(9, 31, 27, 0.95), rgba(9, 31, 27, 0.7)),
      linear-gradient(0deg, rgba(9, 31, 27, 0.5), transparent);
  }

  .service-card__row {
    align-items: flex-start;
  }

  .fact-row,
  .card-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__top > :first-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 16rem);
  }

  .gallery-grid figure:first-child {
    grid-row: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .belief-detail summary {
    padding-right: 3rem;
    grid-template-columns: 2.1rem 1fr;
  }

  .belief-detail > div {
    padding-left: 1.2rem;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .announcement,
  .site-header,
  .footer,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero,
  .section--forest {
    color: #000;
    background: #fff;
  }
}
