:root {
  color-scheme: light;
  --paper: #f7f0e4;
  --paper-strong: #fffaf1;
  --card: rgba(255, 251, 243, 0.85);
  --ink: #1d2e29;
  --ink-soft: #43534f;
  --muted: #6e786f;
  --forest: #143129;
  --forest-deep: #0c211c;
  --accent: #9f4d36;
  --accent-deep: #7f3421;
  --gold: #c9a45f;
  --line: rgba(29, 46, 41, 0.12);
  --shadow: 0 30px 80px rgba(22, 32, 28, 0.14);
  --shadow-soft: 0 18px 40px rgba(22, 32, 28, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-display: "Cormorant Garamond", "Baskerville", "Palatino Linotype", serif;
  --font-body: "Alegreya Sans", "Gill Sans", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 164, 95, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(159, 77, 54, 0.12), transparent 26%),
    linear-gradient(180deg, #f8f1e7 0%, #efe2cf 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--accent-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 164, 95, 0.75);
  outline-offset: 3px;
}

a,
button,
.button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(20, 49, 41, 0.1);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 200;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper-strong);
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
}

.site-frame {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0 0;
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(20, 49, 41, 0.1);
  border-radius: 20px;
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(22, 32, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: 3.6rem;
  height: 3.6rem;
  padding: 0.28rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 230, 203, 0.9));
  border: 1px solid rgba(20, 49, 41, 0.12);
  box-shadow: 0 10px 24px rgba(20, 49, 41, 0.12);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand__eyebrow,
.section-kicker,
.feature-card__kicker,
.summary-card__kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(20, 49, 41, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__label {
  font-size: 0.95rem;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
  content: "";
}

.nav-toggle__lines::before {
  transform: translateY(-5px);
}

.nav-toggle__lines::after {
  transform: translateY(3px);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
  transform: rotate(90deg);
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  background: rgba(20, 49, 41, 0.08);
  color: var(--forest);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.95rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(180deg, #af593e 0%, #8b412b 100%);
  color: var(--paper-strong);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(137, 61, 37, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  color: var(--paper-strong);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(137, 61, 37, 0.24);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
  border-color: rgba(20, 49, 41, 0.16);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--forest);
}

.button--light {
  background: rgba(255, 250, 241, 0.18);
  color: var(--paper-strong);
  border-color: rgba(255, 250, 241, 0.28);
  box-shadow: none;
}

.button--small {
  min-height: 2.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.93rem;
}

.site-main {
  padding-bottom: 5rem;
}

.page-hero {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.4rem) 0 0.9rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.56), rgba(255, 250, 241, 0)),
    radial-gradient(circle at top left, rgba(20, 49, 41, 0.06), transparent 28%);
}

.page-hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(120deg, rgba(247, 240, 228, 0.92) 0%, rgba(247, 240, 228, 0.7) 44%, rgba(247, 240, 228, 0.92) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.45));
  opacity: 0.4;
}

.page-hero__copy,
.content-card,
.feature-card,
.simple-card,
.summary-card {
  animation: none;
}

.page-hero__copy {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 49, 41, 0.1);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 16px 40px rgba(22, 32, 28, 0.08);
}

.page-hero__copy {
  max-width: 48rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.page-hero__copy::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 164, 95, 0.22) 0%, transparent 70%);
  opacity: 1;
  pointer-events: none;
}

.page-hero__title {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  max-width: 10ch;
  color: var(--forest-deep);
  text-wrap: balance;
}

.page-hero__lede {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.06rem;
  color: var(--ink-soft);
  overflow-wrap: break-word;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.section-block,
.simple-grid,
.content-shell {
  margin-top: 1.25rem;
}

.section-block--story {
  margin-top: 1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.section-heading h2,
.footer-title,
.sidebar-title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.95;
  color: var(--forest-deep);
  text-wrap: balance;
}

.section-copy,
.footer-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  overflow-wrap: break-word;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 14rem;
  padding: 1.3rem;
  border: 1px solid rgba(20, 49, 41, 0.08);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 10px 22px rgba(22, 32, 28, 0.06);
}

