:root {
  color-scheme: only light;
  --paper: #f6efe4;
  --paper-warm: #fff9ee;
  --linen: #eadfce;
  --butter: #f1c86d;
  --butter-deep: #a96818;
  --leaf: #47664e;
  --leaf-deep: #1d3428;
  --brick: #9b4f3d;
  --clay: #704332;
  --ink: #241913;
  --muted: #5d5148;
  --line: rgba(36, 25, 19, 0.14);
  --shadow-soft: 0 18px 45px rgba(36, 25, 19, 0.12);
  --shadow-strong: 0 30px 80px rgba(36, 25, 19, 0.24);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 13px;
  --content-width: min(1180px, calc(100vw - 32px));
  font-family: "Source Sans 3", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 145px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(241, 200, 109, 0.28), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(71, 102, 78, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf6ed 0%, #eadfce 48%, #f6efe4 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 245, 236, 0.96);
  border-bottom: 1px solid rgba(112, 67, 50, 0.14);
  box-shadow: 0 14px 34px rgba(36, 25, 19, 0.11);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--butter), var(--brick), var(--leaf));
}

.header-inner {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(190px, 19vw, 278px);
  height: auto;
  mix-blend-mode: multiply;
  filter: saturate(0.98) contrast(1.04) brightness(1.02);
}

.site-nav {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(5px, 0.8vw, 12px);
  min-width: 0;
  padding: 13px 16px 17px;
  border: 1px solid rgba(183, 122, 40, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.84), rgba(238, 222, 192, 0.55)),
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.7), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 16px 34px rgba(112, 67, 50, 0.1);
}

.site-nav a {
  display: grid;
  place-items: center;
  width: clamp(86px, 8vw, 124px);
  border-radius: 999px;
  transition: transform 170ms ease, filter 170ms ease;
}

.nav-butter {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.03) drop-shadow(0 7px 8px rgba(112, 67, 50, 0.14));
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--leaf-deep);
  color: var(--paper-warm);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 46px;
  color: var(--paper-warm);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(19, 25, 18, 0.96) 0%, rgba(29, 52, 40, 0.92) 48%, rgba(29, 52, 40, 0.56) 100%),
    url("assets/creamery-flickr-1.jpg") center / cover;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.47fr);
  gap: 30px 44px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 249, 238, 0.2);
  border-left: 7px solid var(--butter);
  border-radius: 0 26px 26px 0;
  background: rgba(11, 10, 8, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.eyebrow,
.mini-label,
.plan-status,
.history-label,
.contact-card span,
.event-list span {
  display: block;
  margin: 0 0 10px;
  color: var(--brick);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: rgba(255, 222, 132, 0.96);
}

.hero h1,
.intro-card--feature h2,
.section-heading h2,
.section-copy h2,
.social-band h2,
.forms-intro h2,
.visit-copy h2,
.plan-card h3,
.event-list h3,
.form-card h3 {
  font-family: "Cormorant Garamond", serif;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  color: #fffdf6;
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 44ch;
  margin: 20px 0 0;
  color: #fff8ea;
  font-size: clamp(1.24rem, 1.7vw, 1.55rem);
  line-height: 1.28;
  font-weight: 800;
}

.hero-body {
  max-width: 60ch;
  margin: 14px 0 0;
  color: rgba(255, 249, 238, 0.9);
  line-height: 1.7;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

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

.button--primary {
  background: var(--butter);
  color: #2b170d;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.button--secondary {
  color: var(--paper-warm);
  border-color: rgba(255, 249, 238, 0.45);
  background: rgba(255, 249, 238, 0.1);
}

.hero-image,
.event-image-card,
.history-image-card,
.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--paper-warm);
  box-shadow: var(--shadow-strong);
}

.hero-image {
  justify-self: end;
  width: min(100%, 360px);
  border: 8px solid rgba(255, 249, 238, 0.9);
  transform: rotate(2deg);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
}

.hero-image figcaption {
  padding: 13px 16px;
  color: var(--clay);
  font-weight: 900;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.hero-stats article,
.intro-card,
.plan-card,
.form-card,
.gallery-note,
.contact-card,
.event-list article,
.history-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 238, 0.92);
  box-shadow: var(--shadow-soft);
}

.hero-stats article {
  position: relative;
  overflow: hidden;
  padding: 21px 22px;
  background: rgba(255, 249, 238, 0.95);
  border-top: 5px solid var(--butter);
}

