:root {
  --soil: #493529;
  --soil-soft: #73533b;
  --leaf: #2f6b42;
  --leaf-dark: #173f2b;
  --moss: #dfe8d9;
  --sun: #e2ae43;
  --clay: #b96e4b;
  --cream: #f6f0e2;
  --ink: #1f241e;
  --white: #fffdf8;
  --shadow: 0 20px 55px rgba(31, 36, 30, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(31, 36, 30, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(132px, 15vw, 188px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
  transition: width 180ms ease, filter 180ms ease;
}

.brand-logo-color {
  display: none;
}

.site-header.is-scrolled .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-color {
  display: block;
}

.site-header.is-scrolled .brand-logo {
  width: clamp(124px, 13vw, 166px);
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.mobile-menu a {
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 19;
  top: 72px;
  left: 14px;
  right: 14px;
  display: none;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 14px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--leaf-dark);
}

.membership-page-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--leaf-dark);
}

.hero picture,
.hero img,
.hero-overlay,
.membership-page-hero > img,
.membership-page-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img,
.membership-page-hero > img,
.membership-page-hero > video {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(19, 35, 24, 0.8), rgba(19, 35, 24, 0.38) 52%, rgba(19, 35, 24, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 clamp(60px, 10vh, 110px);
  color: var(--white);
}

.membership-page-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 clamp(58px, 8vh, 90px);
  color: var(--white);
}

.membership-page-copy h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.membership-page-copy p:not(.eyebrow) {
  max-width: 700px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.open-farm-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(19, 35, 24, 0.86), rgba(19, 35, 24, 0.48) 55%, rgba(19, 35, 24, 0.12));
}

.eyebrow,
.section-kicker,
.card-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(56px, 10vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

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

.hero-pulse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: clamp(24px, 4vw, 44px);
}

.hero-pulse a {
  display: grid;
  gap: 5px;
  min-height: 104px;
  align-content: end;
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--radius);
  background: rgba(19, 35, 24, 0.34);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-pulse a:hover {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.5);
}

.hero-pulse span {
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-pulse strong {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.15;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  background: var(--sun);
  color: #20170d;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.section-pad {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 54px);
}

.home-page .section-pad {
  padding-block: clamp(48px, 7vw, 84px);
}

.intro,
.membership,
.plan {
  background: var(--cream);
}

.intro-grid,
.section-head,
.offering-grid,
.membership-layout,
.workshop-grid,
.land-layout,
.season-layout,
.visit-panel,
.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro-cta {
  width: fit-content;
  grid-column: 2;
  margin-top: -28px;
}

.intro-notes {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -8px;
}

.intro-notes span {
  padding: 10px 14px;
  border: 1px solid rgba(45, 80, 41, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.1;
}

p {
  line-height: 1.65;
}

.intro p,
.section-head p,
.membership-copy p,
.membership-detail p,
.area-copy p,
.season-copy p,
.visit-panel p {
  font-size: 18px;
}

.section-head {
  margin-bottom: 34px;
}

.home-page .section-head {
  margin-bottom: 24px;
}

.section-head p:not(.section-kicker) {
  max-width: 680px;
}

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

.home-flow {
  background: var(--white);
}

.home-flow-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-flow-grid article {
  display: grid;
  grid-template-rows: 270px 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 14px 32px rgba(31, 36, 30, 0.08);
}

.home-flow-grid article:first-child {
  grid-row: span 2;
  grid-template-rows: 1fr auto;
}

.home-flow-grid article:first-child img {
  min-height: 460px;
}

.home-flow-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-flow-grid div {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 26px);
}

.home-flow-grid span {
  color: var(--sun-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-flow-grid h3,
.home-flow-grid p {
  margin: 0;
}

.home-flow-grid p {
  color: var(--soil-soft);
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offering-card,
.workshop-grid article {
  overflow: hidden;
  border: 1px solid rgba(31, 36, 30, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(31, 36, 30, 0.08);
}

.info-card {
  grid-template-rows: 1fr;
}

.offering-card {
  display: grid;
  grid-template-rows: 260px 1fr;
}

.offering-link {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offering-link:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 82, 45, 0.34);
  box-shadow: 0 22px 46px rgba(31, 36, 30, 0.13);
}

.offering-link:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.offering-card img,
.workshop-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offering-card > div,
.workshop-grid article {
  padding: 20px;
}

.offering-card img {
  padding: 0;
}

.offering-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--soil-soft);
}

.card-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--sun);
  color: var(--leaf);
  font-weight: 900;
}

