:root {
  --bg: #f5f1e5;
  --bg-soft: #eef3e8;
  --surface: rgba(255, 253, 247, 0.9);
  --ink: #121612;
  --muted: #697063;
  --line: rgba(18, 22, 18, 0.08);
  --green: #84c35f;
  --green-deep: #204122;
  --green-soft: #dceacc;
  --gold: #dcc497;
  --shadow: 0 24px 48px rgba(16, 22, 16, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(220, 196, 151, 0.2), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(132, 195, 95, 0.12), transparent 18%),
    linear-gradient(180deg, #fbf8f0 0%, #f4efe2 45%, #ecf3e6 100%);
  font-family: "Noto Sans KR", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(132, 195, 95, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 195, 95, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

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

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

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

.page-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 0 118px;
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 240, 0.74);
  border-bottom: 1px solid rgba(18, 22, 18, 0.05);
}

.wordmark {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-nav a {
  position: relative;
  transition: color 160ms ease;
}

.page-nav a::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.page-nav a:hover,
.page-nav a.is-active {
  color: var(--green-deep);
}

.page-nav a:hover::after,
.page-nav a.is-active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 11, 7, 0.22), rgba(7, 11, 7, 0.64)),
    url("assets/media/field-wide.webp") center / cover no-repeat;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 11, 7, 0.26), rgba(7, 11, 7, 0.72)),
    linear-gradient(90deg, rgba(7, 11, 7, 0.76) 0%, rgba(7, 11, 7, 0.42) 38%, rgba(7, 11, 7, 0.08) 70%, rgba(7, 11, 7, 0.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(88px, 16vh, 144px) 0 80px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(236, 245, 232, 0.8);
}

.hero-copy h1,
.intro h2,
.cinema-copy h2,
.feature-copy h2,
.band-copy h2,
.motion-copy h2,
.packaging-copy h2,
.taste-copy h2,
.farmer-copy h2,
.closing-message h2,
.order-copy h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  line-height: 0.98;
}

.hero-description {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.9;
}

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

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

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

.button-primary {
  background: linear-gradient(135deg, var(--green), #5ca041);
  color: #fff;
  box-shadow: 0 14px 28px rgba(92, 160, 65, 0.24);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.intro,
.statement,
.closing-message {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.intro {
  padding: 112px 0 100px;
  text-align: center;
}

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

.section-kicker-light {
  color: rgba(232, 245, 227, 0.78);
}

.intro h2,
.closing-message h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.04;
}

.intro-copy {
  max-width: 740px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.cinema {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 40px;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 90px;
}

.cinema-media img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.cinema-copy h2,
.feature-copy h2,
.band-copy h2,
.motion-copy h2,
.packaging-copy h2,
.taste-copy h2,
.farmer-copy h2,
.order-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.cinema-copy p,
.feature-copy p,
.band-copy p,
.motion-copy p,
.packaging-copy p,
.taste-copy p,
.farmer-copy p,
.order-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.9;
}

.cinema-copy p,
.feature-copy p,
.band-copy p,
.motion-copy p,
.packaging-copy p,
.taste-copy p,
.farmer-copy p,
.order-copy p {
  margin-top: 22px;
  font-size: 1rem;
}

.statement {
  padding: 0 0 96px;
}

.statement p {
  margin: 0;
  color: var(--green-deep);
  font-family: "Noto Serif KR", serif;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1.35;
  text-align: center;
}

.feature-split,
.motion-pair,
.packaging-stage,
.farmer-stage,
.order-stage {
  display: grid;
  gap: 36px;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.feature-split {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  padding-bottom: 90px;
}

.feature-media img,
.motion-media img,
.motion-media video,
.packaging-gallery img,
.farmer-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.dark-band {
  padding: 128px 0;
  background:
    radial-gradient(circle at top right, rgba(132, 195, 95, 0.16), transparent 22%),
    linear-gradient(180deg, #0f1710 0%, #152117 100%);
}

.band-copy {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.band-copy p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(235, 244, 231, 0.82);
}

.motion-pair {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  padding: 94px 0 0;
}

.motion-pair-reverse {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
}

.motion-pair-reverse .motion-copy {
  order: 2;
}

.motion-pair-reverse .motion-media {
  order: 1;
}

.packaging-stage {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  padding: 96px 0 0;
}

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

.taste-stage {
  position: relative;
  width: min(1400px, calc(100% - 32px));
  margin: 108px auto 0;
  padding: 128px 0;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(8, 12, 8, 0.86), rgba(8, 12, 8, 0.66));
}

.taste-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(1.04) contrast(1.02);
  z-index: 0;
}

.taste-stage::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 7, 0.72) 0%, rgba(7, 11, 7, 0.34) 42%, rgba(7, 11, 7, 0.08) 100%);
  z-index: 1;
  content: "";
}

