@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

:root {
  color-scheme: light;
  --ink: #0d3428;
  --ink-soft: #36584e;
  --green: #0b3a2c;
  --green-2: #145845;
  --mint: #8ee8b0;
  --cream: #f4efe6;
  --cream-2: #fbf8f1;
  --line: rgba(13, 52, 40, 0.14);
  --white: #fffdf8;
  --shadow: 0 28px 80px rgba(13, 52, 40, 0.16);
  --radius: 8px;
  --font-sans:
    "SUIT Variable",
    "Pretendard Variable",
    Pretendard,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-display:
    "SUIT Variable",
    "Pretendard Variable",
    Pretendard,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    sans-serif;
  font-family:
    var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

body.is-scrolled .site-header {
  border-color: rgba(13, 52, 40, 0.16);
  background: rgba(251, 248, 241, 0.9);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
strong,
button,
a {
  word-break: keep-all;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  background: rgba(244, 239, 230, 0.78);
  backdrop-filter: blur(22px);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 38px);
  color: rgba(13, 52, 40, 0.76);
  font-size: 15px;
  font-weight: 690;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--green-2);
}

.soft-hover-target {
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: var(--hover-origin, 50% 56%);
  will-change: transform;
}

.soft-hover-target.is-soft-hovered {
  transform:
    translate3d(var(--hover-x, 0), var(--hover-y, 0), 0)
    scale(var(--hover-scale, 1.018));
}

.nav-links .soft-hover-target,
.text-link.soft-hover-target,
.post-card a.soft-hover-target {
  display: inline-flex;
}

.cover {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px);
  color: var(--cream-2);
  background:
    linear-gradient(90deg, rgba(8, 42, 32, 0.98), rgba(8, 42, 32, 0.78) 38%, rgba(8, 42, 32, 0.1) 66%, rgba(8, 42, 32, 0.02)),
    var(--green);
}

.cover::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background:
    radial-gradient(circle at 12% 18%, rgba(142, 232, 176, 0.18), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 253, 248, 0.16), transparent 32%);
}

.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  opacity: 1;
}

.cover-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 42, 32, 0.98) 0%, rgba(8, 42, 32, 0.84) 33%, rgba(8, 42, 32, 0.24) 56%, rgba(8, 42, 32, 0.02) 100%),
    linear-gradient(180deg, rgba(8, 42, 32, 0.04), rgba(8, 42, 32, 0.22));
}

.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 52%;
  filter: saturate(1.08) contrast(0.98) brightness(1.02);
  transform: scale(1.02);
}

.cover-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 980px;
}

.cover-kicker {
  margin: 0 0 clamp(28px, 4vw, 54px);
  color: var(--mint);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 760;
  text-transform: uppercase;
}

.cover h1 {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(68px, 9.2vw, 134px);
  font-weight: 720;
  line-height: 0.94;
  letter-spacing: 0;
}

.cover h1 span {
  display: block;
}

.cover-copy p:not(.cover-kicker) {
  max-width: 720px;
  margin: clamp(30px, 4vw, 56px) 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.5;
}

.cover-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-self: end;
  flex-wrap: wrap;
  gap: 10px;
}

.cover-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.78);
  background: rgba(255, 253, 248, 0.05);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 720;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(90deg, var(--cream-2) 0 51%, var(--green) 51% 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: clamp(72px, 10vw, 124px) clamp(22px, 6vw, 86px);
}

.eyebrow,
.section-kicker,
.post-topic {
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.3;
}

.hero h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 690;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero h2 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  border-color: var(--green-2);
  color: var(--cream-2);
  background: var(--green-2);
}

.button-quiet {
  border-color: rgba(13, 52, 40, 0.26);
  color: var(--ink);
  background: transparent;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px);
  background:
    linear-gradient(130deg, rgba(142, 232, 176, 0.12), transparent 45%),
    radial-gradient(circle at 30% 18%, rgba(255, 253, 248, 0.12), transparent 30%),
    var(--green);
}

.hero-visual::before,
.blog-section::before,
.notes::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background:
    radial-gradient(circle at 28% 20%, rgba(142, 232, 176, 0.22), transparent 36%);
}

