:root {
  --forest: #064737;
  --forest-deep: #023a2d;
  --forest-dark: #022d24;
  --cream: #f7f3e9;
  --ivory: #fffcf5;
  --gold: #8a5d14;
  --ink: #17231f;
  --muted: #64706b;
  --line: #d9d8cc;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  max-width: 100%;
  overflow-x: clip;
}

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

main,
section,
nav,
footer,
article,
div {
  min-width: 0;
}

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

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

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

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #a56f18;
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgba(255, 252, 245, 0.96);
  border-bottom: 1px solid rgba(6, 71, 55, 0.65);
  display: flex;
  height: 116px;
  justify-content: space-between;
  padding: 0 clamp(22px, 3vw, 52px);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  min-width: 0;
}

.brand-icon {
  display: block;
  flex: 0 0 auto;
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.brand-copy strong {
  color: var(--forest);
  font-size: clamp(18px, 1.5vw, 25px);
  letter-spacing: -.05em;
}

.brand-copy em {
  font-size: .75em;
  font-style: normal;
  margin-left: 3px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 1.9vw, 34px);
  height: 100%;
  margin-left: auto;
  margin-right: clamp(18px, 2.1vw, 34px);
}

.nav-group {
  align-items: center;
  display: flex;
  height: 100%;
}

.nav-group-trigger {
  align-items: center;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: 6px;
  height: 100%;
  padding: 0;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.nav-group-trigger > span {
  color: var(--gold);
  font-size: 11px;
}

.nav-group-direct .nav-group-trigger {
  gap: 0;
}

.nav-group-trigger::after {
  background: var(--gold);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  width: 100%;
}

.nav-group:hover .nav-group-trigger::after,
.nav-group:focus-within .nav-group-trigger::after,
.nav-group.is-active .nav-group-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown {
  background: var(--ivory);
  border-bottom: 1px solid var(--forest);
  box-shadow: 0 20px 40px rgba(3, 45, 34, .09);
  display: grid;
  grid-template-columns: minmax(260px, .72fr) 1.28fr;
  left: 0;
  opacity: 0;
  padding: 42px max(7vw, 34px) 46px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 116px;
  transform: translateY(-10px);
  transition: opacity .2s, transform .2s;
  visibility: hidden;
  z-index: 32;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown-intro {
  border-right: 1px solid var(--line);
  padding-right: 48px;
}

.nav-dropdown-intro small {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-dropdown-intro strong {
  color: var(--forest);
  display: block;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 30px;
  margin: 10px 0 14px;
}

.nav-dropdown-intro p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
  max-width: 340px;
}

.nav-dropdown-links {
  align-content: center;
  display: grid;
  gap: 0 38px;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  padding-left: 48px;
}

.nav-dropdown-links a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  min-height: 48px;
}

.nav-dropdown-links a span {
  color: var(--gold);
  transition: transform .2s;
}

.nav-dropdown-links a:hover span,
.nav-dropdown-links a:focus-visible span {
  transform: translateX(4px);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
}

.header-phone {
  color: var(--forest);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  white-space: nowrap;
}

.header-phone small {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .1em;
  margin-bottom: 3px;
}

.header-inquiry {
  align-items: center;
  background: var(--forest);
  color: #fff;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 20px;
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
}

.menu-toggle {
  background: none;
  border: 0;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.menu-toggle span {
  background: var(--forest);
  display: block;
  height: 2px;
  margin: 6px 0;
  transition: transform .2s ease;
  width: 24px;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(430px, 43%) 1fr;
  min-height: calc(100vh - 116px);
  overflow: hidden;
}

.hero-copy {
  align-items: flex-start;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(34px, 4.5vw, 76px) 54px;
  position: relative;
  z-index: 2;
}

.hero-copy::after {
  background: var(--ivory);
  bottom: -1px;
  clip-path: polygon(0 0, 100% 0, 48% 100%, 0 100%);
  content: "";
  left: 100%;
  position: absolute;
  top: 0;
  width: 170px;
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 14px;
  letter-spacing: .16em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.eyebrow span {
  background: currentColor;
  display: block;
  height: 1px;
  width: 38px;
}

.eyebrow.light {
  color: #d8aa58;
}

.hero h1 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(51px, 5.1vw, 82px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: 1.22;
  margin: 0;
}

.hero-description {
  color: #56615d;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.85;
  margin: 30px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 32px;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 28px;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}

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

.button-primary {
  background: var(--forest);
  color: #fff;
}

.button-primary:hover {
  background: var(--forest-dark);
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
}

.button-outline:hover {
  background: #edf2ed;
}

.button-cream {
  background: var(--cream);
  color: var(--forest);
}

.button-gold {
  background: var(--gold);
  color: #fff;
  justify-content: center;
}

.origin-stamp {
  color: var(--gold);
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: auto;
  padding-top: 32px;
  text-transform: uppercase;
}

.origin-stamp b {
  border-bottom: 1px solid var(--gold);
  font-size: 16px;
  padding-bottom: 7px;
  width: 34px;
}

.origin-stamp span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.65;
}

.hero-visual {
  background: linear-gradient(90deg, rgba(0, 0, 0, .05), transparent 24%),
    url("/images/hero-forest.png") center/cover no-repeat,
    linear-gradient(135deg, #a4b399, #1b4f39);
  min-height: 650px;
  position: relative;
}

.hero-card {
  background: rgba(2, 67, 51, .94);
  bottom: 0;
  color: #fff;
  min-width: 235px;
  padding: 32px 36px;
  position: absolute;
  right: 7%;
}

.hero-card > span {
  color: #e2aa43;
  font-size: 28px;
}

.hero-card p {
  font-size: 15px;
  line-height: 1.9;
  margin: 28px 0 0;
}

.trust-strip {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--forest);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 8%;
}

.trust-strip > div {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: center;
  min-height: 62px;
}

.trust-strip > div + div {
  border-left: 1px solid #9daaa5;
}

.trust-strip svg {
  fill: none;
  height: 48px;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 48px;
}

.trust-strip span {
  color: var(--forest);
  font-size: 18px;
  font-weight: 700;
}

.trust-strip small {
  color: var(--gold);
  display: block;
  font-size: 9px;
  letter-spacing: .14em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.section {
  padding: 130px max(7vw, 34px);
}

.section-heading h2,
.story-content h2,
.experience-card h2,
.contact-section h2 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(38px, 4vw, 64px);
  letter-spacing: -.055em;
  line-height: 1.28;
  margin: 0;
}

.intro-section {
  display: grid;
  gap: 60px 8vw;
  grid-template-columns: 1.1fr .9fr;
}

.intro-copy {
  align-self: end;
  max-width: 600px;
}

.intro-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  margin: 0 0 28px;
}

.text-link {
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 54px;
  padding-bottom: 8px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.value-grid {
  display: grid;
  gap: 20px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid article {
  background: #f3efe4;
  border-top: 2px solid var(--forest);
  padding: 34px;
}

.value-grid b {
  color: var(--gold);
  font-size: 13px;
}

.value-grid h3 {
  color: var(--forest);
  font-size: 22px;
  margin: 52px 0 14px;
}

.value-grid p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.story-section {
  background: var(--forest-deep);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 760px;
}

.story-image {
  background: linear-gradient(rgba(4, 54, 42, .16), rgba(4, 54, 42, .38)),
    url("/images/hero-forest.png") 70% center/cover no-repeat;
}

.story-content {
  align-items: flex-start;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(7vw, 56px);
}

.story-content h2,
.experience-card h2,
.contact-section h2 {
  color: #fff;
}

.process-list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  width: 100%;
}

.process-list li {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  gap: 24px;
  grid-template-columns: 42px 1fr;
  padding: 21px 0;
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.process-list b {
  color: #d8aa58;
  font-size: 12px;
}

.process-list span {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.process-list strong {
  color: #fff;
  display: inline-block;
  font-size: 17px;
  min-width: 108px;
}

.centered {
  margin: 0 auto 60px;
  max-width: 760px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  margin: 0 auto;
  max-width: 1220px;
  min-height: 590px;
}

.product-image {
  background: url("/images/product-ginseng.png") center/cover no-repeat,
    linear-gradient(145deg, #e7dfcb, #466b58);
}

.product-panel {
  background: #f1ede2;
  padding: 55px;
}

.product-tabs {
  border-bottom: 1px solid #c8c7bc;
  display: flex;
}

.product-tabs button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #727974;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: -1px;
  padding: 0 18px 16px;
}

.product-tabs button[aria-selected="true"] {
  border-color: var(--gold);
  color: var(--forest);
  font-weight: 800;
}

.product-note {
  color: var(--gold) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 52px 0 14px !important;
}

.product-panel h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 36px;
  letter-spacing: -.04em;
  margin: 0 0 20px;
}

.product-panel > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 42px;
}

.product-meta span {
  border: 1px solid #c9c7bb;
  border-radius: 20px;
  color: #58625e;
  font-size: 12px;
  padding: 7px 12px;
}

.product-disclaimer {
  color: #8b8e87;
  font-size: 12px;
  margin: 18px auto 0;
  max-width: 1220px;
}

.experience-section {
  min-height: 750px;
  overflow: hidden;
  position: relative;
}

.experience-image {
  background: linear-gradient(90deg, rgba(1, 38, 28, .72), rgba(1, 38, 28, .08)),
    url("/images/farm-experience.png") center/cover no-repeat,
    #42644f;
  inset: 0;
  position: absolute;
}

.experience-card {
  background: rgba(3, 57, 44, .94);
  color: #fff;
  margin: 100px max(7vw, 34px);
  max-width: 590px;
  padding: 62px;
  position: relative;
}

.experience-card > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
  line-height: 1.9;
  margin: 28px 0;
}

.experience-card ul {
  border-bottom: 1px solid rgba(255,255,255,.2);
  border-top: 1px solid rgba(255,255,255,.2);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 32px;
  padding: 24px 0;
}

.experience-card li::before {
  color: #d8aa58;
  content: "•";
  margin-right: 10px;
}

.news-section {
  background: #f2eee3;
}

.news-section > .section-heading {
  margin-bottom: 56px;
}

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

.news-grid a {
  background: var(--ivory);
  padding-bottom: 30px;
  transition: transform .25s, box-shadow .25s;
}

.news-grid a:hover {
  box-shadow: 0 18px 38px rgba(3, 42, 32, .09);
  transform: translateY(-6px);
}

.news-thumb {
  background-size: cover;
  display: block;
  height: 260px;
}

.news-thumb-one {
  background-image: url("/images/hero-forest.png");
  background-position: center;
}

.news-thumb-two {
  background-image: url("/images/product-ginseng.png");
  background-position: center;
}

.news-thumb-three {
  background-image: url("/images/farm-experience.png");
  background-position: center;
}

.news-grid small,
.news-grid h3,
.news-grid p {
  display: block;
  margin-left: 28px;
  margin-right: 28px;
}

.news-grid small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-top: 28px;
}