.hero-stats span {
  display: block;
  margin-bottom: 6px;
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.section {
  position: relative;
  padding: 90px 0;
}

.section--lift {
  padding-top: 36px;
  padding-bottom: 44px;
}

.section--soft {
  background:
    radial-gradient(circle at 15% 10%, rgba(241, 200, 109, 0.2), transparent 24%),
    linear-gradient(180deg, #efe3d0 0%, #f7f0e5 100%);
}

.section--accent {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(29, 52, 40, 0.98), rgba(71, 102, 78, 0.9)),
    url("assets/creamery-flickr-2.jpg") center / cover;
  color: var(--paper-warm);
}

.section--facebook-priority {
  padding: 82px 0;
}

.section--forms {
  background:
    linear-gradient(135deg, rgba(155, 79, 61, 0.12), transparent 36%),
    linear-gradient(180deg, #f6efe4 0%, #efe2cf 100%);
}

.section--gallery {
  padding-top: 62px;
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(36, 25, 19, 0.96), rgba(29, 52, 40, 0.94)),
    url("assets/creamery-flickr-2.jpg") center / cover;
  color: var(--paper-warm);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  gap: 18px;
  transform: translateY(-72px);
  margin-bottom: -72px;
}

.intro-card {
  padding: 26px;
}

.intro-card--feature {
  background: linear-gradient(135deg, #fffaf0, #f0dfbd);
  border-top: 6px solid var(--butter);
}

.intro-card--feature h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.intro-card p,
.section-heading p,
.section-copy p,
.social-band p,
.forms-intro p,
.form-card p,
.plan-card p,
.visit-copy p,
.gallery-note p,
.source-note {
  color: var(--muted);
  line-height: 1.72;
}

.intro-card p,
.gallery-note p {
  margin: 0;
}

.intro-card--feature p,
.section-heading p,
.section-copy p,
.social-band p,
.forms-intro p,
.form-card p,
.plan-card p,
.visit-copy p {
  margin: 16px 0 0;
}

.section-heading,
.forms-intro {
  max-width: 780px;
}

.section-heading h2,
.section-copy h2,
.social-band h2,
.forms-intro h2,
.visit-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

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

.plan-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  color: var(--paper-warm);
  background: var(--leaf-deep);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform 600ms ease;
}

.plan-card:nth-child(1)::before {
  background-image: url("assets/creamery-flickr-2.jpg");
}

.plan-card:nth-child(2)::before {
  background-image: url("assets/event-family.jpg");
}

.plan-card:nth-child(3)::before {
  background-image: url("assets/event-picnic.jpg");
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(30, 53, 41, 0.1), rgba(19, 25, 18, 0.88));
}

.plan-card--primary {
  grid-column: span 2;
  border-top: 7px solid var(--butter);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.plan-card:hover::before {
  transform: scale(1.06);
}

.plan-status {
  color: var(--butter);
}

.plan-card h3 {
  margin: 0;
  font-size: clamp(2.15rem, 3.5vw, 3rem);
  line-height: 0.96;
}

.plan-card p {
  color: rgba(255, 249, 238, 0.88);
  font-weight: 600;
}

.social-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 30px;
  align-items: center;
}

.social-band p {
  color: rgba(255, 249, 238, 0.82);
  max-width: 62ch;
}

.facebook-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 249, 238, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 238, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 170ms ease, background-color 170ms ease;
}

.facebook-card:hover,
.facebook-card:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 249, 238, 0.18);
  outline: none;
}

.facebook-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-size: 2.35rem;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.facebook-card strong {
  font-size: 1.55rem;
}

.facebook-card small {
  color: rgba(255, 249, 238, 0.74);
  line-height: 1.5;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  margin-top: 34px;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.event-image-card img,
.history-image-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.event-image-card img {
  min-height: 230px;
}

.event-image-card--wide {
  grid-column: span 2;
}

.event-image-card--wide img {
  min-height: 310px;
}

.lightbox-target {
  cursor: zoom-in;
}

.lightbox-target:hover img,
.lightbox-target:focus-visible img {
  transform: scale(1.045);
}

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

.event-list article {
  padding: 22px;
  border-left: 6px solid var(--butter);
  background: rgba(255, 249, 238, 0.96);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.event-list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.event-list h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.98;
}

.history-grid,
.forms-layout,
.gallery-grid,
.visit-grid {
  display: grid;
  gap: 28px;
}

.history-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
}