.feature-card:hover {
  box-shadow: 0 14px 28px rgba(22, 32, 28, 0.08);
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.96;
}

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

.feature-card__link,
.summary-card__link {
  margin-top: auto;
  width: fit-content;
  font-weight: 800;
  color: var(--forest);
  text-decoration: none;
}

.feature-card__link:hover,
.summary-card__link:hover {
  color: var(--accent-deep);
}

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

.simple-card {
  padding: 1.35rem;
  border: 1px solid rgba(20, 49, 41, 0.08);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 10px 22px rgba(22, 32, 28, 0.06);
}

.simple-card--accent {
  background: rgba(20, 49, 41, 0.95);
  color: rgba(255, 250, 241, 0.92);
}

.simple-card--accent .section-kicker,
.simple-card--accent h2,
.simple-card--accent p,
.simple-card--accent .feature-card__link {
  color: inherit;
}

.simple-card h2 {
  margin: 0.35rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.content-shell {
  display: block;
  margin-top: 1rem;
}

.content-card {
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(20, 49, 41, 0.08);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 14px 30px rgba(22, 32, 28, 0.07);
}

.content-card--story {
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
}

.home-welcome {
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(20, 49, 41, 0.08);
  text-align: center;
}

.home-welcome__title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  color: var(--forest-deep);
  text-wrap: balance;
}

.home-welcome__lede {
  max-width: 52rem;
  margin: 0.9rem 0 0;
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-left: auto;
  margin-right: auto;
}

.page-prose {
  font-size: 1.1rem;
  color: var(--ink-soft);
  overflow-wrap: break-word;
}

.page-prose--home > p:first-child {
  font-size: 1.2rem;
  color: var(--ink);
}

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

.page-prose > * + * {
  margin-top: 1.15rem;
}

.page-prose h2,
.page-prose h3,
.page-prose h4 {
  margin-top: 2.3rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  line-height: 0.98;
  color: var(--forest-deep);
  scroll-margin-top: 7rem;
  text-wrap: balance;
}

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

.page-prose h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.page-prose h4 {
  font-size: 1.5rem;
}

.page-prose p,
.page-prose li {
  max-width: none;
}

.page-prose strong {
  color: var(--ink);
}

.page-prose hr {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(20, 49, 41, 0.2), transparent);
  margin: 2rem 0;
}

.page-prose ul,
.page-prose ol {
  padding-left: 1.3rem;
}

.page-prose li + li {
  margin-top: 0.45rem;
}

.page-prose blockquote {
  margin: 2rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.46);
}

.page-prose figure {
  margin: 2rem 0;
  width: min(100%, 36rem);
  margin-left: auto;
  margin-right: auto;
  padding: 0.95rem;
  border: 1px solid rgba(20, 49, 41, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.home-badge {
  display: flex;
  justify-content: center;
  margin: 1.6rem 0;
}

.home-badge img {
  width: clamp(10rem, 22vw, 15rem);
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(20, 49, 41, 0.12));
}

.home-photos {
  margin-top: 2.2rem;
}

.home-photos__label {
  margin-bottom: 0.85rem;
}

.home-photo-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(20, 49, 41, 0.08);
  box-shadow: 0 12px 26px rgba(22, 32, 28, 0.08);
}

.home-photo-collections {
  display: grid;
  gap: 0.85rem;
}

.home-photo-collection {
  border: 1px solid rgba(20, 49, 41, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 10px 22px rgba(22, 32, 28, 0.05);
  overflow: hidden;
}

.home-photo-collection__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
}

.home-photo-collection__summary::-webkit-details-marker {
  display: none;
}

.home-photo-collection__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--forest-deep);
}

.home-photo-collection__meta {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.home-photo-collection__copy {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--ink-soft);
}

