:root {
  --forest-deep: #0f4728;
  --forest: #1f6b3a;
  --moss: #7aca46;
  --moss-soft: #d9efc3;
  --bark: #7d4c1b;
  --bark-deep: #352021;
  --cream: #f7f1e7;
  --paper: rgba(255, 251, 245, 0.78);
  --paper-strong: rgba(255, 249, 240, 0.92);
  --line: rgba(34, 53, 36, 0.12);
  --shadow: 0 28px 80px rgba(34, 40, 28, 0.14);
  --shadow-soft: 0 18px 40px rgba(34, 40, 28, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: #183122;
  background:
    radial-gradient(circle at top left, rgba(122, 202, 70, 0.18), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(125, 76, 27, 0.12), transparent 28%),
    linear-gradient(180deg, #f5efe2 0%, #f7f3eb 44%, #fbf8f2 100%);
}

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

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

button,
.button {
  font: inherit;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 40px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0 28px;
  padding: 14px 18px;
  border: 1px solid rgba(28, 53, 32, 0.1);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(217, 239, 195, 0.65));
  padding: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-text strong,
.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-text span,
.footer-brand span {
  color: rgba(24, 49, 34, 0.74);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.site-nav-main,
.site-nav-actions {
  display: flex;
  align-items: center;
}

.site-nav-main {
  gap: 18px;
}

.site-nav-actions {
  gap: 10px;
}

.site-nav a,
.nav-dropdown summary {
  position: relative;
  font-size: 0.95rem;
  color: rgba(24, 49, 34, 0.86);
}

.site-nav a:not(.button)::after,
.nav-dropdown summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--forest), var(--moss));
  transition: transform 180ms ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: -2px;
  border-right: 2px solid rgba(24, 49, 34, 0.62);
  border-bottom: 2px solid rgba(24, 49, 34, 0.62);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown[open] summary::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 249, 241, 0.98);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 14px;
  color: rgba(24, 49, 34, 0.88);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(31, 107, 58, 0.08);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 71, 40, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--forest-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: #f9fff5;
  box-shadow: 0 18px 36px rgba(15, 71, 40, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15, 71, 40, 0.24);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.button-secondary {
  background: rgba(255, 251, 245, 0.86);
  color: var(--forest-deep);
  border: 1px solid rgba(24, 49, 34, 0.12);
  box-shadow: none;
}

.button-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest-deep);
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

.hero-section,
.content-section,
.signal-strip {
  margin-bottom: 26px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.gallery-hero,
.story-panel,
.quote-panel,
.feature-card,
.home-card,
.process-card,
.signal-strip,
.preview-tile,
.masonry-card,
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(28px, 5vw, 56px);
}

.hero-copy::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -140px -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 202, 70, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.accent-card h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.98;
  color: #14291d;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 3.8rem);
  max-width: 11ch;
}

.hero-lead,
.section-heading p,
.story-panel p,
.feature-card p,
.home-card p,
.process-card p,
.accent-card p,
.cta-panel p {
  line-height: 1.72;
  color: rgba(24, 49, 34, 0.82);
}

.hero-lead {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.stat-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.stat-card strong,
.process-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bark-deep);
}

.stat-card span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(24, 49, 34, 0.8);
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.hero-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-large {
  min-height: 580px;
  grid-row: span 2;
}

.hero-card-badge,
.accent-card {
  padding: 24px;
  border: 1px solid rgba(24, 49, 34, 0.08);
}

.hero-card-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(122, 202, 70, 0.18), transparent 40%),
    rgba(255, 250, 244, 0.92);
}

.hero-card-badge .badge-logo {
  width: auto;
  height: auto;
  flex: 0 0;
  object-fit: contain;
}