.ingredient-photo-board {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(620px, 100%);
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.ingredient-photo {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: var(--shadow);
}

.ingredient-photo.is-large {
  grid-row: span 2;
  min-height: 520px;
}

.ingredient-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.92);
}

.ingredient-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(8, 42, 32, 0.64));
}

.ingredient-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: var(--cream-2);
  font-size: 14px;
  font-weight: 760;
}

.intro,
.checklist,
.channels {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(36px, 7vw, 112px);
  padding: clamp(84px, 11vw, 150px) clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.intro {
  position: relative;
  overflow: hidden;
}

.intro::before,
.intro::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.intro::before {
  opacity: 0.34;
  background: url("https://images.pexels.com/photos/1640777/pexels-photo-1640777.jpeg?auto=compress&cs=tinysrgb&w=1800")
    center right / cover no-repeat;
  filter: saturate(1.08) contrast(1);
}

.intro::after {
  background:
    linear-gradient(90deg, rgba(244, 239, 230, 0.9), rgba(244, 239, 230, 0.58) 52%, rgba(244, 239, 230, 0.34));
}

.intro > * {
  position: relative;
  z-index: 1;
}

.intro h2,
.section-heading h2,
.notes h2,
.checklist h2,
.channels h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: 0;
}

.intro > p,
.section-heading > p,
.notes-copy > p,
.checklist-panel,
.channel-main .text-link {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
}

.concerns {
  padding: clamp(78px, 10vw, 132px) clamp(16px, 4vw, 60px);
  background: var(--cream-2);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vw, 62px);
  text-align: center;
}

.section-heading.light {
  position: relative;
  z-index: 1;
  color: var(--cream-2);
}

.section-heading.light h2 {
  max-width: 920px;
  margin: 0 auto;
}

.section-heading.light .section-kicker,
.section-heading.light p {
  color: rgba(255, 253, 248, 0.78);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.concern-card {
  min-height: 360px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  text-align: left;
  background: var(--cream);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.concern-card:hover,
.concern-card:focus-visible {
  color: var(--cream-2);
  background: var(--green);
  outline: none;
}

.concern-card.featured {
  color: var(--cream-2);
  background: var(--green);
}

.concern-card span {
  display: block;
  margin-bottom: 64px;
  color: currentColor;
  opacity: 0.58;
  font-size: 13px;
  font-weight: 800;
}

.concern-card strong {
  display: block;
  min-height: 76px;
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 640;
  line-height: 1.18;
}

.concern-card p {
  margin: 18px 0 28px;
  color: currentColor;
  opacity: 0.74;
  font-size: 16px;
  line-height: 1.58;
}

.concern-card small {
  display: block;
  color: currentColor;
  opacity: 0.86;
  font-size: 14px;
  font-weight: 760;
}

.blog-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 150px) clamp(16px, 4vw, 60px);
  background:
    radial-gradient(circle at 50% 0, rgba(142, 232, 176, 0.16), transparent 42%),
    var(--green);
}

.post-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 18px;
}

.post-feature,
.post-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.post-feature.is-highlighted,
.post-card.is-highlighted {
  box-shadow:
    0 0 0 4px rgba(142, 232, 176, 0.72),
    0 24px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.post-feature {
  display: grid;
  grid-template-rows: minmax(310px, 38vh) auto;
}

.post-image,
.thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d0c2;
}

.post-image::after,
.thumb::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(13, 52, 40, 0.06), rgba(13, 52, 40, 0.18));
}

.post-image img,
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.92);
  transition: transform 500ms ease;
}

.post-image:hover img,
.thumb:hover img {
  transform: scale(1.035);
}

.post-copy {
  padding: clamp(28px, 4vw, 48px);
}

.post-copy h3,
.post-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 720;
  line-height: 1.1;
  letter-spacing: 0;
}

.post-copy p:not(.post-topic),
.post-card p:not(.post-topic) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(20, 88, 69, 0.1);
  font-size: 13px;
  font-weight: 760;
}

.text-link,
.post-card a:not(.thumb) {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--green-2);
  font-weight: 800;
}

.text-link::after,
.post-card a:not(.thumb)::after {
  content: "→";
  margin-left: 8px;
}

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

