:root {
  --forest: #123f2c;
  --forest-deep: #0c2e20;
  --leaf: #5d8e45;
  --lime: #b9d66c;
  --cream: #f4f0e5;
  --paper: #fbfaf5;
  --ink: #17231c;
  --muted: #68736b;
  --line: #dcded5;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid rgba(18, 63, 44, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
}

.brand-mark svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

nav a {
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--leaf);
}

.nav-cta {
  padding: 13px 21px;
  background: var(--forest);
  color: var(--white);
}

nav .nav-cta:hover {
  color: var(--white);
  background: var(--forest-deep);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 54% center;
}

.hero-shade {
  background: rgba(7, 35, 23, 0.18);
  box-shadow: inset 62vw 0 170px rgba(7, 35, 23, 0.82);
}

.real-photo-label {
  position: absolute;
  z-index: 3;
  top: 110px;
  right: 4vw;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.real-photo-label span {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding-top: clamp(160px, 21vh, 205px);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--leaf);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

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

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.hero h1 em {
  color: #d3e89b;
  font-style: normal;
}

.hero-copy {
  margin: 30px 0 37px;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  background: var(--lime);
  color: var(--forest-deep);
}

.button-primary:hover {
  background: #cbe585;
}

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  margin-left: 14px;
}

.quick-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  width: min(710px, 55vw);
  margin: 0;
  background: var(--cream);
  color: var(--ink);
}

.quick-facts > div {
  min-height: 150px;
  padding: 27px 28px;
  border-left: 1px solid var(--line);
}

.fact-label {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.quick-facts strong {
  display: block;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 19px;
  white-space: nowrap;
}

.quick-facts strong b {
  color: var(--forest);
  font-size: 28px;
}

.quick-facts small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding: 120px max(5vw, calc((100vw - 1180px) / 2));
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 8vw;
}

.intro h2,
.section-heading h2,
.conditions h2,
.requirement h2,
.entry h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.4;
}

.intro-copy {
  max-width: 540px;
  margin-top: 30px;
  padding-top: 8px;
  color: #435047;
  font-size: 15px;
  line-height: 2.05;
}

.intro-copy > p:first-child {
  margin-top: 0;
}

.note {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.note span {
  color: var(--leaf);
}

.intro-photo {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 600px;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  background: #dfe3d8;
  box-shadow: 30px 30px 0 #e5e0d3;
}

.intro-photo::before {
  position: absolute;
  z-index: 1;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.intro-photo img {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
}

.intro-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  min-width: 265px;
  padding: 20px 24px;
  background: var(--paper);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.intro-photo figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--leaf);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.work {
  padding-top: 105px;
  background: #ece8dc;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-heading p {
  max-width: 380px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

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

.work-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: var(--paper);
  border: 1px solid rgba(18, 63, 44, 0.1);
}

.work-number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--forest);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.work-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dbe0d6;
}

.work-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.work-card:hover .work-photo img {
  transform: scale(1.035);
}

.work-card-copy {
  flex: 1;
  padding: 26px 28px 29px;
}

.work-card-copy span {
  color: var(--leaf);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.work-card-copy h3 {
  margin: 8px 0 13px;
  font-size: 21px;
}

.work-card-copy p {
  margin: 0;
  color: #536157;
  font-size: 13px;
  line-height: 1.8;
}

.farm-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 650px;
  background: var(--forest-deep);
  color: var(--white);
}

.farm-story-photo {
  min-height: 650px;
  overflow: hidden;
}

.farm-story-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.farm-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 7vw, 110px);
}

.farm-story-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.7vw, 54px);
  letter-spacing: -0.045em;
  line-height: 1.4;
}

.farm-story-copy > p {
  margin: 27px 0 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 2;
}

.farm-story-copy dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.farm-story-copy dl div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.farm-story-copy dt {
  color: var(--lime);
}

.farm-story-copy dd {
  margin: 0;
  font-weight: 700;
}

.positions {
  background: var(--paper);
}

.positions-heading {
  align-items: center;
}

.position-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.position-card {
  position: relative;
  padding: 38px 40px 36px;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 44, 0.13);
}