.news-grid h3 {
  color: var(--forest);
  font-size: 21px;
  margin-bottom: 14px;
  margin-top: 10px;
}

.news-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  background: var(--forest-dark);
  color: #fff;
  display: grid;
  gap: 80px;
  grid-template-columns: .85fr 1.15fr;
  padding: 120px max(7vw, 34px);
}

.contact-section > div > p:last-child {
  color: rgba(255,255,255,.64);
  line-height: 1.9;
  max-width: 480px;
}

.contact-form {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.27);
  border-radius: 0;
  color: #fff;
  outline: none;
  padding: 16px;
  width: 100%;
}

.contact-form select option {
  color: #111;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #d8aa58;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .privacy {
  align-items: center;
  color: rgba(255,255,255,.64);
  flex-direction: row;
  font-size: 12px;
}

.contact-form .privacy input {
  accent-color: var(--gold);
  width: auto;
}

.site-footer {
  align-items: center;
  background: #011e18;
  color: rgba(255,255,255,.48);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.6fr) max-content;
  padding: 38px max(3vw, 24px);
}

.footer-left {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.footer-brand {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 16px;
  min-width: 0;
}

.footer-brand-icon {
  display: block;
  filter: none;
  flex: 0 0 auto;
  height: 68px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  width: 68px;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.footer-brand-copy strong {
  color: #fff;
  font-size: 20px;
}

.footer-brand-copy span,
.footer-copyright,
.footer-links {
  font-size: 12px;
}

.footer-brand-copy span {
  line-height: 1.6;
}

.footer-copyright {
  grid-column: auto;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
}

.footer-info {
  align-items: center;
  display: grid;
  font-size: 12px;
  gap: 12px 26px;
  grid-template-columns: max-content max-content max-content minmax(0, 1fr);
  justify-content: center;
  line-height: 1.6;
  min-width: 0;
}

.footer-info > span,
.footer-info > a {
  align-self: center;
  color: inherit;
  display: block;
  line-height: inherit;
  margin: 0;
  min-height: 0;
  white-space: nowrap;
}

.footer-links {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  white-space: nowrap;
}

.footer-links a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.footer-info a {
  display: block;
  line-height: inherit;
  min-height: 0;
}

.footer-links strong {
  color: rgba(255,255,255,.78);
}

.mobile-quick-actions {
  display: none;
}

.sub-visual {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(1, 42, 32, .93), rgba(1, 42, 32, .38)),
    url("/images/hero-forest.png") center 48%/cover no-repeat;
  color: #fff;
  display: flex;
  min-height: 390px;
  padding: 70px max(7vw, 34px);
  position: relative;
}

.sub-visual::after {
  border: 1px solid rgba(216, 170, 88, .35);
  border-radius: 50%;
  content: "";
  height: 220px;
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
}

.sub-visual-products {
  background:
    linear-gradient(90deg, rgba(1, 42, 32, .94), rgba(1, 42, 32, .32)),
    url("/images/product-ginseng.png") center 55%/cover no-repeat;
}

.sub-visual-experience {
  background:
    linear-gradient(90deg, rgba(1, 42, 32, .94), rgba(1, 42, 32, .25)),
    url("/images/farm-experience.png") center 48%/cover no-repeat;
}

.sub-visual-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.sub-visual .eyebrow {
  margin-bottom: 18px;
}

.sub-visual h1 {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(44px, 4.5vw, 66px);
  letter-spacing: -.055em;
  margin: 0 0 18px;
}

.sub-visual-inner > p:last-child {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.breadcrumb {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #87908c;
  display: flex;
  font-size: 11px;
  gap: 14px;
  min-height: 54px;
  padding: 0 max(7vw, 34px);
}

.breadcrumb strong {
  color: var(--forest);
}

.local-nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 66px;
  overflow-x: auto;
  padding: 0 24px;
}

.local-nav a {
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #6e7773;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  margin: 0 20px;
  white-space: nowrap;
}

.local-nav a.is-active {
  border-color: var(--gold);
  color: var(--forest);
}

.sub-content {
  padding: 110px max(7vw, 34px) 130px;
}

.sub-heading {
  margin: 0 auto 70px;
  max-width: 760px;
  text-align: center;
}

.sub-heading small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.sub-heading h2 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -.05em;
  margin: 13px 0 18px;
}

.sub-heading p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.content-framework {
  border-top: 1px solid var(--forest);
  margin: 0 auto;
  max-width: 1120px;
}

.content-framework article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 48px 1fr;
  min-height: 132px;
  padding: 24px 18px;
}

.content-framework article > b {
  color: var(--gold);
  font-size: 13px;
}

.content-framework h3 {
  color: var(--forest);
  font-size: 21px;
  margin: 0 0 9px;
}

.content-framework p {
  color: #909590;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.next-step-note {
  align-items: center;
  background: #f1ede2;
  display: grid;
  gap: 38px;
  grid-template-columns: auto 1fr;
  margin: 48px auto 0;
  max-width: 1120px;
  padding: 28px 34px;
}

.next-step-note span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.next-step-note p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.sub-contact-cta {
  align-items: center;
  background: var(--forest);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 72px max(7vw, 34px);
}

.sub-contact-cta small {
  color: #d8aa58;
  font-size: 12px;
  font-weight: 700;
}

.sub-contact-cta h2 {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.045em;
  line-height: 1.35;
  margin: 12px 0 0;
}

.sub-contact-cta > div:last-child {
  display: flex;
  gap: 12px;
}