.hero-card-badge p,
.accent-card p {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.hero-card-badge span {
  display: block;
  line-height: 1.6;
  color: rgba(24, 49, 34, 0.76);
}

.hero-card-small {
  min-height: 260px;
}

.hero-card-small img {
  object-position: center 25%;
}

.accent-card {
  background: linear-gradient(160deg, rgba(244, 239, 230, 0.96), rgba(217, 239, 195, 0.66));
}

.signal-strip {
  padding: 24px 28px;
  background:
    linear-gradient(90deg, rgba(15, 71, 40, 0.96), rgba(31, 107, 58, 0.94)),
    var(--forest-deep);
  color: #eff8ea;
}

.signal-strip p {
  margin: 0;
  max-width: 74ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-section {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 36px;
  background: rgba(255, 252, 247, 0.68);
  border: 1px solid rgba(24, 49, 34, 0.08);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 20px;
}

.story-panel,
.quote-panel {
  padding: 28px;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(140deg, rgba(122, 202, 70, 0.16), rgba(255, 255, 255, 0.8)),
    var(--paper);
}

.quote-panel p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.quote-panel span {
  margin-top: 20px;
  line-height: 1.6;
  color: rgba(24, 49, 34, 0.78);
}

.feature-grid,
.home-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.process-card {
  padding: 24px;
}

.feature-card h3,
.home-card h3,
.process-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.42rem;
}

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

.home-card {
  min-height: 100%;
  padding: 0;
}

.home-card::before {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.3;
}

.aspen::before {
  background: radial-gradient(circle, rgba(122, 202, 70, 0.5), transparent 65%);
}

.willow::before {
  background: radial-gradient(circle, rgba(31, 107, 58, 0.4), transparent 65%);
}

.hagerwood::before {
  background: radial-gradient(circle, rgba(125, 76, 27, 0.42), transparent 65%);
}

.spruce::before {
  background: radial-gradient(circle, rgba(15, 71, 40, 0.42), transparent 65%);
}

.home-tag {
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(24, 49, 34, 0.07);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.house-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.house-copy,
.house-placeholder {
  position: relative;
  z-index: 1;
  padding: 20px 22px 24px;
}

.house-copy h3,
.house-placeholder h3 {
  margin: 12px 0 0;
}

.spruce-placeholder {
  display: flex;
}

.house-placeholder {
  display: flex;
  flex: 1 1 auto;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(122, 202, 70, 0.22), transparent 32%),
    linear-gradient(160deg, rgba(244, 239, 230, 0.98), rgba(217, 239, 195, 0.76));
}

.house-placeholder p {
  margin: 10px 0 0;
  line-height: 1.6;
  color: rgba(24, 49, 34, 0.78);
}

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

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

.staff-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.staff-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.staff-copy {
  padding: 16px 18px 20px;
}

.staff-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.preview-tile {
  min-height: 300px;
}

.preview-tile.wide {
  min-height: 380px;
}

.preview-tile img,
.masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-tile img {
  min-height: inherit;
}

.centered-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: start;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.rules-intro-grid,
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-note,
.contact-form,
.portal-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.contact-note {
  padding: 22px;
}

.contact-note h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.contact-note p {
  margin: 0;
  line-height: 1.7;
  color: rgba(24, 49, 34, 0.8);
}

.checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(24, 49, 34, 0.82);
}

.checklist li + li {
  margin-top: 10px;
}

.contact-note a,
.hero-lead a,
.hero-card-badge a,
.feature-card a,
.section-heading a,
.rule-card a {
  color: var(--forest-deep);
  font-weight: 700;
}

.inline-contact {
  word-break: break-word;
}

.rules-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rule-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.rule-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.1;
  color: #14291d;
}

.rule-card p {
  margin: 0;
  line-height: 1.72;
  color: rgba(24, 49, 34, 0.82);
}

.contact-form {
  position: relative;
  padding: 24px;
}

.portal-card {
  padding: 24px;
}

.portal-card h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  line-height: 1;
  color: #14291d;
}

.portal-card p {
  line-height: 1.72;
  color: rgba(24, 49, 34, 0.82);
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(24, 49, 34, 0.86);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(24, 49, 34, 0.14);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.92);
  padding: 14px 16px;
  font: inherit;
  color: #183122;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(31, 107, 58, 0.55);
  box-shadow: 0 0 0 4px rgba(122, 202, 70, 0.18);
  background: white;
}

.field-full {
  grid-column: 1 / -1;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.form-help,
.form-status {
  margin: 0;
  line-height: 1.6;
  color: rgba(24, 49, 34, 0.76);
}

.form-status {
  margin-top: 14px;
  min-height: 1.6em;
}

.form-status.is-error {
  color: #8f2d1c;
}

.form-status.is-success {
  color: var(--forest);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(15, 71, 40, 0.98), rgba(125, 76, 27, 0.92)),
    var(--forest-deep);
  color: #f8fff5;
}

.cta-panel p,
.cta-panel h2 {
  color: inherit;
}

.cta-inline-contact {
  margin-top: 12px;
  color: rgba(248, 255, 245, 0.9);
}

.cta-inline-contact a {
  color: #f8fff5;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cta-panel .eyebrow {
  color: rgba(248, 255, 245, 0.76);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 8px 0;
  color: rgba(24, 49, 34, 0.72);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.gallery-hero {
  margin-bottom: 26px;
  padding: clamp(30px, 5vw, 52px);
}

.masonry-grid {
  columns: 3 280px;
  column-gap: 18px;
}

.masonry-card {
  break-inside: avoid;
  margin-bottom: 18px;
  overflow: hidden;
}

.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(10, 18, 13, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-figure {
  width: min(980px, 100%);
  margin: 0;
}

.lightbox-image {
  width: 100%;
  max-height: 76vh;
  border-radius: 28px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.lightbox-caption:empty {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 1120px) {
  .hero-section,
  .story-layout,
  .staff-grid,
  .contact-layout,
  .portal-grid,
  .rules-intro-grid,
  .rules-grid,
  .gallery-preview-grid,
  .feature-grid,
  .home-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

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

  .preview-tile.wide {
    grid-column: span 2;
  }
}

@media (max-width: 840px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 249, 241, 0.96);
    box-shadow: var(--shadow-soft);
  }

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

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand {
    max-width: calc(100% - 64px);
  }

  .site-nav-main,
  .site-nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav-actions .button {
    width: 100%;
  }

  .nav-dropdown summary {
    padding: 6px 0;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 8px;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.66);
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual,
  .feature-grid,
  .home-grid,
  .process-grid,
  .story-layout,
  .staff-grid,
  .contact-layout,
  .portal-grid,
  .rules-intro-grid,
  .rules-grid,
  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

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

  .hero-card-large {
    min-height: 360px;
  }

  .preview-tile,
  .preview-tile.wide {
    min-height: 240px;
  }

  .cta-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .masonry-grid {
    columns: 1;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