.seasonal-position {
  background: #e6edd9;
}

.year-round-position {
  background: #e2e9e4;
}

.position-card::after {
  position: absolute;
  right: -74px;
  bottom: -86px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(18, 63, 44, 0.12);
  border-radius: 50%;
}

.position-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.position-badge {
  padding: 7px 12px;
  background: var(--forest);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.position-number {
  color: rgba(18, 63, 44, 0.32);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.position-period {
  position: relative;
  z-index: 1;
  margin: 38px 0 8px;
  color: var(--leaf);
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.position-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--forest);
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.035em;
}

.position-description {
  position: relative;
  z-index: 1;
  min-height: 52px;
  margin: 18px 0 28px;
  color: #536157;
  font-size: 13px;
  line-height: 1.9;
}

.position-details {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  border-top: 1px solid rgba(18, 63, 44, 0.18);
}

.position-details > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 63, 44, 0.18);
  font-size: 13px;
}

.position-details dt {
  color: var(--muted);
  font-size: 11px;
}

.position-details dd {
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.position-card > small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 10px;
}

.position-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.position-footnote span {
  color: #b9bdb4;
}

.conditions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  background: var(--forest);
  color: var(--white);
}

.section-kicker.light {
  color: var(--lime);
}

.conditions-lead p {
  max-width: 460px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 2;
}

