:root {
  color-scheme: dark;
  --cream: #fff8e9;
  --gold: #f6c24b;
  --leaf: #9bc86b;
  --ink: #142016;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: #101610;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.landing-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .68), transparent);
  pointer-events: none;
}

.brand,
.landing-header p { pointer-events: auto; }

.brand {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}

.landing-header p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .9rem;
  font-weight: 650;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

.choice {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
}

.choice::after {
  position: absolute;
  z-index: 3;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 24px;
  content: "";
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.choice img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
}

.choice--restaurant img { object-position: 53% center; }
.choice--farm img { object-position: 62% center; }

.choice__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 18%, rgba(0, 0, 0, .76) 90%),
    linear-gradient(90deg, rgba(0, 0, 0, .14), transparent 45%);
}

.choice--farm .choice__shade {
  background:
    linear-gradient(180deg, rgba(12, 35, 18, .03) 18%, rgba(9, 31, 14, .78) 90%),
    linear-gradient(90deg, rgba(8, 30, 14, .18), transparent 45%);
}

.choice__content {
  display: flex;
  width: min(100%, 660px);
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(90px, 12vh, 150px) clamp(28px, 5vw, 80px) clamp(72px, 10vh, 112px);
}

.choice__eyebrow {
  margin-bottom: 13px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.choice--farm .choice__eyebrow { color: #d9f6b8; }

.choice h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .9;
}

.choice__description {
  max-width: 42ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.choice__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(12, 15, 12, .28);
  backdrop-filter: blur(10px);
  font-size: .92rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.choice__note {
  margin-top: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: .68rem;
  font-weight: 650;
}

.choice:hover img,
.choice:focus-visible img { transform: scale(1.035); filter: saturate(1.06); }
.choice:hover::after,
.choice:focus-visible::after { opacity: 1; }
.choice:hover .choice__button,
.choice:focus-visible .choice__button { background: #fff; color: var(--ink); transform: translateY(-2px); }
.choice:focus-visible { outline: 4px solid #fff; outline-offset: -4px; }

.landing-footer {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, .68);
  font-size: .75rem;
  pointer-events: none;
}

.landing-footer a { pointer-events: auto; }
.landing-footer span::after { content: "•"; margin-left: 8px; }

@media (max-width: 760px) {
  .landing-header { padding: 16px 18px; }
  .landing-header p { display: none; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice { min-height: 50svh; }
  .choice__content { padding: 82px 24px 42px; }
  .choice h2 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .choice__description { max-width: 34ch; margin-top: 12px; font-size: .94rem; }
  .choice__button { margin-top: 16px; padding: 10px 14px; }
  .choice--farm img { object-position: 64% 46%; }
  .landing-footer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