.button-outline-light {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

@media (max-width: 1400px) and (min-width: 1181px) {
  .site-footer {
    align-items: start;
    gap: 28px 36px;
    grid-template-columns: minmax(0, 1fr) max-content;
  }

  .footer-left {
    grid-column: 1 / -1;
  }

  .footer-info {
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
  }

  .footer-links {
    align-self: center;
    justify-content: flex-end;
  }
}

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

  .brand {
    gap: 10px;
  }

  .brand-icon {
    height: 48px;
    width: 48px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy em {
    display: none;
  }

  .site-footer {
    align-items: start;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .footer-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copyright {
    white-space: normal;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    align-items: stretch;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    height: calc(100dvh - 78px);
    left: 0;
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px 20px 34px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-group {
    align-items: stretch;
    display: block;
    height: auto;
  }

  .nav-group-trigger {
    border-bottom: 1px solid var(--line);
    height: 58px;
    justify-content: space-between;
    width: 100%;
  }

  .nav-group-trigger::after {
    display: none;
  }

  .nav-dropdown {
    background: #f4f0e6;
    border: 0;
    box-shadow: none;
    display: none;
    grid-template-columns: 1fr;
    opacity: 1;
    padding: 10px 18px 18px;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
  }

  .nav-group.is-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown-intro {
    display: none;
  }

  .nav-dropdown-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .nav-dropdown-links a {
    font-size: 13px;
    min-height: 44px;
    padding: 0 4px;
  }

  .nav-dropdown-links a:nth-child(odd) {
    margin-right: 12px;
  }

  .hero {
    grid-template-columns: minmax(390px, 46%) 1fr;
    min-height: 720px;
  }

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }
}

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

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-copy {
    min-height: 610px;
    padding: 72px 24px 40px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(44px, 12.5vw, 62px);
  }

  .hero-description {
    font-size: 16px;
  }

  .desktop-break {
    display: none;
  }

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

  .hero-card {
    right: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 16px 24px;
  }

  .trust-strip > div {
    justify-content: flex-start;
    padding: 14px;
  }

  .trust-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 90px 24px;
  }

  .intro-section,
  .story-section,
  .product-showcase,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-section {
    gap: 38px;
  }

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

  .value-grid h3 {
    margin-top: 26px;
  }

  .story-image {
    min-height: 480px;
  }

  .story-content {
    padding: 80px 24px;
  }

  .process-list strong {
    display: block;
    margin-bottom: 5px;
  }

  .product-image {
    min-height: 470px;
  }

  .product-panel {
    padding: 36px 24px;
  }

  .product-tabs button {
    flex: 1;
    padding-left: 6px;
    padding-right: 6px;
  }

  .experience-section {
    min-height: 880px;
  }

  .experience-image {
    background-position: 60% center;
  }

  .experience-card {
    margin: 260px 20px 30px;
    padding: 42px 24px;
  }

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

  .contact-section {
    gap: 48px;
    padding: 90px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 42px 24px 104px;
  }

  .mobile-quick-actions {
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 28;
  }

  .mobile-quick-actions a {
    align-items: center;
    background: var(--forest);
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 58px;
  }

  .mobile-quick-actions a:last-child {
    background: var(--gold);
  }

  .sub-visual {
    min-height: 310px;
    padding: 64px 24px;
  }

  .sub-visual::after {
    display: none;
  }

  .sub-visual h1 {
    font-size: 42px;
  }

  .breadcrumb {
    gap: 9px;
    overflow-x: auto;
    padding: 0 24px;
    white-space: nowrap;
  }

  .local-nav {
    justify-content: flex-start;
    padding: 0 12px;
  }

  .local-nav a {
    align-items: center;
    display: inline-flex;
    margin: 0 13px;
    min-height: 48px;
  }

  .sub-content {
    padding: 80px 24px 90px;
  }

  .sub-heading {
    margin-bottom: 50px;
  }

  .content-framework article {
    gap: 14px;
    grid-template-columns: 34px 1fr;
    padding: 22px 4px;
  }

  .next-step-note {
    gap: 10px;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .sub-contact-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    padding: 62px 24px;
  }

  .sub-contact-cta > div:last-child {
    flex-direction: column;
    width: 100%;
  }
}

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

  * {
    transition: none !important;
  }
}

/* Promotion center */
.promotion-page,
.support-detail-page,
.policy-content {
  margin: 0 auto;
  max-width: 1380px;
}

.board-tools {
  align-items: end;
  background: #f4f0e5;
  border-top: 2px solid var(--forest);
  display: grid;
  gap: 18px;
  grid-template-columns: 230px minmax(320px, 1fr);
  margin-top: 54px;
  padding: 24px;
}

.board-tools label {
  display: grid;
  gap: 9px;
}

.board-tools label > span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.board-tools select,
.board-tools input {
  background: var(--ivory);
  border: 1px solid #cbcbbf;
  border-radius: 0;
  color: var(--ink);
  height: 52px;
  outline: none;
  padding: 0 16px;
}

.board-tools select:focus,
.board-tools input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(6, 71, 55, .1);
}

.board-search {
  grid-template-columns: 1fr 88px;
}

.board-search > span {
  grid-column: 1 / -1;
}

.board-search button {
  background: var(--forest);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.empty-board {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding: 70px 24px;
  text-align: center;
}

.empty-board-icon {
  align-items: center;
  border: 1px solid #c8c9bd;
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-family: Georgia, serif;
  font-size: 26px;
  height: 76px;
  justify-content: center;
  margin-bottom: 24px;
  width: 76px;
}

.empty-board small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.empty-board h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(25px, 2.4vw, 36px);
  margin: 10px 0 13px;
}

.empty-board p,
.board-template-note p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.board-template-note {
  align-items: center;
  background: var(--forest);
  color: #fff;
  display: flex;
  gap: 34px;
  justify-content: center;
  padding: 24px 30px;
}

.board-template-note b {
  white-space: nowrap;
}

.board-template-note p {
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.board-detail-empty {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 2px solid var(--forest);
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 90px 20px;
  text-align: center;
}

.board-detail-empty > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.board-detail-empty h2 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(30px, 3.4vw, 46px);
  margin: 14px 0;
}

.board-detail-empty p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

.board-detail-empty a {
  border: 1px solid var(--forest);
  color: var(--forest);
  font-weight: 800;
  margin-top: 24px;
  padding: 15px 24px;
}

.board-detail-empty a b {
  color: var(--gold);
  margin-left: 18px;
}

/* Customer support */
.support-step-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
}

.support-step-grid li {
  background: #f2eee2;
  min-height: 280px;
  padding: 34px 30px;
}

.support-step-grid li:nth-child(even) {
  background: var(--forest);
  color: #fff;
}

.support-step-grid b,
.delivery-guide-grid article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
}

.support-step-grid h3 {
  font-size: 20px;
  margin: 70px 0 15px;
}

.support-step-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.support-step-grid li:nth-child(even) p {
  color: rgba(255, 255, 255, .72);
}

.support-callout {
  align-items: center;
  background: var(--forest-dark);
  color: #fff;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr auto;
  margin-top: 60px;
  padding: 50px clamp(30px, 5vw, 72px);
}

.support-callout small {
  color: #d1ad68;
  font-weight: 800;
  letter-spacing: .12em;
}

.support-callout h3 {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(23px, 2.3vw, 34px);
  margin: 10px 0;
}

.support-callout p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0;
}

.support-callout > div:last-child {
  display: grid;
  gap: 10px;
}

.support-callout a {
  border: 1px solid rgba(255, 255, 255, .55);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: space-between;
  min-width: 250px;
  padding: 15px 18px;
}

.support-callout a:first-child {
  background: var(--cream);
  color: var(--forest);
}

.delivery-guide-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
}

.delivery-guide-grid article {
  border: 1px solid var(--line);
  min-height: 250px;
  padding: 32px;
  transition: border-color .25s, transform .25s;
}

.delivery-guide-grid article:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.delivery-guide-grid small {
  color: var(--muted);
  float: right;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.delivery-guide-grid h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 25px;
  margin: 70px 0 12px;
}

.delivery-guide-grid p,
.delivery-notice p {
  color: var(--muted);
  line-height: 1.8;
}

.delivery-notice {
  align-items: center;
  background: #f2eee2;
  border-left: 4px solid var(--gold);
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding: 24px 28px;
}

.delivery-notice b {
  color: var(--forest);
  white-space: nowrap;
}

.delivery-notice p {
  margin: 0;
}