.conditions-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.condition-row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.condition-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--lime);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.condition-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.condition-row small {
  color: var(--lime);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.condition-row h3 {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.condition-row strong {
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 24px;
  text-align: right;
}

.condition-row strong em {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
}

.requirement {
  display: grid;
  grid-template-columns: 100px 0.8fr 1.2fr;
  align-items: center;
  gap: 4vw;
}

.license-badge {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: #e3ead5;
  border-radius: 50%;
}

.license-badge svg {
  width: 51px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.requirement h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.requirement-copy {
  padding-left: 4vw;
  border-left: 1px solid var(--line);
}

.requirement-copy strong {
  display: block;
  margin-bottom: 13px;
  color: var(--forest);
  font-size: 20px;
}

.requirement-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.entry {
  position: relative;
  padding: 110px 5vw;
  overflow: hidden;
  background: #6f914e;
  color: var(--white);
  text-align: center;
}

.entry::before,
.entry::after {
  position: absolute;
  content: "";
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.entry::before {
  top: -130px;
  left: -90px;
}

.entry::after {
  right: -70px;
  bottom: -180px;
}

.entry-inner {
  position: relative;
  z-index: 1;
}

.entry .section-kicker {
  justify-content: center;
}

.entry h2 {
  font-size: clamp(36px, 4.5vw, 58px);
}

.entry p {
  margin: 23px 0 34px;
  font-size: 14px;
  line-height: 2;
}

.button-light {
  min-width: 330px;
  background: var(--white);
  color: var(--forest);
}

.button-light:hover {
  background: var(--cream);
}

.entry-note {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 11px;
}

.entry-note a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.entry-note a:hover {
  color: var(--white);
}

footer {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  background: var(--forest-deep);
  color: var(--white);
}

footer p {
  font-size: 11px;
  letter-spacing: 0.12em;
}

footer small {
  justify-self: end;
  color: rgba(255, 255, 255, 0.45);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--forest);
}

dialog {
  width: min(500px, calc(100vw - 34px));
  padding: 48px;
  background: var(--paper);
  border: 0;
  box-shadow: 0 25px 90px rgba(7, 35, 23, 0.3);
  color: var(--ink);
  text-align: center;
}

dialog::backdrop {
  background: rgba(7, 35, 23, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 13px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 26px;
  cursor: pointer;
}

.dialog-icon {
  color: var(--leaf);
  font-size: 28px;
}

dialog h2 {
  margin: 12px 0 15px;
  font-size: 25px;
}

dialog p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact-option {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  background: #ecefe5;
  border: 1px solid #d5dccf;
  color: var(--forest);
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-option:hover {
  transform: translateY(-2px);
  border-color: var(--leaf);
}

.contact-option-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.phone-icon {
  font-family: sans-serif;
  font-size: 15px;
}

.contact-option small,
.contact-option strong {
  display: block;
}

.contact-option small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.contact-option strong {
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.contact-option b {
  font-size: 18px;
}

.dialog-ok {
  width: 100%;
}

@media (max-width: 900px) {
  .site-header {
    height: 68px;
  }

  nav {
    position: fixed;
    inset: 68px 0 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    background: var(--paper);
    font-size: 17px;
  }

  .menu-open nav {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    height: auto;
    min-height: 820px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background: rgba(7, 35, 23, 0.42);
    box-shadow: inset 70vw 0 120px rgba(7, 35, 23, 0.66);
  }

  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .quick-facts > div {
    min-height: 130px;
    padding: 22px 18px;
  }

  .intro-grid,
  .conditions {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-photo,
  .intro-photo img {
    height: 580px;
    min-height: 580px;
  }

  .intro-photo {
    max-width: 464px;
    justify-self: center;
  }

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

  .work-card {
    min-height: 0;
  }

  .work-photo {
    height: auto;
  }

  .farm-story {
    grid-template-columns: 1fr;
  }

  .farm-story-photo {
    min-height: 520px;
  }

  .farm-story-copy {
    padding: 80px 5vw;
  }

  .position-card {
    padding: 32px 28px;
  }

  .position-footnote {
    flex-wrap: wrap;
  }

  .requirement {
    grid-template-columns: 85px 1fr;
  }

  .requirement-copy {
    grid-column: 2;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 20px;
  }

  .brand {
    font-size: 13px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    height: 610px;
    object-position: 52% center;
  }

  .hero-shade {
    height: 610px;
    background: rgba(7, 35, 23, 0.36);
    box-shadow: inset 100vw 0 100px rgba(7, 35, 23, 0.64);
  }

  .real-photo-label {
    top: 92px;
    right: 20px;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-top: 138px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-copy {
    margin: 22px 0 28px;
    font-size: 13px;
  }

  .text-link {
    display: none;
  }

  .quick-facts {
    bottom: 0;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
  }

  .quick-facts > div {
    min-height: 84px;
    padding: 14px 16px;
  }

  .quick-facts > div:first-child {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quick-facts > div:last-child {
    border-top: 1px solid var(--line);
  }

  .fact-label {
    margin-bottom: 3px;
  }

  .quick-facts strong {
    font-size: 15px;
  }

  .quick-facts strong b {
    font-size: 23px;
  }

  .quick-facts small {
    margin-top: 2px;
  }

  .section {
    padding: 80px 20px;
  }

  .section-kicker {
    margin-bottom: 16px;
  }

  .intro-grid {
    gap: 32px;
  }

  .intro h2,
  .section-heading h2,
  .conditions h2,
  .entry h2 {
    font-size: 32px;
  }

  .section-heading {
    display: block;
    margin-bottom: 35px;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .work-photo {
    height: auto;
  }

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

  .farm-story-photo {
    min-height: 390px;
  }

  .farm-story-copy {
    padding: 70px 20px;
  }

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

  .position-card {
    padding: 30px 24px;
  }

  .position-description {
    min-height: 0;
  }

  .position-footnote {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .position-footnote span {
    display: none;
  }

  .conditions {
    gap: 50px;
  }

  .condition-row {
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
  }

  .condition-row strong {
    font-size: 18px;
  }

  .requirement {
    grid-template-columns: 68px 1fr;
    column-gap: 18px;
  }

  .license-badge {
    width: 66px;
    height: 66px;
  }

  .license-badge svg {
    width: 40px;
  }

  .requirement h2 {
    font-size: 24px;
  }

  .requirement-copy {
    grid-column: 1 / -1;
  }

  .entry {
    padding: 82px 20px;
  }

  .entry p br {
    display: none;
  }

  .button-light {
    width: 100%;
    min-width: 0;
    padding: 0 16px;
    gap: 12px;
    font-size: 12px;
  }

  .entry-note {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .entry-note span {
    display: none;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 35px 20px;
  }

  footer p {
    display: none;
  }

  dialog {
    padding: 43px 24px 28px;
  }
}

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

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