.taste-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  color: #fff;
}

.taste-copy p {
  max-width: 560px;
  color: rgba(236, 245, 232, 0.86);
}

.farmer-stage {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 108px 0 0;
}

.inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.inline-points li {
  position: relative;
  padding-left: 14px;
  color: var(--green-deep);
  font-weight: 700;
}

.inline-points li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  content: "";
}

.closing-message {
  padding: 120px 0 72px;
  text-align: center;
}

.order-stage {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  padding: 40px 0 0;
}

.order-copy {
  color: #fff;
}

.order-stage {
  align-items: stretch;
}

.order-stage::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1 / 2;
}

.order-copy,
.order-form {
  position: relative;
  z-index: 1;
}

.order-stage {
  position: relative;
  padding-bottom: 0;
}

.order-stage::after {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(132, 195, 95, 0.18), transparent 22%),
    linear-gradient(160deg, #111811 0%, #1c2d1b 100%);
  content: "";
  z-index: 0;
}

.order-stage > * {
  padding: 36px;
}

.order-form {
  margin: 22px;
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

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

.order-form label {
  display: grid;
  gap: 8px;
}

.order-form label.full,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.order-form span {
  color: var(--green-deep);
  font-weight: 700;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(18, 22, 18, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(132, 195, 95, 0.18);
  border-color: rgba(132, 195, 95, 0.34);
}

.order-form textarea {
  resize: vertical;
}

.site-footer {
  padding-top: 28px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.quick-order {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 42;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(960px, calc(100% - 24px));
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(16, 24, 16, 0.92);
  box-shadow: 0 22px 48px rgba(12, 18, 12, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 24px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.quick-order.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.quick-copy strong {
  display: block;
  color: #fff;
}

.quick-copy span {
  display: block;
  margin-top: 4px;
  color: rgba(236, 245, 232, 0.82);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .cinema,
  .feature-split,
  .motion-pair,
  .motion-pair-reverse,
  .packaging-stage,
  .farmer-stage,
  .order-stage {
    grid-template-columns: 1fr;
  }

  .motion-pair-reverse .motion-copy,
  .motion-pair-reverse .motion-media {
    order: initial;
  }
}

@media (max-width: 820px) {
  .global-nav {
    padding: 14px 20px;
    flex-direction: column;
    align-items: start;
  }

  .hero-copy,
  .intro,
  .statement,
  .cinema,
  .feature-split,
  .motion-pair,
  .packaging-stage,
  .taste-copy,
  .farmer-stage,
  .closing-message,
  .order-stage {
    width: min(100% - 20px, 1320px);
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 11vw, 5rem);
  }

  .page-nav {
    gap: 12px;
  }

  .packaging-gallery,
  .order-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding-top: 82px;
  }

  .hero-actions,
  .quick-order {
    flex-direction: column;
    align-items: stretch;
  }

  .cinema,
  .feature-split,
  .motion-pair,
  .packaging-stage,
  .farmer-stage,
  .order-stage {
    gap: 24px;
  }

  .taste-stage {
    width: min(100% - 12px, 1400px);
    padding: 92px 0;
    border-radius: 26px;
  }

  .hero-copy h1,
  .intro h2,
  .cinema-copy h2,
  .feature-copy h2,
  .band-copy h2,
  .motion-copy h2,
  .packaging-copy h2,
  .taste-copy h2,
  .farmer-copy h2,
  .closing-message h2,
  .order-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .global-nav,
  .hero-copy,
  .intro,
  .statement,
  .cinema,
  .feature-split,
  .motion-pair,
  .packaging-stage,
  .taste-copy,
  .farmer-stage,
  .closing-message,
  .order-stage,
  .order-form {
    padding-left: 0;
    padding-right: 0;
  }

  .order-stage > * {
    padding: 22px;
  }

  .order-form {
    margin: 0 12px 12px;
    padding: 20px;
  }

  .quick-order {
    bottom: 10px;
    width: min(100% - 16px, 960px);
  }
}

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

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