.post-card {
  display: grid;
  grid-template-rows: 190px auto;
}

.post-card > div {
  padding: 24px;
}

.post-card h3 {
  font-size: clamp(23px, 2.2vw, 31px);
}

.post-card p:not(.post-topic) {
  margin-top: 14px;
  font-size: 15px;
}

.notes {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 96px);
  padding: clamp(84px, 11vw, 150px) clamp(22px, 5vw, 72px);
  color: var(--cream-2);
  background: var(--green);
}

.notes-copy,
.note-rail {
  position: relative;
  z-index: 1;
}

.notes .section-kicker,
.notes-copy > p {
  color: rgba(255, 253, 248, 0.75);
}

.note-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(136px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.14);
}

.note-rail article {
  min-height: 420px;
  padding: 28px 22px;
  background: rgba(255, 253, 248, 0.06);
}

.note-rail span {
  display: block;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
}

.note-rail strong {
  display: block;
  margin-top: 116px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 720;
}

.note-rail p {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.checklist {
  align-items: start;
  background:
    radial-gradient(circle at 28% 0, rgba(142, 232, 176, 0.18), transparent 30%),
    var(--cream-2);
}

.checklist-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.checklist-panel ol {
  display: grid;
  gap: 18px;
  margin: 0 0 32px;
  padding-left: 24px;
}

.channels {
  align-items: end;
}

.channel-main h2 {
  max-width: 760px;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.channel-list article {
  position: relative;
  min-height: 180px;
  padding: 24px;
  background: var(--cream-2);
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.channel-list article:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(13, 52, 40, 0.14);
  transform: translateY(-4px);
}

.channel-list span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 780;
}

.channel-list strong {
  display: block;
  margin-top: 26px;
  font-size: 42px;
  font-weight: 740;
  letter-spacing: 0;
}

.channel-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 1fr) auto;
  align-items: end;
  gap: 36px;
  padding: 52px clamp(22px, 5vw, 72px);
  color: rgba(255, 253, 248, 0.78);
  background: #082a20;
}

.site-footer .brand-mark {
  width: 74px;
  height: 74px;
  background: rgba(255, 253, 248, 0.08);
}

.site-footer strong {
  color: var(--cream-2);
  font-size: 20px;
}

.site-footer p,
.site-footer small {
  margin: 0;
  line-height: 1.55;
}

.site-footer small {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .hero,
  .intro,
  .notes,
  .checklist,
  .channels,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    background: var(--cream-2);
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 54px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .concern-card {
    min-height: 300px;
  }

  .note-rail {
    grid-template-columns: repeat(5, minmax(168px, 1fr));
    overflow-x: auto;
  }

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

  .cover-image {
    width: 100%;
    opacity: 0.7;
  }

  .site-footer small {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-copy {
    padding-top: 56px;
  }

  .cover {
    min-height: calc(100vh - 112px);
    padding: 32px 22px;
  }

  .cover-image {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .cover h1 {
    font-size: clamp(58px, 17vw, 76px);
  }

  .cover-copy {
    align-self: start;
    padding-top: 34px;
  }

  .cover-copy p:not(.cover-kicker) {
    max-width: 330px;
    font-size: 19px;
  }

  .hero h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    padding: 26px;
  }

  .ingredient-photo-board {
    grid-template-columns: 1fr;
  }

  .ingredient-photo,
  .ingredient-photo.is-large {
    min-height: 220px;
  }

  .intro,
  .concerns,
  .blog-section,
  .notes,
  .checklist,
  .channels {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro h2,
  .section-heading h2,
  .notes h2,
  .checklist h2,
  .channels h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .concern-grid,
  .post-grid,
  .channel-list {
    grid-template-columns: 1fr;
  }

  .post-feature {
    grid-template-rows: 310px auto;
  }

  .post-card {
    grid-template-rows: 210px auto;
  }

  .concern-card {
    min-height: 260px;
  }

  .concern-card span {
    margin-bottom: 42px;
  }

  .note-rail article {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soft-hover-target,
  .soft-hover-target.is-soft-hovered {
    transition: none;
    transform: none;
  }
}