.history-block {
  padding: 24px;
  margin-top: 18px;
}

.history-block p {
  margin: 0;
}

.source-note {
  margin: 18px 0 0;
  font-size: 0.96rem;
}

.history-media {
  display: grid;
  gap: 16px;
}

.history-image-card img {
  aspect-ratio: 4 / 2.7;
}

.forms-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

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

.form-card {
  padding: 30px;
  background: rgba(255, 249, 238, 0.96);
}

.form-card--newsletter {
  border-top: 7px solid var(--butter);
  scroll-margin-top: 145px;
}

.form-card h3 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 0.98;
}

.site-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.site-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.site-form input,
.site-form textarea,
.site-form select {
  width: 100%;
  border: 1px solid rgba(36, 25, 19, 0.18);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
  outline: 0;
  border-color: rgba(65, 95, 73, 0.6);
  box-shadow: 0 0 0 4px rgba(65, 95, 73, 0.13);
}

.bot-field {
  display: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--leaf-deep);
  font-weight: 900;
  line-height: 1.45;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-note a {
  color: var(--leaf-deep);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

.substack-embed-shell {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(36, 25, 19, 0.14);
  border-radius: var(--radius-lg);
  background: #f6efe4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.substack-embed-shell iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  background: #f6efe4;
}

.gallery-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: stretch;
}

.gallery-side {
  display: grid;
  gap: 18px;
}

.gallery-card--wide img {
  min-height: 460px;
}

.gallery-side .gallery-card img {
  min-height: 250px;
}

.gallery-note {
  padding: 24px;
}

.visit-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.visit-copy p {
  color: rgba(255, 249, 238, 0.8);
}

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

.contact-card {
  min-height: 145px;
  display: block;
  padding: 24px;
  background: rgba(255, 249, 238, 0.12);
  border-color: rgba(255, 249, 238, 0.18);
  box-shadow: none;
  transition: transform 170ms ease, background-color 170ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 249, 238, 0.18);
}

.contact-card span {
  color: var(--butter);
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  color: var(--paper-warm);
  font-size: 1.15rem;
  line-height: 1.45;
}

.contact-card--facebook {
  background: rgba(24, 119, 242, 0.22);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(14, 11, 10, 0.84);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  width: min(1200px, 100%);
  max-height: calc(100vh - 100px);
  display: grid;
  place-items: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 100px);
  border-radius: 22px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(255, 249, 238, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-warm);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  background: var(--leaf-deep);
  border-top: 1px solid rgba(255, 249, 238, 0.12);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 28px;
  color: rgba(255, 249, 238, 0.76);
}

@media (max-width: 1120px) {
  .header-inner {
    min-height: 120px;
  }

  .site-nav {
    flex: 0 1 430px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 28px;
  }

  .site-nav a {
    width: 100%;
  }

  .brand-logo {
    width: clamp(170px, 24vw, 248px);
  }

  .history-grid,
  .forms-layout,
  .event-feature,
  .gallery-grid,
  .visit-grid,
  .social-band {
    grid-template-columns: 1fr;
  }

  .hero-image {
    justify-self: start;
    width: min(100%, 520px);
  }

  .hero-stats,
  .intro-grid,
  .plan-grid,
  .forms-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid {
    transform: none;
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 24px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 88px;
  }

  .brand-logo {
    width: min(180px, 49vw);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 16px 20px;
    background: rgba(250, 245, 236, 0.98);
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: min(100%, 156px);
  }

  .hero {
    padding: 46px 0 34px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.44fr);
    gap: 18px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(19, 25, 18, 0.88), rgba(19, 25, 18, 0.94)),
      url("assets/creamery-flickr-1.jpg") center / cover;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .hero-stats,
  .intro-grid,
  .plan-grid,
  .forms-grid,
  .contact-grid,
  .event-gallery,
  .event-list {
    grid-template-columns: 1fr;
  }

  .plan-card--primary,
  .event-image-card--wide {
    grid-column: auto;
  }

  .section {
    padding: 70px 0;
  }

  .section--lift {
    padding-top: 28px;
  }

  .section-heading h2,
  .section-copy h2,
  .social-band h2,
  .forms-intro h2,
  .visit-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .button {
    width: 100%;
  }

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

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

  .hero-image {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
