/* Dung Beetle Bush School — cPanel static rebuild */

:root {
  --background: #f7f3eb;
  --foreground: #1a241c;
  --card: #ffffff;
  --primary: #2f4a37;
  --primary-foreground: #f7f3eb;
  --secondary: #e7ece3;
  --muted: #eef1ea;
  --muted-foreground: #5b6b5e;
  --accent: #d4a054;
  --accent-foreground: #1a241c;
  --border: #d5dbcf;
  --forest: #2f4a37;
  --forest-deep: #1c3224;
  --gold: #d4a054;
  --gold-soft: #c49a5c;
  --cream: #f7f3eb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 36, 28, 0.12);
  --radius: 2px;
  --container: 1120px;
  --header-h: 84px;
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-sans: "Nunito Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(26, 36, 28, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--foreground);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted-foreground);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--foreground);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--foreground);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 32, 24, 0.28) 0%, rgba(20, 32, 24, 0.55) 45%, rgba(14, 24, 18, 0.88) 100%),
    linear-gradient(90deg, rgba(14, 24, 18, 0.45) 0%, transparent 55%);
}

.hero-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(20, 40, 28, 0.45) 0%, rgba(18, 34, 24, 0.72) 100%);
}

.hero-inner {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
  max-width: 42rem;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
  animation: fade-up 0.9s var(--ease) both;
}

.hero-page .hero-inner {
  padding: 5.5rem 0 4.5rem;
  max-width: 46rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  margin-top: 0.65rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #d8e4d4;
  margin-bottom: 1.1rem;
  line-height: 1.45;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--accent-foreground);
}

.btn-primary:hover {
  background: #c89242;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--primary-foreground);
}

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

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-muted {
  background: var(--secondary);
}

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

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

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.section-label.dark {
  color: var(--muted-foreground);
}

.rule {
  width: 2.75rem;
  height: 1px;
  background: var(--gold);
  margin: 0.85rem auto 1.35rem;
}

.section h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  margin-bottom: 0.9rem;
}

.lede {
  color: var(--muted-foreground);
  font-size: 1.05rem;
}

.situation {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.situation p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.55;
  color: var(--foreground);
}

/* Discipline cards */
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.discipline-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  color: inherit;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.discipline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(26, 36, 28, 0.16);
}

.discipline-card .card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.discipline-card:hover .card-media img {
  transform: scale(1.05);
}

.discipline-card .card-body {
  padding: 1.4rem 1.4rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
}

.discipline-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.discipline-card p {
  color: var(--muted-foreground);
  flex: 1;
}

.card-link {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Founder / split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media {
  overflow: hidden;
  min-height: 420px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split-copy .section-label {
  margin-bottom: 0.75rem;
}

.split-copy p {
  color: var(--muted-foreground);
}

/* Quote band */
.quote-band {
  text-align: center;
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at top, rgba(212, 160, 84, 0.12), transparent 45%),
    var(--cream);
}

.quote-band img {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  opacity: 0.9;
}

.quote-band blockquote {
  margin: 0 auto 1rem;
  max-width: 40rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  color: var(--foreground);
}

.quote-band cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* About page extras */
.contact-aside {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-aside .meta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.15rem;
}

.contact-aside a {
  color: var(--primary);
  font-weight: 600;
}

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

.feature-card {
  background: var(--card);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.feature-card p {
  color: var(--muted-foreground);
  margin: 0;
}

.pull-quote {
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--foreground);
}

/* Service pages */
.content-block {
  max-width: 46rem;
}

.content-block p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.list-panel {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.list-panel h3,
.list-panel .panel-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--foreground);
}

.bullet-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.module-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.module-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.module-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.module-card p {
  color: var(--muted-foreground);
  margin: 0;
}

.figure {
  margin: 2.5rem 0 0;
}

.figure img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.figure figcaption {
  margin-top: 0.75rem;
  font-style: italic;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.media-pair img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

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

.gallery-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.field-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.field-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.field-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(10, 18, 12, 0.85));
  color: #fff;
  font-size: 0.9rem;
  font-style: italic;
}

.field-gallery .span-2 {
  grid-column: span 2;
}

.field-gallery .span-2 img {
  height: 340px;
}

.cta-panel {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 2.5rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.cta-panel h3 {
  color: inherit;
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
}

.cta-panel p {
  color: rgba(247, 243, 235, 0.85);
  margin: 0;
}

.cta-panel .btn-primary {
  justify-self: start;
}

.note-card {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--card);
  margin: 2rem 0;
}

.note-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.note-card cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.pillar .module-num {
  font-size: 1.25rem;
}

.pillar h4 {
  font-size: 1.05rem;
}

.hallmarks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.contact-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.contact-meta {
  display: grid;
  gap: 1.1rem;
}

.contact-meta .meta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.2rem;
}

.contact-meta a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 1.8rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fcfbf8;
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 74, 55, 0.12);
}

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

.form-card .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.form-card .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-status.is-success {
  background: #e7f0e5;
  color: #234228;
}

.form-status.is-error {
  background: #f7e7e4;
  color: #7a2e24;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Footer */
.site-footer {
  background: #121c15;
  color: rgba(247, 243, 235, 0.85);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 243, 235, 0.12);
}

.footer-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.55);
  margin-bottom: 1rem;
}

.footer-quote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  max-width: 22rem;
  color: rgba(247, 243, 235, 0.75);
}

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact .meta-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.45);
  margin-bottom: 0.1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(247, 243, 235, 0.45);
}

.footer-bottom p {
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 200;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

body.lightbox-open,
body.nav-open {
  overflow: hidden;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

[data-reveal="delay-1"] {
  transition-delay: 0.1s;
}

[data-reveal="delay-2"] {
  transition-delay: 0.2s;
}

[data-reveal="delay-3"] {
  transition-delay: 0.3s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .discipline-grid,
  .feature-grid,
  .module-grid,
  .hallmarks,
  .pillars,
  .contact-layout,
  .two-col,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .split-media,
  .split-media img {
    min-height: 320px;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(247, 243, 235, 0.98);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .site-nav a {
    font-size: 1.2rem;
  }

  .form-row,
  .media-pair,
  .field-gallery,
  .pillars,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .field-gallery .span-2 {
    grid-column: auto;
  }

  .field-gallery .span-2 img,
  .field-gallery img,
  .media-pair img {
    height: 220px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cta-panel {
    padding: 1.75rem;
  }

  .hero-inner {
    padding: 3.5rem 0 3.25rem;
  }
}