.faq-list {
  border-top: 2px solid var(--forest);
  margin-top: 56px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 24px;
  grid-template-columns: 90px 1fr 30px;
  list-style: none;
  min-height: 88px;
  padding: 0 22px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.faq-list summary > b {
  font-size: 17px;
}

.faq-list summary i {
  color: var(--forest);
  font-size: 23px;
  font-style: normal;
  transition: transform .2s;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > div {
  background: #f3efe4;
  display: flex;
  gap: 20px;
  line-height: 1.8;
  padding: 25px 38px 25px 132px;
}

.faq-list details > div strong {
  color: var(--gold);
  font-family: Georgia, serif;
}

.faq-list details > div p {
  color: var(--muted);
  margin: 0;
}

.faq-contact {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.faq-contact p {
  color: var(--muted);
  margin-right: 20px;
}

.faq-contact a {
  background: var(--forest);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 15px 20px;
}

.faq-contact a span {
  color: #d9b56e;
  margin-left: 20px;
}

/* Inquiry */
.inquiry-form {
  background: #f2eee3;
  border-top: 2px solid var(--forest);
  display: grid;
  gap: 26px 22px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
  padding: clamp(28px, 5vw, 68px);
}

.demo-state {
  align-items: start;
  background: #fff8e8;
  border: 1px solid #d7bb7f;
  display: grid;
  gap: 8px 22px;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  margin-bottom: 10px;
  padding: 20px 22px;
}

.demo-state b {
  color: #825b10;
  white-space: nowrap;
}

.demo-state p {
  color: #735f38;
  line-height: 1.65;
  margin: 0;
}

.inquiry-field {
  display: grid;
  gap: 10px;
}

.inquiry-field-full {
  grid-column: 1 / -1;
}

.inquiry-field label {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-field label span {
  color: #a16422;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  background: var(--ivory);
  border: 1px solid #cacbbf;
  border-radius: 0;
  outline: 0;
  padding: 16px;
  width: 100%;
}

.inquiry-field input,
.inquiry-field select {
  height: 56px;
}

.inquiry-field textarea {
  line-height: 1.7;
  resize: vertical;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(6, 71, 55, .1);
}

.privacy-check {
  align-items: flex-start;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 12px;
  line-height: 1.65;
}

.privacy-check input {
  accent-color: var(--forest);
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.privacy-check b {
  color: var(--ink);
}

.inquiry-submit {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.inquiry-submit button {
  align-items: center;
  background: var(--forest);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 800;
  gap: 50px;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  transition: background .2s, transform .2s;
}

.inquiry-submit button:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
}

.inquiry-submit button span {
  color: #d7b46f;
}

.inquiry-submit small {
  color: #8b6a2d;
}

.inquiry-not-sent {
  background: #fff;
  border-left: 4px solid #a36d20;
  color: #6f541f;
  padding: 20px 22px;
}

.inquiry-not-sent b {
  color: #744d0f;
}

.inquiry-not-sent p {
  margin: 5px 0 0;
}

/* Policy placeholders */
.policy-preparing {
  align-items: center;
  background: #f2eee3;
  border-top: 2px solid var(--forest);
  display: flex;
  gap: 26px;
  margin-top: 50px;
  min-height: 220px;
  padding: 40px;
}

.policy-preparing > span {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-family: Georgia, serif;
  font-size: 28px;
  height: 60px;
  justify-content: center;
  width: 60px;
}

.policy-preparing h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 26px;
  margin: 0 0 9px;
}

.policy-preparing p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .board-tools,
  .support-callout {
    grid-template-columns: 1fr;
  }

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

  .delivery-guide-grid {
    grid-template-columns: 1fr;
  }

  .support-callout a {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .board-tools {
    padding: 18px;
  }

  .board-search {
    grid-template-columns: 1fr 72px;
  }

  .board-template-note,
  .delivery-notice,
  .faq-contact,
  .policy-preparing {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-step-grid {
    grid-template-columns: 1fr;
  }

  .support-step-grid li {
    min-height: 220px;
  }

  .support-step-grid h3 {
    margin-top: 40px;
  }

  .faq-list summary {
    gap: 12px;
    grid-template-columns: 64px 1fr 22px;
    min-height: 78px;
    padding: 0 12px;
  }

  .faq-list summary > b {
    font-size: 15px;
  }

  .faq-list details > div {
    padding: 22px;
  }

  .faq-contact {
    gap: 12px;
  }

  .faq-contact p {
    margin: 0;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .inquiry-field-full {
    grid-column: auto;
  }

  .demo-state {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .inquiry-submit button {
    min-width: 100%;
  }
}

/* Main page completion */
.home-page {
  overflow: hidden;
}

.home-page [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.home-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Company and forest-ginseng detail pages */
.detail-page {
  margin: 0 auto;
  max-width: 1260px;
}

.detail-intro {
  margin: 0 auto 70px;
  max-width: 820px;
  text-align: center;
}

.detail-intro h2 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -.055em;
  line-height: 1.3;
  margin: 18px 0 22px;
}

.detail-intro > p:last-child {
  color: var(--muted);
  line-height: 1.9;
  margin: 0 auto;
  max-width: 680px;
}

.environment-intro {
  max-width: none;
}

.environment-intro h2,
.environment-intro > p:last-child {
  max-width: none;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.detail-photo {
  background: #dfe5dc;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.detail-photo img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.greeting-lead {
  align-items: center;
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(340px, .85fr) 1.15fr;
}

.detail-photo-tall {
  min-height: 650px;
}

.detail-photo-tall img {
  object-position: center;
}

.detail-photo-tall::after {
  background: linear-gradient(transparent 65%, rgba(2,45,36,.72));
  content: "";
  inset: 0;
  position: absolute;
}

.detail-photo-tall > span {
  bottom: 28px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  left: 30px;
  letter-spacing: .16em;
  position: absolute;
  z-index: 1;
}

.greeting-copy h2 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -.055em;
  line-height: 1.35;
  margin: 20px 0 32px;
}

.greeting-copy > p:not(.eyebrow) {
  color: #53625c;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 20px;
}

.signature {
  align-items: baseline;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 42px;
}

.signature small {
  color: var(--muted);
}

.signature strong {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 28px;
  letter-spacing: .15em;
}

.promise-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--forest);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
}

.promise-grid article {
  min-height: 230px;
  padding: 38px;
}

.promise-grid article + article {
  border-left: 1px solid var(--line);
}

.promise-grid b,
.business-grid b,
.story-feature-grid b {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .12em;
}

.promise-grid h3,
.business-grid h3,
.story-feature-grid h3 {
  color: var(--forest);
  font-size: 23px;
  margin: 38px 0 13px;
}

.promise-grid p,
.business-grid p,
.story-feature-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.profile-panel {
  background: var(--forest);
  color: #fff;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  padding: clamp(40px, 6vw, 82px);
}

.profile-title {
  border-right: 1px solid rgba(255,255,255,.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 60px;
}

.profile-title small {
  color: #d9ad5e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 20px;
}

.profile-title strong {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -.05em;
  line-height: 1.45;
}

.profile-panel dl {
  margin: 0;
  padding-left: 60px;
}

.profile-panel dl > div {
  border-bottom: 1px solid rgba(255,255,255,.18);
  display: grid;
  gap: 24px;
  grid-template-columns: 130px 1fr;
  padding: 17px 0;
}

.profile-panel dt {
  color: #d9ad5e;
  font-size: 12px;
  font-weight: 800;
}

.profile-panel dd {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.profile-panel dd small {
  color: rgba(255,255,255,.58);
  display: inline-block;
  font-size: 10px;
  margin-left: 9px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}

.business-grid article {
  border: 1px solid var(--line);
  border-right: 0;
  min-height: 250px;
  padding: 34px;
}

.business-grid article:last-child {
  border-right: 1px solid var(--line);
}

.source-note {
  color: #8a918d;
  font-size: 12px;
  line-height: 1.7;
  margin: 24px 0 0;
  text-align: right;
}

.vision-statement {
  background: linear-gradient(115deg, rgba(2,45,36,.95), rgba(6,71,55,.82)), url("/images/ppt-forest-3.jpeg") center/cover;
  color: #fff;
  min-height: 410px;
  padding: clamp(48px, 7vw, 90px);
}

.vision-statement small {
  color: #e1b562;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.vision-statement p {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -.05em;
  line-height: 1.45;
  margin: 45px 0 0;
}

.vision-statement strong {
  color: #f2cf89;
  font-weight: 400;
}

.value-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-detail-grid article {
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  min-height: 310px;
  padding: 35px 30px;
  position: relative;
}

.value-detail-grid article:last-child {
  border-right: 1px solid var(--line);
}

.value-detail-grid article > span {
  color: #d1d4cc;
  font-family: Georgia, serif;
  font-size: 40px;
}

.value-detail-grid small {
  color: var(--gold);
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-top: 38px;
}

.value-detail-grid h3 {
  color: var(--forest);
  font-size: 20px;
  margin: 13px 0;
}

.value-detail-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.vision-road {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 75px auto 0;
  max-width: 960px;
  position: relative;
}

.vision-road::before {
  background: var(--line);
  content: "";
  height: 1px;
  left: 15%;
  position: absolute;
  right: 15%;
  top: 13px;
}

.vision-road > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  z-index: 1;
}

.vision-road b {
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  padding: 7px 12px;
}

.vision-road span {
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.network-map {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1060px;
  position: relative;
}

.network-center {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 230px;
  justify-content: center;
  left: calc(50% - 115px);
  position: absolute;
  text-align: center;
  top: calc(50% - 115px);
  width: 230px;
  z-index: 2;
}

.network-center small {
  color: #dbaf60;
  font-size: 9px;
  letter-spacing: .14em;
}

.network-center strong {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 24px;
  line-height: 1.45;
  margin-top: 13px;
}

.network-node {
  border: 1px solid var(--line);
  min-height: 250px;
  padding: 40px;
}

.network-node:nth-of-type(odd) {
  padding-right: 145px;
}

.network-node:nth-of-type(even) {
  padding-left: 145px;
}

.network-node b {
  color: var(--gold);
  font-size: 11px;
}

.network-node h3 {
  color: var(--forest);
  font-size: 18px;
  margin: 52px 0 12px;
}

.network-node p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.location-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 590px;
}

.location-info {
  background: var(--forest);
  color: #fff;
  padding: clamp(42px, 6vw, 80px);
}

.location-info > small {
  color: #e0b35f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.location-info h3 {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(28px, 3.2vw, 43px);
  letter-spacing: -.045em;
  line-height: 1.45;
  margin: 28px 0 54px;
}

.location-info dl {
  border-top: 1px solid rgba(255,255,255,.22);
  margin: 0;
}

.location-info dl > div {
  border-bottom: 1px solid rgba(255,255,255,.22);
  display: grid;
  gap: 18px;
  grid-template-columns: 90px 1fr;
  padding: 22px 0;
}

.location-info dt {
  color: #e0b35f;
  font-size: 11px;
  font-weight: 800;
}

.location-info dd {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.location-actions {
  display: flex;
  gap: 10px;
  margin-top: 38px;
}

.location-actions a {
  border: 1px solid rgba(255,255,255,.55);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  min-width: 170px;
  padding: 16px;
}

.map-visual {
  background: #e8e6db;
  min-height: 590px;
  overflow: hidden;
  position: relative;
}

.map-visual iframe {
  border: 0;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.definition-hero {
  background: var(--forest);
  color: #fff;
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
  padding: clamp(46px, 7vw, 90px);
}

.definition-hero h2 {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.05em;
  line-height: 1.4;
  margin: 30px 0 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

.definition-hero .no-break {
  white-space: nowrap;
}

.definition-hero blockquote {
  border-left: 1px solid rgba(255,255,255,.3);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.75;
  margin: 0;
  padding: 26px 0 26px clamp(35px, 5vw, 75px);
}

.definition-hero cite {
  color: #e2ba70;
  display: block;
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 11px;
  font-style: normal;
  letter-spacing: .08em;
  margin-top: 24px;
}

.story-feature-grid {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.story-feature-grid article {
  min-height: 250px;
  padding: 42px;
}

.story-feature-grid article + article {
  border-left: 1px solid var(--line);
}

.story-note {
  align-items: center;
  background: #f0ebdf;
  display: grid;
  gap: 34px;
  grid-template-columns: 110px 1fr;
  margin-top: 55px;
  padding: 30px 38px;
}

.story-note span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.story-note p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.environment-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.35fr .65fr;
}

.environment-main {
  min-height: 600px;
}

.environment-main img {
  object-position: center 45%;
}

.environment-side {
  min-height: 600px;
}

.environment-factors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.environment-factors article {
  align-items: flex-start;
  border: 1px solid var(--line);
  border-right: 0;
  display: grid;
  gap: 22px;
  grid-template-columns: 42px 1fr;
  min-height: 175px;
  padding: 34px;
}

.environment-factors article:last-child {
  border-right: 1px solid var(--line);
}

.environment-factors article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 31px;
}

.environment-factors h3 {
  color: var(--forest);
  margin: 2px 0 12px;
}

.environment-factors p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.process-photo-strip {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  min-height: 410px;
}

.process-photo-strip > div:last-child {
  background: var(--forest);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.process-photo-strip small {
  color: #e1b45e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.process-photo-strip strong {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -.04em;
  line-height: 1.5;
  margin-top: 25px;
}

.story-process-list {
  counter-reset: none;
  list-style: none;
  margin: 75px auto 0;
  max-width: 980px;
  padding: 0;
}

.story-process-list li {
  display: grid;
  gap: 28px;
  grid-template-columns: 44px 1px 1fr;
  min-height: 145px;
}

.story-process-list li > b {
  color: var(--gold);
  font-size: 12px;
  padding-top: 4px;
}

.story-process-list li > span {
  background: var(--line);
  height: 100%;
  position: relative;
}

.story-process-list li > span::before {
  background: var(--ivory);
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
  height: 13px;
  left: -6px;
  position: absolute;
  top: 2px;
  width: 13px;
}

.story-process-list h3 {
  color: var(--forest);
  font-size: 22px;
  margin: 0 0 12px;
}

.story-process-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

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

.quality-grid article {
  background: #f0ece1;
  min-height: 330px;
  padding: 36px 30px;
  position: relative;
}

.quality-grid article:nth-child(even) {
  background: var(--forest);
  color: #fff;
}

.quality-grid small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.quality-grid article > span {
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--forest);
  display: flex;
  font-size: 11px;
  height: 76px;
  margin: 44px 0 30px;
  align-items: center;
  justify-content: center;
  width: 76px;
}

.quality-grid article:nth-child(even) > span {
  color: #e5bd72;
}

.quality-grid h3 {
  color: var(--forest);
  font-size: 20px;
  margin: 0 0 13px;
}

.quality-grid article:nth-child(even) h3 {
  color: #fff;
}

.quality-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.quality-grid article:nth-child(even) p {
  color: rgba(255,255,255,.7);
}

.quality-banner {
  align-items: center;
  border: 1px solid var(--line);
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 1fr;
  margin-top: 65px;
  padding: clamp(40px, 6vw, 75px);
}

.quality-banner small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.quality-banner h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -.04em;
  line-height: 1.5;
  margin: 24px 0 0;
}

.quality-banner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quality-banner li {
  border-bottom: 1px solid var(--line);
  color: #4e5d56;
  font-size: 14px;
  padding: 16px 0;
}

.quality-banner li span {
  color: var(--gold);
  margin-right: 12px;
}

.official-guide {
  align-items: center;
  background: #eef0e9;
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  padding: 28px 34px;
}

.official-guide > div {
  align-items: center;
  display: flex;
  gap: 22px;
}

.official-guide b {
  color: var(--gold);
  font-size: 12px;
  white-space: nowrap;
}

.official-guide p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.official-guide a {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  margin-left: 25px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .greeting-lead,
  .profile-panel,
  .location-layout,
  .definition-hero,
  .process-photo-strip,
  .quality-banner {
    grid-template-columns: 1fr;
  }

  .greeting-lead {
    gap: 45px;
  }

  .detail-photo-tall {
    min-height: 520px;
  }

  .promise-grid,
  .business-grid,
  .value-detail-grid,
  .story-feature-grid,
  .environment-factors,
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-grid article:nth-child(3),
  .story-feature-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .business-grid article:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .value-detail-grid article:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .profile-title {
    border-bottom: 1px solid rgba(255,255,255,.22);
    border-right: 0;
    padding: 0 0 40px;
  }

  .profile-panel dl {
    padding: 35px 0 0;
  }

  .network-map {
    grid-template-columns: 1fr;
  }

  .network-center {
    border-radius: 0;
    height: auto;
    left: auto;
    padding: 38px;
    position: relative;
    top: auto;
    width: 100%;
  }

  .network-node:nth-of-type(n) {
    min-height: 200px;
    padding: 34px;
  }

  .network-node h3 {
    margin-top: 28px;
  }

  .environment-gallery {
    grid-template-columns: 1fr;
  }

  .environment-main,
  .environment-side {
    min-height: 460px;
  }

  .quality-grid article {
    min-height: 290px;
  }
}

@media (max-width: 620px) {
  .detail-intro {
    margin-bottom: 45px;
  }

  .detail-intro h2 {
    font-size: 34px;
  }

  .detail-intro > p:last-child {
    font-size: 14px;
  }

  .environment-intro h2,
  .environment-intro > p:last-child {
    white-space: normal;
  }

  .detail-photo-tall {
    min-height: 420px;
  }

  .greeting-copy h2 {
    font-size: 32px;
  }

  .greeting-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }

  .promise-grid,
  .business-grid,
  .value-detail-grid,
  .story-feature-grid,
  .environment-factors,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .promise-grid article,
  .story-feature-grid article {
    min-height: 0;
  }

  .promise-grid article + article,
  .story-feature-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .business-grid article {
    border-right: 1px solid var(--line);
    min-height: 220px;
  }

  .profile-panel {
    padding: 36px 24px;
  }

  .profile-panel dl > div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .profile-panel dd small {
    display: block;
    margin: 4px 0 0;
  }

  .vision-statement {
    min-height: 450px;
    padding: 45px 26px;
  }

  .value-detail-grid article {
    border-right: 1px solid var(--line);
  }

  .vision-road {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .vision-road::before {
    bottom: 20px;
    height: auto;
    left: 50%;
    right: auto;
    top: 20px;
    width: 1px;
  }

  .vision-road > div {
    background: var(--ivory);
  }

  .location-actions {
    flex-direction: column;
  }

  .map-visual {
    min-height: 430px;
  }

  .map-visual iframe {
    min-height: 430px;
  }

  .definition-hero {
    gap: 35px;
    padding: 42px 25px;
  }

  .definition-hero blockquote {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.3);
    padding: 32px 0 0;
  }

  .story-note {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .environment-main,
  .environment-side {
    min-height: 390px;
  }

  .environment-factors article {
    border-right: 1px solid var(--line);
    min-height: 0;
  }

  .process-photo-strip > .detail-photo {
    min-height: 360px;
  }

  .process-photo-strip > div:last-child {
    padding: 40px 28px;
  }

  .story-process-list li {
    gap: 18px;
    grid-template-columns: 34px 1px 1fr;
    min-height: 155px;
  }

  .quality-grid article {
    min-height: 270px;
  }

  .quality-banner {
    gap: 35px;
    padding: 38px 25px;
  }

  .official-guide,
  .official-guide > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .official-guide a {
    margin: 20px 0 0;
  }

.source-note {
    text-align: left;
  }
}

/* Product catalog, product detail, and experience detail pages */
.catalog-status {
  align-items: center;
  background: var(--forest);
  color: #fff;
  display: grid;
  gap: 10px 30px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 28px;
  padding: 24px 30px;
}

.catalog-status > span {
  color: #d8aa58;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.catalog-status strong {
  font-size: 18px;
}

.catalog-status p {
  color: rgba(255,255,255,.64);
  font-size: 12px;
  margin: 0;
}

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

.product-catalog-grid > article {
  background: #f3efe5;
  border: 1px solid transparent;
  display: grid;
  grid-template-columns: minmax(210px, .78fr) 1.22fr;
  min-height: 430px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.product-catalog-grid > article:hover {
  box-shadow: 0 18px 42px rgba(3,42,32,.1);
  transform: translateY(-4px);
}

.product-catalog-grid > article.is-current {
  border-color: var(--gold);
}

.catalog-image {
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.catalog-image::after {
  background: linear-gradient(180deg, transparent 62%, rgba(1,39,29,.62));
  content: "";
  inset: 0;
  position: absolute;
}

.catalog-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform .45s ease;
  width: 100%;
}

.product-catalog-grid article:hover .catalog-image img {
  transform: scale(1.025);
}

.catalog-image > span {
  bottom: 22px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  left: 22px;
  letter-spacing: .1em;
  position: absolute;
  z-index: 1;
}

.catalog-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.catalog-title-row {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.catalog-title-row small,
.experience-lead-copy > small,
.product-detail-summary > small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.catalog-title-row h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 27px;
  margin: 7px 0 0;
}

.consult-badge {
  border: 1px solid rgba(6,71,55,.24);
  color: var(--forest);
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  padding: 7px 9px;
}

.catalog-feature {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 20px 0;
}

.catalog-meta {
  border-top: 1px solid #d9d5c9;
  margin: 0;
}

.catalog-meta > div {
  border-bottom: 1px solid #d9d5c9;
  display: grid;
  gap: 12px;
  grid-template-columns: 88px 1fr;
  padding: 11px 0;
}

.catalog-meta dt {
  color: #8a8e87;
  font-size: 11px;
  font-weight: 700;
}

.catalog-meta dd {
  color: var(--ink);
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}

.catalog-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  padding-top: 22px;
}

.catalog-actions a {
  align-items: center;
  border: 1px solid var(--forest);
  color: var(--forest);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
}

.catalog-actions a:last-child {
  background: var(--forest);
  color: #fff;
}

.information-policy {
  align-items: center;
  background: #eee8da;
  display: grid;
  gap: 28px;
  grid-template-columns: 180px 1fr;
  margin-top: 34px;
  padding: 30px 34px;
}

.information-policy b {
  color: var(--forest);
  font-size: 14px;
}

.information-policy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.product-detail-hero,
.experience-lead {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 650px;
}

.product-detail-image,
.experience-lead-image {
  overflow: hidden;
  position: relative;
}

.product-detail-image::after,
.experience-lead-image::after {
  background: linear-gradient(180deg, transparent 68%, rgba(1,39,29,.68));
  content: "";
  inset: 0;
  position: absolute;
}

.product-detail-image img,
.experience-lead-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.product-detail-image > span,
.experience-lead-image > span {
  bottom: 28px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  left: 30px;
  letter-spacing: .14em;
  position: absolute;
  z-index: 1;
}

.product-detail-summary,
.experience-lead-copy {
  background: #f1ede2;
  padding: clamp(44px, 5vw, 76px);
}

.product-detail-summary h2,
.experience-lead-copy h2 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(39px, 4vw, 56px);
  letter-spacing: -.05em;
  margin: 12px 0 22px;
}

.product-detail-summary > p:not(.eyebrow),
.experience-lead-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 32px;
}

.product-detail-summary dl {
  border-top: 1px solid #d3d0c5;
  margin: 0 0 34px;
}

.product-detail-summary dl > div {
  border-bottom: 1px solid #d3d0c5;
  display: grid;
  gap: 20px;
  grid-template-columns: 118px 1fr;
  padding: 15px 0;
}

.product-detail-summary dt {
  color: #7e847f;
  font-size: 12px;
  font-weight: 700;
}

.product-detail-summary dd {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.product-detail-summary dd > span,
.experience-info-board dd > span {
  color: var(--gold);
  font-weight: 800;
}

.product-detail-actions {
  display: flex;
  gap: 10px;
}

.product-process {
  display: grid;
  gap: 60px;
  grid-template-columns: .48fr 1.52fr;
  padding: 105px 0;
}

.section-side-title small,
.storage-guide small,
.product-inquiry-panel small,
.experience-info-heading small,
.experience-consult small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.section-side-title h3,
.storage-guide h3,
.product-inquiry-panel h3,
.experience-info-heading h3,
.experience-consult h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 34px;
  line-height: 1.38;
  margin: 12px 0 18px;
}

.section-side-title p,
.experience-info-heading p,
.experience-consult p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.product-process ol {
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-process li {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 230px;
  padding: 34px;
}

.product-process li > b {
  color: var(--gold);
  font-size: 11px;
}

.product-process h4,
.storage-guide-list h4 {
  color: var(--forest);
  font-size: 19px;
  margin: 34px 0 12px;
}

.product-process li p,
.storage-guide-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.storage-guide {
  background: var(--forest);
  color: #fff;
  display: grid;
  gap: 55px;
  grid-template-columns: .58fr 1.42fr;
  padding: 70px;
}

.storage-guide h3 {
  color: #fff;
}

.storage-guide-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.storage-guide-list article {
  border-left: 1px solid rgba(255,255,255,.24);
  padding: 6px 28px;
}

.storage-guide-list b {
  color: #d8aa58;
  font-size: 11px;
}

.storage-guide-list h4 {
  color: #fff;
}

.storage-guide-list p {
  color: rgba(255,255,255,.62);
}

.product-inquiry-panel {
  align-items: center;
  background: #f1ede2;
  display: grid;
  gap: 35px;
  grid-template-columns: .8fr .8fr .55fr;
  margin-top: 30px;
  padding: 52px 60px;
}

.product-inquiry-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.product-inquiry-panel > div:last-child,
.experience-consult > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-inquiry-panel > div:last-child a,
.experience-consult > div:last-child a {
  align-items: center;
  border: 1px solid var(--forest);
  color: var(--forest);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
}

.product-inquiry-panel > div:last-child a:first-child,
.experience-consult > div:last-child a:first-child {
  background: var(--forest);
  color: #fff;
}

.experience-lead-copy ul {
  border-bottom: 1px solid #d3d0c5;
  border-top: 1px solid #d3d0c5;
  list-style: none;
  margin: 0 0 34px;
  padding: 18px 0;
}

.experience-lead-copy li {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 10px;
  padding: 6px 0;
}

.experience-lead-copy li > span {
  color: var(--gold);
  font-weight: 800;
}

.experience-info-board {
  display: grid;
  gap: 64px;
  grid-template-columns: .52fr 1.48fr;
  padding: 105px 0;
}

.experience-info-board dl {
  border-top: 1px solid var(--forest);
  margin: 0;
}

.experience-info-board dl > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 145px 1fr;
  padding: 20px 12px;
}

.experience-info-board dt {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.experience-info-board dd {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.experience-consult {
  align-items: center;
  background:
    linear-gradient(100deg, rgba(1,43,32,.96), rgba(1,60,44,.9)),
    url("/images/hero-forest.png") center/cover no-repeat;
  color: #fff;
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr 320px;
  padding: 62px 70px;
}

.experience-consult h3 {
  color: #fff;
}

.experience-consult p {
  color: rgba(255,255,255,.64);
}

.experience-consult > div:last-child a {
  border-color: rgba(255,255,255,.65);
  color: #fff;
}

.experience-consult > div:last-child a:first-child {
  background: #fff;
  color: var(--forest);
}

@media (max-width: 1100px) {
  .product-catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-catalog-grid > article {
    grid-template-columns: minmax(250px, .75fr) 1.25fr;
  }

  .product-inquiry-panel {
    grid-template-columns: 1fr 1fr;
  }

  .product-inquiry-panel > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .catalog-status {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .catalog-status p {
    line-height: 1.6;
  }

  .product-detail-hero,
  .experience-lead {
    grid-template-columns: 1fr;
  }

  .product-detail-image,
  .experience-lead-image {
    min-height: 560px;
  }

  .product-process,
  .experience-info-board {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .storage-guide {
    grid-template-columns: 1fr;
  }

  .experience-consult {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .product-catalog-grid > article {
    grid-template-columns: 1fr;
  }

  .catalog-image {
    min-height: 330px;
  }

  .catalog-body {
    padding: 25px;
  }

  .catalog-actions {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: center;
    gap: 12px;
  }

  .footer-brand-icon {
    height: 54px;
    width: 54px;
  }

  .footer-brand-copy {
    min-width: 0;
  }

  .footer-brand-copy span {
    white-space: normal;
  }

  .site-footer {
    gap: 28px;
    grid-template-columns: 1fr;
    padding: 38px 20px 104px;
  }

  .footer-info {
    align-items: start;
    display: grid;
    gap: 7px;
    grid-template-columns: 1fr;
  }

  .footer-info > span,
  .footer-info > a {
    white-space: normal;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: flex-start;
  }

  .footer-copyright {
    white-space: normal;
  }

  .information-policy {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .product-detail-image,
  .experience-lead-image {
    min-height: 420px;
  }

  .product-detail-summary,
  .experience-lead-copy {
    padding: 42px 24px;
  }

  .product-detail-summary h2,
  .experience-lead-copy h2 {
    font-size: 38px;
  }

  .product-detail-summary dl > div,
  .experience-info-board dl > div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .product-detail-actions {
    flex-direction: column;
  }

  .product-process {
    padding: 78px 0;
  }

  .product-process ol {
    grid-template-columns: 1fr;
  }

  .product-process li {
    min-height: 0;
  }

  .storage-guide {
    gap: 35px;
    padding: 45px 25px;
  }

  .storage-guide-list {
    grid-template-columns: 1fr;
  }

  .storage-guide-list article {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.24);
    padding: 25px 0;
  }

  .product-inquiry-panel {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

  .product-inquiry-panel > div:last-child {
    grid-column: auto;
  }

  .experience-info-board {
    padding: 78px 0;
  }

  .experience-consult {
    padding: 45px 25px;
  }
}

.home-hero {
  border-bottom: 1px solid rgba(6, 71, 55, 0.65);
  display: grid;
  grid-template-columns: minmax(500px, 44%) 1fr;
  height: clamp(630px, 72vh, 680px);
  min-height: 630px;
  overflow: hidden;
}

.home-hero-copy {
  align-items: flex-start;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 0;
  padding: 54px clamp(34px, 4.5vw, 76px) 36px;
  position: relative;
  z-index: 2;
}

.home-hero-copy::after {
  background: var(--ivory);
  bottom: -1px;
  clip-path: polygon(0 0, 100% 0, 48% 100%, 0 100%);
  content: "";
  left: 100%;
  position: absolute;
  top: 0;
  width: 170px;
}

.home-hero h1 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(50px, 4.8vw, 78px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: 1.2;
  margin: 0;
}

.home-hero-description {
  color: #56615d;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.9;
  margin: 30px 0 34px;
  max-width: 560px;
}

.home-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-text {
  color: var(--forest);
  gap: 18px;
  padding-left: 18px;
  padding-right: 12px;
}

.button-text:hover {
  color: var(--gold);
}

.home-origin {
  color: var(--gold);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
  text-transform: uppercase;
}

.home-origin b {
  border-bottom: 1px solid var(--gold);
  font-size: 15px;
  padding-bottom: 7px;
  width: 34px;
}

.home-origin span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.65;
}

.home-hero-visual {
  background:
    linear-gradient(90deg, rgba(1, 44, 33, .14), transparent 26%),
    url("/images/hero-forest.png") 58% center/cover no-repeat,
    #41634e;
  height: 100%;
  min-height: 0;
  position: relative;
}

.home-hero-caption {
  background: rgba(2, 67, 51, .95);
  bottom: 0;
  color: #fff;
  min-width: 280px;
  padding: 30px 36px;
  position: absolute;
  right: 7%;
}

.home-hero-caption > span {
  color: #d8aa58;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.home-hero-caption p {
  font-size: 14px;
  line-height: 1.9;
  margin: 18px 0 0;
}

.home-section {
  padding: 128px max(7vw, 34px);
}

.home-section-heading h2,
.process-heading h2,
.home-contact-intro h2 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -.055em;
  line-height: 1.28;
  margin: 0;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.15fr .85fr;
  margin-bottom: 62px;
}

.split-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
  max-width: 580px;
}

.centered-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin: 22px auto 0;
  max-width: none;
}

.core-value-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--forest);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.core-value-grid article {
  min-height: 370px;
  padding: 30px 28px 36px;
  position: relative;
  transition: background .25s, transform .25s;
}

.core-value-grid article + article {
  border-left: 1px solid var(--line);
}

.core-value-grid article:hover {
  background: #f2eee3;
  transform: translateY(-4px);
}

.core-value-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.core-value-top b,
.core-value-top small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.core-value-symbol {
  border: 1px solid rgba(6, 71, 55, .4);
  border-radius: 50%;
  display: block;
  height: 74px;
  margin: 54px 0 36px;
  position: relative;
  width: 74px;
}

.core-value-symbol::before,
.core-value-symbol::after {
  background: var(--forest);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.core-value-symbol::before {
  height: 1px;
  width: 30px;
}

.core-value-symbol::after {
  height: 30px;
  width: 1px;
}

.core-value-grid h3 {
  color: var(--forest);
  font-size: 21px;
  margin: 0 0 14px;
}

.core-value-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.product-card-section {
  background: #f1ede2;
}

.centered-heading {
  margin: 0 auto 64px;
  max-width: 820px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.product-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow .25s, transform .25s;
}

.product-card:hover,
.product-card:focus-visible {
  box-shadow: 0 18px 42px rgba(3, 42, 32, .12);
  transform: translateY(-6px);
}

.product-card-photo {
  background:
    linear-gradient(180deg, rgba(3, 47, 35, .03), rgba(3, 47, 35, .45)),
    url("/images/product-ginseng.png") center/cover no-repeat;
  height: 330px;
  overflow: hidden;
  padding: 24px;
}

.product-card-photo span {
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.product-card-body small,
.home-experience-body small,
.home-news-body small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.product-card-body h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 28px;
  margin: 8px 0 18px;
}

.product-card-body p,
.home-experience-body p,
.home-news-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 30px;
}

.card-link {
  align-items: center;
  color: var(--forest);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: auto;
  min-height: 44px;
  padding-top: 18px;
  position: relative;
}

.card-link::before {
  background: var(--gold);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  transition: width .25s;
  width: 32px;
}

.product-card:hover .card-link::before,
.home-experience-card:hover .card-link::before {
  width: 100%;
}

.section-notice {
  color: #858b86;
  font-size: 12px;
  margin: 20px 0 0;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(1, 38, 29, .97), rgba(1, 49, 37, .9)),
    url("/images/hero-forest.png") center/cover no-repeat;
  color: #fff;
  display: grid;
  gap: 70px;
  grid-template-columns: .68fr 1.32fr;
  padding: 120px max(7vw, 34px);
}

.process-heading h2 {
  color: #fff;
}

.text-link-light {
  border-bottom: 1px solid rgba(255, 255, 255, .62);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 44px;
  margin-top: 34px;
  min-height: 44px;
  padding-bottom: 9px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 34px 0 0;
  position: relative;
}

.process-timeline::before {
  background: rgba(255, 255, 255, .3);
  content: "";
  height: 1px;
  left: 7%;
  position: absolute;
  right: 7%;
  top: 61px;
}

.process-timeline li {
  padding: 0 18px;
  position: relative;
}

.process-number {
  align-items: center;
  background: var(--forest-deep);
  border: 1px solid rgba(216, 170, 88, .75);
  border-radius: 50%;
  display: flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 34px;
  position: relative;
  width: 56px;
  z-index: 1;
}

.process-number span {
  color: #d8aa58;
  font-size: 12px;
  font-weight: 800;
}

.process-timeline h3 {
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.process-timeline p {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.experience-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.home-experience-card {
  background: #f3efe5;
  transition: box-shadow .25s, transform .25s;
}

.home-experience-card:hover {
  box-shadow: 0 18px 38px rgba(3, 42, 32, .1);
  transform: translateY(-5px);
}

.home-experience-photo {
  height: 360px;
}

.experience-photo-farm {
  background:
    linear-gradient(180deg, transparent, rgba(1, 42, 32, .32)),
    url("/images/farm-experience.png") 60% center/cover no-repeat;
}

.experience-photo-wine {
  background:
    linear-gradient(180deg, rgba(126, 86, 28, .08), rgba(1, 42, 32, .38)),
    url("/images/product-ginseng.png") 36% center/cover no-repeat;
}

.experience-photo-food {
  background:
    linear-gradient(180deg, rgba(255, 250, 235, .05), rgba(1, 42, 32, .42)),
    url("/images/farm-experience.png") 82% center/cover no-repeat;
}

.home-experience-body {
  padding: 30px;
}

.home-experience-body h3 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 29px;
  margin: 9px 0 17px;
}

.home-news-section {
  background: #f1ede2;
}

.news-heading-row {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
}

.notice-row {
  align-items: center;
  background: var(--forest);
  color: #fff;
  display: grid;
  gap: 20px;
  grid-template-columns: 100px 1fr auto 24px;
  margin-bottom: 24px;
  min-height: 84px;
  padding: 0 30px;
  transition: background .25s;
}

.notice-row:hover {
  background: var(--forest-dark);
}

.notice-row > span {
  color: #d8aa58;
  font-size: 12px;
  font-weight: 800;
}

.notice-row > strong {
  font-size: 16px;
}

.notice-row > small {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.home-news-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.home-news-grid article {
  background: var(--ivory);
}

.home-news-photo {
  height: 250px;
}

.news-photo-forest {
  background: url("/images/hero-forest.png") center/cover no-repeat;
}

.news-photo-quality {
  background: url("/images/product-ginseng.png") center/cover no-repeat;
}

.news-photo-experience {
  background: url("/images/farm-experience.png") center/cover no-repeat;
}

.home-news-body {
  padding: 28px;
}

.home-news-body h3 {
  color: var(--forest);
  font-size: 20px;
  line-height: 1.5;
  margin: 10px 0 13px;
}

.home-news-body p {
  margin-bottom: 24px;
}

.home-news-body > span {
  border: 1px solid #d0cfc4;
  color: #8b8e87;
  display: inline-block;
  font-size: 11px;
  padding: 7px 10px;
}

.home-contact-cta {
  background:
    linear-gradient(100deg, rgba(1, 35, 27, .97), rgba(1, 56, 42, .89)),
    url("/images/hero-forest.png") center/cover no-repeat;
  color: #fff;
  display: grid;
  gap: 50px 70px;
  grid-template-columns: .92fr 1.08fr;
  padding: 110px max(7vw, 34px);
}

.home-contact-intro h2 {
  color: #fff;
}

.home-contact-intro > p:last-child {
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  margin: 22px 0 0;
  max-width: none;
}

.contact-purpose-grid {
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  border-top: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-purpose-grid div {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 150px;
  padding: 28px 24px;
}

.contact-purpose-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.contact-purpose-grid b {
  color: #d8aa58;
  font-size: 11px;
}

.contact-purpose-grid span {
  font-size: 18px;
  font-weight: 800;
}

.contact-action-row {
  display: flex;
  gap: 12px;
  grid-column: 2;
}

@media (max-width: 1180px) {
  .home-hero {
    grid-template-columns: minmax(430px, 48%) 1fr;
    height: 640px;
    min-height: 640px;
  }

  .home-hero-copy {
    padding: 48px 34px 34px;
  }

  .home-hero-visual {
    height: 100%;
    min-height: 0;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .home-hero-actions .button {
    width: auto;
  }

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

  .core-value-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .core-value-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .process-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .home-page [data-reveal] {
    transform: translateY(14px);
  }

  .home-hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .home-hero-copy {
    min-height: 500px;
    padding: 54px 24px 34px;
  }

  .home-hero-copy::after {
    display: none;
  }

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

  .home-hero-description {
    font-size: 15px;
  }

  .home-hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

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

  .home-hero-visual {
    height: 400px;
    min-height: 400px;
  }

  .home-hero-caption {
    min-width: 0;
    padding: 26px 24px;
    right: 0;
    width: min(86%, 330px);
  }

  .home-section {
    padding: 88px 24px;
  }

  .split-heading {
    gap: 28px;
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .core-value-grid {
    grid-template-columns: 1fr;
  }

  .core-value-grid article {
    min-height: 320px;
  }

  .core-value-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-card-grid,
  .experience-card-grid,
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .product-card-photo,
  .home-experience-photo {
    height: 320px;
  }

  .process-section {
    gap: 54px;
    padding: 88px 24px;
  }

  .process-timeline {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .process-timeline::before {
    bottom: 20px;
    height: auto;
    left: 27px;
    right: auto;
    top: 30px;
    width: 1px;
  }

  .process-timeline li {
    display: grid;
    gap: 7px 20px;
    grid-template-columns: 56px 1fr;
    padding: 0 0 34px;
  }

  .process-number {
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-timeline h3 {
    align-self: end;
  }

  .process-timeline p {
    grid-column: 2;
  }

  .news-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .notice-row {
    gap: 10px;
    grid-template-columns: 1fr 20px;
    padding: 20px 22px;
  }

  .notice-row > span,
  .notice-row > strong,
  .notice-row > small {
    grid-column: 1;
  }

  .notice-row > span {
    grid-row: 1;
  }

  .notice-row > strong {
    grid-row: 2;
  }

  .notice-row > small {
    grid-row: 3;
  }

  .notice-row > span:last-child {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .home-contact-cta {
    gap: 42px;
    grid-template-columns: 1fr;
    padding: 88px 24px;
  }

  .contact-purpose-grid {
    grid-template-columns: 1fr;
  }

  .contact-purpose-grid div {
    min-height: 100px;
  }

  .contact-purpose-grid div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .contact-action-row {
    flex-direction: column;
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Final responsive, accessibility and error-state safeguards */
.privacy-check a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inquiry-field > small {
  color: var(--muted);
  font-size: 12px;
}

.not-found-page {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 252, 245, .98), rgba(255, 252, 245, .78)),
    url("/images/hero-forest.png") center/cover no-repeat;
  display: flex;
  min-height: 680px;
  padding: 90px max(7vw, 34px);
}

.not-found-page > div {
  max-width: 720px;
}

.not-found-page > div > strong {
  color: var(--gold);
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: .9;
}

.not-found-page h1 {
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(34px, 4.5vw, 64px);
  letter-spacing: -.05em;
  line-height: 1.25;
  margin: 30px 0 20px;
}

.not-found-page > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  max-width: 590px;
}

.not-found-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

@media (max-width: 650px) {
  .not-found-page {
    min-height: 620px;
    padding: 72px 24px;
  }

  .not-found-actions {
    flex-direction: column;
  }

  .not-found-actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand {
    gap: 8px;
  }

  .brand-icon {
    height: 44px;
    width: 44px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .nav-dropdown-links {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-links a:nth-child(odd) {
    margin-right: 0;
  }

  .home-hero h1,
  .sub-visual h1,
  .profile-panel dd,
  .catalog-meta dd,
  .experience-info-board dd {
    overflow-wrap: anywhere;
  }
}