.membership-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.membership-panel {
  display: grid;
  gap: 10px;
}

.membership-row {
  display: grid;
  gap: 5px;
  width: 100%;
  border: 1px solid rgba(31, 36, 30, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.membership-row:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.membership-row span {
  font-weight: 900;
}

.membership-row small {
  color: var(--soil-soft);
  line-height: 1.45;
}

.membership-row.is-active {
  border-color: var(--leaf);
  padding: clamp(22px, 4vw, 42px);
  background: var(--leaf-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.membership-row.is-active small {
  color: rgba(255, 253, 248, 0.76);
}

.membership-row-detail {
  display: none;
  margin-top: 14px;
}

.membership-row-detail p {
  font-size: 18px;
}

.membership-row.is-active .membership-row-detail {
  display: grid;
  gap: 10px;
}

.membership-detail,
.area-copy,
.season-copy {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.area-copy {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 24px;
}

.member-cta {
  width: fit-content;
  margin-top: 10px;
}

.membership-detail .button-primary {
  color: #20170d;
}

.open-farm-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: var(--cream);
}

.open-stat {
  display: grid;
  gap: 8px;
  min-height: 180px;
  align-content: end;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.open-stat span {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.95;
}

.open-stat p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
}

.open-photo-story {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--leaf-dark);
}

.open-photo-story img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  border-radius: var(--radius);
}

.open-photo-story img:nth-child(2) {
  margin-top: clamp(28px, 5vw, 70px);
}

.open-explorer,
.open-flow,
.open-season-layout,
.open-benefit-strip {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.open-explorer {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.open-tabs,
.open-season-buttons {
  display: grid;
  gap: 10px;
  align-content: start;
}

.open-tab {
  border: 1px solid rgba(31, 36, 30, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  color: var(--soil);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.open-tab:hover {
  transform: translateX(4px);
}

.open-tab.is-active {
  background: var(--sun);
  color: #20170d;
}

.open-panel {
  display: grid;
  align-content: center;
  min-height: 380px;
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.open-panel h3 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 62px);
}

.open-panel p:not(.panel-label) {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 19px;
}

.open-flow {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.open-steps {
  display: grid;
  gap: 14px;
}

.open-steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(31, 36, 30, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(31, 36, 30, 0.06);
}

.open-steps span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
}

.open-steps h3,
.open-steps p {
  grid-column: 2;
  margin: 0;
}

.open-steps p {
  color: var(--soil-soft);
}

.open-season-board {
  background: var(--cream);
}

.open-season-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
}

.open-season-buttons {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--moss);
}

.open-benefit-strip {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.open-basket-photo {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(31, 36, 30, 0.08);
}

.open-benefit-strip article {
  min-height: 320px;
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(31, 36, 30, 0.08);
}

.open-benefit-strip h3 {
  max-width: 520px;
  font-size: clamp(30px, 4vw, 54px);
}

.open-benefit-strip p:not(.card-kicker) {
  max-width: 560px;
  color: var(--soil-soft);
  font-size: 18px;
}

.open-join-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
}

.offering-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(19, 35, 24, 0.84), rgba(19, 35, 24, 0.48) 55%, rgba(19, 35, 24, 0.08));
}

.about-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(19, 35, 24, 0.82), rgba(19, 35, 24, 0.42) 58%, rgba(19, 35, 24, 0.1));
}

