:root {
  --ink: #17130f;
  --soft-ink: #39312a;
  --grey: #766a60;
  --muted: #766a60;
  --paper: #f7f2ea;
  --paper-2: #ebe1d3;
  --line: rgba(52, 42, 34, 0.16);
  --clay: #a65332;
  --clay-2: #d6a27d;
  --sage: #596754;
  --night: #1f221d;
  --white: #fffaf3;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(30, 23, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(23, 19, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 15, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 74%);
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.line-copy span {
  display: block;
}

.line-copy span + span {
  margin-top: 0.22em;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(247, 242, 234, 0.72);
  backdrop-filter: blur(18px);
}

.nav.dark {
  color: var(--ink);
  background: rgba(247, 242, 234, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 620;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-21deg);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay-2);
}

.links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: currentColor;
  opacity: 0.82;
}

.links a:hover,
.links a.active {
  opacity: 1;
  background: rgba(255, 250, 243, 0.18);
}

.nav.dark .links a:hover,
.nav.dark .links a.active {
  background: rgba(166, 83, 50, 0.1);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 120px clamp(18px, 5vw, 72px) clamp(42px, 6vw, 74px);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  background: var(--night);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(247, 242, 234, 0.52), rgba(247, 242, 234, 0.02) 46%);
}

.hero-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--ink);
}

.hero-caption span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 420;
}

.hero-caption p {
  margin: 0;
  color: rgba(57, 49, 42, 0.74);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 250, 243, 0.76);
  font-size: 13px;
  font-weight: 520;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--clay-2);
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  font-weight: 560;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 250, 243, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.72;
  font-weight: 360;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 520;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #2a231d;
}

.hero .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button.ghost,
.hero .button.ghost {
  background: transparent;
  color: currentColor;
  border-color: rgba(255, 250, 243, 0.48);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro-section {
  padding: clamp(86px, 12vw, 156px) clamp(22px, 5vw, 72px);
  background: var(--paper);
  min-height: 100vh;
  display: grid;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.intro-copy {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.intro-copy span,
.scene-head span {
  display: block;
  margin-bottom: 20px;
  color: var(--grey);
  font-size: 18px;
  text-transform: uppercase;
}

.intro-copy h2 {
  margin-bottom: clamp(34px, 5vw, 58px);
  color: var(--ink);
  font-size: clamp(38px, 5.8vw, 76px);
  font-weight: 520;
}

.intro-copy p {
  max-width: 1080px;
  margin: 0 auto;
  color: var(--soft-ink);
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.24;
  font-weight: 340;
}

.intro-copy .intro-statement {
  max-width: 1280px;
  font-size: clamp(44px, 5.8vw, 88px);
  line-height: 1.16;
}

.intro-copy .line-copy span + span {
  margin-top: 0.36em;
}

.scene-section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 72px) clamp(86px, 11vw, 142px);
  background: #fffaf3;
  min-height: 100vh;
  display: grid;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scene-head {
  max-width: 1440px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: left;
}

.scene-head h2 {
  max-width: none;
  font-size: clamp(28px, 3.8vw, 48px);
  white-space: normal;
}

.section.night {
  background: var(--night);
  color: var(--white);
}

.offer-section .section-head {
  margin-bottom: clamp(32px, 5vw, 64px);
}

.offer-section .grid-3 {
  gap: clamp(18px, 3vw, 30px);
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.44fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.06;
  font-weight: 520;
  letter-spacing: 0;
}

.note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 340;
}

.night .note {
  color: rgba(255, 250, 243, 0.66);
}

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

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

.card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 22px 70px rgba(30, 23, 18, 0.08);
}

.night .card {
  background: rgba(255, 250, 243, 0.06);
  border-color: rgba(255, 250, 243, 0.14);
  box-shadow: none;
}

.card h3 {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.22;
}

.card p,
.card li {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.night .card p,
.night .card li {
  color: rgba(255, 250, 243, 0.68);
}

.route-grid {
  display: grid;
  gap: clamp(26px, 4vw, 52px);
}

.scene-link {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(560px, 0.45fr);
  min-height: 420px;
  color: var(--ink);
  background: transparent;
  border-top: 1px solid rgba(52, 42, 34, 0.12);
  padding-top: clamp(24px, 3vw, 34px);
}

.scene-link:hover .scene-image {
  transform: scale(0.992);
  filter: brightness(0.96);
}

.scene-image {
  display: block;
  min-height: 420px;
  background: var(--route-image) center / cover no-repeat;
  transition: transform 220ms ease, filter 220ms ease;
}

.scene-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 72px) 0 clamp(26px, 5vw, 72px) clamp(28px, 5vw, 86px);
}

.maker-route {
  --route-image: url("./assets/hero-maker.png");
}

.chef-route {
  --route-image: url("./assets/hero-chef.png");
}

.route-kicker,
.route-copy,
.route-action {
  position: static;
}

.route-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 520;
}

.scene-text strong {
  display: block;
  max-width: 100%;
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  font-weight: 420;
  letter-spacing: 0;
}

.route-copy {
  display: block;
  max-width: 100%;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 340;
}

.route-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid rgba(57, 49, 42, 0.32);
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 520;
  background: rgba(255, 250, 243, 0.72);
  white-space: nowrap;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
}

.num {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(166, 83, 50, 0.12);
  color: var(--clay);
  font-size: 12px;
  font-weight: 560;
}

.quote {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--clay);
  background: rgba(166, 83, 50, 0.08);
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 420;
}

.night .quote {
  background: rgba(214, 162, 125, 0.1);
  color: var(--white);
}

.steps {
  counter-reset: step;
}

.steps-title {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--clay);
  font-size: 22px;
  font-weight: 520;
}

.step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.step span {
  display: block;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.52fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.panel-body {
  padding: 24px;
}

.panel-body strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.panel-body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.76);
}

label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 520;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(166, 83, 50, 0.12);
}

.footer {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 56px);
  border-top: 1px solid rgba(52, 42, 34, 0.1);
  color: rgba(118, 106, 96, 0.84);
  font-size: 13px;
  background:
    linear-gradient(180deg, #f2eadf 0%, #ece2d5 100%);
  scroll-snap-align: end;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 540;
}

.footer p {
  margin: 0;
  line-height: 1.65;
}

.footer-brand p {
  color: rgba(118, 106, 96, 0.72);
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
}

.footer-column {
  display: grid;
  gap: 9px;
  align-content: start;
  line-height: 1.55;
}

.footer-column a {
  width: fit-content;
  color: var(--soft-ink);
}

.footer-label {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
}

.business-info {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 26px;
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }

  .links {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .section-head,
  .grid-2,
  .grid-3,
  .split,
  .route-grid,
  .scene-link {
    grid-template-columns: 1fr;
  }

  .scene-text {
    padding: 24px 0 18px;
  }
}

@media (max-width: 560px) {
  .button-row,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-content,
  .business-info {
    grid-template-columns: 1fr;
  }
}