.home-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0 1.1rem 1.1rem;
}

.home-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-photo-card:hover img {
  transform: scale(1.03);
}

.page-prose figure img {
  width: 100%;
  height: auto;
  border-radius: 48% 48% 14px 14px / 16% 16% 14px 14px;
}

.page-prose figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-prose iframe {
  display: block;
  width: 100%;
  min-height: 24rem;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.find-us-map {
  margin-top: 1.1rem;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(20, 49, 41, 0.08);
  box-shadow: var(--shadow-soft);
}

.find-us-map iframe {
  min-height: 28rem;
  border-radius: 0;
  box-shadow: none;
}

.page-prose form {
  max-width: 100%;
}

.signup-card {
  margin: 0;
  padding: 1.35rem;
  border: 1px solid rgba(20, 49, 41, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

#mc-embedded-subscribe-form {
  margin: 0;
}

#mc-embedded-subscribe-form h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.95;
  color: var(--forest-deep);
}

.indicates-required,
#mce-responses {
  color: var(--muted);
}

.mc-field-group {
  margin-top: 1rem;
}

.mc-field-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 800;
  color: var(--ink);
}

input[type="email"],
input[type="text"],
input[type="search"],
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(20, 49, 41, 0.14);
  border-radius: 16px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

input[type="submit"],
button {
  font: inherit;
}

#mc-embedded-subscribe {
  margin-top: 1.1rem;
}

.two-column-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.column {
  padding: 1.25rem;
  border: 1px solid rgba(20, 49, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-soft);
}

.column strong {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.04;
  color: var(--forest-deep);
}

.column strong:first-child {
  margin-top: 0;
}

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

.gallery-item {
  position: relative;
  grid-column: span 1;
  min-height: 13rem;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(20, 49, 41, 0.08);
  box-shadow: var(--shadow-soft);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(12, 33, 28, 0.34));
  pointer-events: none;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  min-height: 18rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(20, 49, 41, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.82);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

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

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.summary-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
  border: 1px solid rgba(20, 49, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: var(--shadow-soft);
}

.summary-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.96;
}

.summary-card h2 a,
.summary-card__image {
  color: inherit;
  text-decoration: none;
}

.summary-card--with-image {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: stretch;
}

.summary-card__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 46% 46% 16px 16px / 14% 14% 16px 16px;
}

.summary-card__body {
  display: grid;
  gap: 0.8rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer__panel {
  padding: 2rem;
  border: 1px solid rgba(20, 49, 41, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(240, 233, 219, 0.98) 0%, rgba(247, 240, 228, 0.98) 100%);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(22, 32, 28, 0.08);
}

.site-footer__simple {
  display: grid;
  gap: 0.55rem;
}

.site-footer__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 0.98;
  color: var(--forest-deep);
}

.site-footer__meta {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(20, 49, 41, 0.1);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.56);
}

.site-footer__links a:hover {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.88);
}

.site-footer__bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 49, 41, 0.1);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  .content-shell {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(20, 49, 41, 0.08);
  }

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

  .site-nav__list {
    flex-direction: column;
    justify-content: flex-start;
  }

  .site-nav a {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-frame {
    width: min(1180px, calc(100% - 1rem));
  }

  .site-header {
    padding-top: 0.6rem;
  }

  .site-header__bar,
  .page-hero__copy,
  .content-card,
  .simple-card,
  .site-footer__panel {
    border-radius: 24px;
  }

  .brand__mark {
    width: 3rem;
    height: 3rem;
  }

  .brand__title {
    font-size: 1.45rem;
  }

  .page-hero__title {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .feature-grid,
  .summary-grid,
  .two-column-container,
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .home-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) {
    grid-column: span 1;
    min-height: 10rem;
  }

  .summary-card--with-image {
    grid-template-columns: 1fr;
  }

  .home-photo-card img {
    min-height: 10rem;
  }

  .home-photo-collection__summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