.about-story {
  background: var(--cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 88px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.about-story-grid > p {
  font-size: 18px;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-photo-grid img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(31, 36, 30, 0.08);
}

.about-photo-grid img:nth-child(2) {
  margin-top: clamp(28px, 5vw, 70px);
}

.offering-pricing {
  background: var(--cream);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.price-grid article {
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.price-grid span {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.95;
}

.price-grid p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.76);
}

.offering-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(22px, 5vw, 64px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.offering-mini-list {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: clamp(20px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.offering-mini-list p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  font-weight: 900;
}

.offering-mini-list p:last-child {
  border-bottom: 0;
}

.schedule-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.schedule-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(31, 36, 30, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(31, 36, 30, 0.06);
}

.schedule-list time {
  display: grid;
  min-height: 80px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--moss);
  color: var(--leaf-dark);
  font-weight: 900;
  text-align: center;
}

.schedule-list h3,
.schedule-list p {
  margin: 0;
}

.schedule-list h3 {
  font-size: clamp(20px, 2.4vw, 28px);
}

.schedule-list p {
  color: var(--soil-soft);
}

.day-out-schedule .day-out-event {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.day-out-event-summary {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  border: 0;
  padding: 16px;
  text-align: left;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.day-out-event-summary:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: -6px;
}

.day-out-event.is-active {
  grid-column: 1 / -1;
  border-color: rgba(47, 82, 45, 0.34);
  background: var(--leaf-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.day-out-event.is-active time {
  background: var(--sun);
  color: #20170d;
}

.day-out-event.is-active p,
.day-out-event.is-active .section-kicker {
  color: rgba(255, 253, 248, 0.78);
}

.day-out-event.is-closed.is-active {
  background: #2f352b;
}

.day-out-event-detail {
  display: none;
}

.day-out-event.is-active .day-out-event-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 0 clamp(16px, 3vw, 28px) clamp(18px, 3vw, 28px);
}

.day-out-event-image {
  width: 100%;
  min-height: 360px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.day-out-event-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.day-out-event-copy h4,
.day-out-detail-grid h4 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
}

.day-out-event-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.day-out-detail-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr minmax(260px, 0.8fr);
  gap: 14px;
}

.day-out-detail-grid > div {
  padding: clamp(18px, 3vw, 24px);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.1);
}

.day-out-detail-grid ol,
.day-out-detail-grid ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.day-out-detail-grid li {
  line-height: 1.45;
  color: rgba(255, 253, 248, 0.82);
}

.day-out-reserve {
  display: grid;
  align-content: center;
  gap: 14px;
}

.day-out-reserve label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.day-out-reserve input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  font: inherit;
}

.day-out-reserve .button {
  width: 100%;
}

.day-out-reserve-closed p {
  margin: 0;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.station-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.station-grid article {
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(31, 36, 30, 0.08);
}

.station-grid span {
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.station-grid h3,
.station-grid p {
  margin: 0;
}

.station-grid h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}

.station-grid p {
  color: var(--soil-soft);
}

.workshops {
  background: var(--leaf-dark);
  color: var(--white);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.workshop-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-bottom: clamp(38px, 6vw, 72px);
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.workshop-slideshow {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(10, 22, 14, 0.28);
}

.workshop-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.workshop-slideshow img.is-active {
  opacity: 1;
}

.workshop-feature h3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.workshop-feature p:not(.card-kicker) {
  color: rgba(255, 253, 248, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.workshop-subhead {
  margin-bottom: 24px;
}

.workshop-grid article {
  display: grid;
  grid-template-rows: 240px auto auto 1fr auto;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.workshop-grid article p:not(.card-kicker) {
  color: rgba(255, 253, 248, 0.78);
}

.workshop-grid img {
  margin: -20px -20px 0;
  width: calc(100% + 40px);
  max-width: none;
}

.workshop-grid .button-secondary {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.44);
}

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

.land-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.map-card {
  position: relative;
  min-height: 620px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soil);
  box-shadow: var(--shadow);
  justify-self: end;
}

.map-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(23, 63, 43, 0.02), rgba(24, 20, 16, 0.18));
}

.map-controls {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}

.map-point {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: none;
  transition: background 180ms ease, color 180ms ease, flex-basis 180ms ease;
}

.map-point.is-active {
  flex-basis: 28%;
  border-color: var(--sun);
  background: var(--sun);
  color: #20170d;
}

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

.season-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.season-wheel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
  min-height: 320px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--moss);
}

.season-item {
  border: 1px solid rgba(31, 36, 30, 0.2);
  border-radius: 999px;
  background: transparent;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 800;
}

.season-item.is-active {
  background: var(--leaf);
  color: var(--white);
  border-color: var(--leaf);
}

.gallery {
  background: var(--soil);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 0.9fr;
  gap: 12px;
}

.gallery-grid button {
  min-height: 310px;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

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

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

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

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.location-layout iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.9);
}

.location-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.location-card p:not(.panel-label) {
  color: rgba(255, 253, 248, 0.78);
}

.location-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  padding: clamp(24px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
}

.planner {
  display: grid;
  align-content: center;
  gap: 14px;
}

.planner label {
  font-weight: 900;
}

.planner select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 20, 15, 0.88);
}

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

.lightbox img {
  max-height: 86vh;
  max-width: min(100%, 1120px);
  border-radius: var(--radius);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(31, 36, 30, 0.12);
  background: var(--white);
  color: var(--ink);
}

.footer p {
  margin: 0;
}

.footer-logo {
  width: min(180px, 42vw);
  height: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 38px;
  padding: 9px;
  border: 1px solid rgba(45, 80, 41, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: transparent;
  font-size: 0;
}

.footer-social a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-social a[href*="instagram.com"]::before {
  background-image: url("assets/social/instagram.svg");
}

.footer-social a[href*="facebook.com"]::before {
  background-image: url("assets/social/facebook.svg");
}

.footer-social a[href*="tiktok.com"]::before {
  background-image: url("assets/social/tiktok.svg");
}

.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
}

.footer-social a:hover::before {
  filter: brightness(0) invert(1);
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .intro-grid,
  .membership-layout,
  .land-layout,
  .season-layout,
  .visit-panel,
  .location-layout,
  .open-explorer,
  .open-flow,
  .open-season-layout,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .offering-grid,
  .workshop-grid,
  .gallery-grid,
  .open-farm-snapshot,
  .open-benefit-strip,
  .open-photo-story,
  .about-photo-grid,
  .price-grid,
  .offering-feature,
  .home-flow-grid,
  .schedule-list,
  .station-grid,
  .station-grid-three {
    grid-template-columns: 1fr;
  }

  .hero-pulse {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hero-pulse a {
    min-height: auto;
  }

  .home-flow-grid article:first-child {
    grid-row: auto;
  }

  .home-flow-grid article,
  .home-flow-grid article:first-child {
    grid-template-rows: 260px auto;
  }

  .home-flow-grid article:first-child img {
    min-height: 260px;
  }

  .open-panel {
    min-height: auto;
  }

  .open-photo-story img,
  .open-photo-story img:nth-child(2),
  .about-photo-grid img,
  .about-photo-grid img:nth-child(2) {
    height: 300px;
    margin-top: 0;
  }

  .intro-cta {
    grid-column: auto;
    margin-top: 0;
  }

  .location-layout iframe {
    min-height: 360px;
  }

  .station-grid article,
  .price-grid article {
    min-height: auto;
  }

  .day-out-event.is-active .day-out-event-detail,
  .day-out-detail-grid {
    grid-template-columns: 1fr;
  }

  .day-out-event-image {
    min-height: 260px;
  }

  .workshop-feature {
    grid-template-columns: 1fr;
  }

  .map-card {
    width: min(100%, 430px);
    min-height: auto;
    justify-self: center;
  }

  .area-copy {
    min-height: auto;
  }

  .map-controls {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .map-point {
    flex: 0 0 auto;
  }

  .map-point.is-active {
    flex-basis: auto;
  }

  .season-wheel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .footer {
    display: grid;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(19, 35, 24, 0.22), rgba(19, 35, 24, 0.86));
  }

  .button {
    width: 100%;
  }

  .brand-logo {
    width: 128px;
  }

  .map-point {
    padding: 8px 10px;
    font-size: 13px;
  }
}
