/* 스트로베리문 공식 사이트 — 와인·버건디 베이스 그라데이션 + Paperlogy */

@font-face {
  font-family: "Paperlogy";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2")
    format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2")
    format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --color-brand-surface: #9b4a5c;
  --color-brand-accent: #d64a6a;
  --color-brand-accent-dark: #7e2336;
  --color-brand-wine-deep: #4a1622;
  --color-ink: #1a1214;
  --color-ink-muted: #5c4a50;
  --color-paper: #faf5f6;
  --color-line: rgba(90, 32, 48, 0.14);
  --shadow-soft: 0 18px 48px rgba(30, 12, 18, 0.1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --content-max: 1120px;
  --header-h: 88px;
  --footer-dock-h: 220px;
  /* 고정 풋바: 다크 베이스 위 버건디·더스티로즈 포인트 (핫핑크 대체) */
  --footer-accent-line: rgba(214, 74, 106, 0.42);
  --footer-nav-pill-bg: rgba(126, 35, 54, 0.42);
  --footer-nav-pill-bg-hover: rgba(214, 74, 106, 0.38);
  --footer-link-rose: #e0b8c2;
  --footer-link-rose-hover: #f5e6ea;
  --footer-contact-rose: #e5ccd2;
  --footer-section-label: rgba(220, 175, 188, 0.95);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: "Paperlogy", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: 1.65;
  font-size: 17px;
  padding-bottom: calc(var(--footer-dock-h) + env(safe-area-inset-bottom, 0px));
}

/* 가이드라인: 한국어 본문에서 단어 내부 줄바꿈 최소화 */
html:lang(ko) body {
  word-break: keep-all;
  overflow-wrap: break-word;
}

main#main,
main.page-shell {
  padding-top: var(--header-h);
}

@media (max-width: 719px) {
  :root {
    --footer-dock-h: 340px;
    --header-h: 80px;
  }
}

@media (min-width: 900px) {
  :root {
    --footer-dock-h: 200px;
  }
}

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

a {
  color: var(--color-brand-accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-brand-accent);
}

:focus-visible {
  outline: 3px solid var(--color-brand-accent-dark);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--color-ink);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-wrap {
  width: min(100% - 40px, var(--content-max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 245, 246, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header--scrolled {
  border-color: var(--color-line);
  box-shadow: 0 8px 28px rgba(28, 28, 40, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  width: min(100% - 32px, var(--content-max));
  margin-inline: auto;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
}

.brand-mark:hover {
  color: inherit;
}

.brand-mark__en {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-mark__ko {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-ink-muted);
}

.brand-mark__accent {
  color: var(--color-brand-accent);
}

/* 공통 헤더 — 공식 로고 PNG(웹 루트 images/brand, 이전 시에도 상대경로만으로 동작) */
.brand-logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  margin-right: 8px;
  text-decoration: none;
  line-height: 0;
}

.brand-logo-mark:hover {
  opacity: 0.92;
}

.brand-logo-mark__image {
  display: block;
  height: clamp(52px, 7.5vw, 78px);
  width: auto;
  max-width: min(300px, 55vw);
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: none;
  gap: 6px 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(214, 74, 106, 0.12);
  color: var(--color-brand-accent-dark);
}

.site-nav a[aria-current="page"] {
  background: linear-gradient(
    135deg,
    rgba(214, 74, 106, 0.22),
    rgba(180, 100, 118, 0.35)
  );
  color: var(--color-brand-accent-dark);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(126, 35, 54, 0.22);
}

/* 영문 메뉴 라벨이 길어 줄바꿈되지 않도록 한 줄 유지 */
html[lang="en"] .site-nav {
  flex-wrap: nowrap;
  gap: 3px 6px;
}

html[lang="en"] .site-nav a {
  white-space: nowrap;
  font-size: clamp(0.68rem, 0.45vw + 0.58rem, 0.9rem);
  padding: 7px clamp(4px, 0.5vw, 9px);
}

html[lang="en"] .site-header__inner {
  gap: 10px;
}

@media (min-width: 980px) and (max-width: 1180px) {
  html[lang="en"] .brand-mark__ko {
    font-size: 0.68rem;
    line-height: 1.25;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-ink-muted);
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.lang-switch:hover {
  color: var(--color-brand-accent-dark);
  background: rgba(214, 74, 106, 0.1);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(
    135deg,
    var(--color-brand-accent),
    var(--color-brand-accent-dark)
  );
  color: #fff;
  box-shadow: 0 10px 28px rgba(126, 35, 54, 0.38);
}

.btn--primary:hover {
  color: #fff;
  box-shadow: 0 12px 32px rgba(74, 22, 34, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-line);
}

.btn--ghost:hover {
  border-color: var(--color-brand-accent);
  color: var(--color-brand-accent-dark);
}

.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--color-ink);
  border-radius: 2px;
}

@media (min-width: 980px) {
  .site-nav {
    display: flex;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

.site-header__mobile-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 16px 20px 24px;
  background: rgba(250, 245, 246, 0.98);
  border-bottom: 1px solid var(--color-line);
  flex-direction: column;
  gap: 4px;
}

.site-header__mobile-panel--open {
  display: flex;
}

.site-header__mobile-panel a {
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 500;
}

.site-header__mobile-panel a:hover {
  background: rgba(214, 74, 106, 0.1);
}

.site-header__mobile-panel a[aria-current="page"] {
  background: linear-gradient(
    135deg,
    rgba(214, 74, 106, 0.22),
    rgba(180, 100, 118, 0.35)
  );
  color: var(--color-brand-accent-dark);
  font-weight: 700;
}

.hero {
  position: relative;
  padding: clamp(48px, 10vw, 100px) 0 clamp(56px, 12vw, 110px);
  background: linear-gradient(
    105deg,
    #fadadd 0%,
    #fce4ec 42%,
    #fff5f7 78%,
    #fff8fa 100%
  );
  overflow: hidden;
}

.hero .btn--primary {
  background: linear-gradient(
    135deg,
    var(--color-brand-accent-dark),
    var(--color-brand-wine-deep)
  );
  box-shadow: 0 8px 24px rgba(74, 22, 34, 0.35);
}

.hero .btn--primary:hover {
  background: linear-gradient(
    135deg,
    #8f2a3d,
    var(--color-brand-wine-deep)
  );
  color: #fff;
  box-shadow: 0 10px 28px rgba(30, 10, 16, 0.42);
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-accent-dark);
  margin-bottom: 12px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--color-ink-muted);
  max-width: 36ch;
}

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

.hero__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.35);
  aspect-ratio: 4 / 3;
  background: #2a1418;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 히어로 수확 현장 — 가로 스냅으로 한 장씩 크게 표시 */
.hero-harvest-slider {
  position: relative;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-harvest-slider__viewport {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  outline: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hero-harvest-slider__viewport::-webkit-scrollbar {
  display: none;
}

.hero-harvest-slider__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-harvest-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-harvest-slider__chrome {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}

.hero-harvest-slider__arrow {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--color-brand-wine-deep);
  background: rgba(255, 250, 252, 0.92);
  box-shadow: 0 6px 20px rgba(30, 12, 18, 0.18);
  transition: background 0.15s ease, transform 0.15s ease;
}

.hero-harvest-slider__arrow:hover {
  background: #fff;
  transform: scale(1.04);
}

.hero-harvest-slider__arrow:active {
  transform: scale(0.98);
}

.hero-harvest-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(26, 18, 20, 0.45);
  backdrop-filter: blur(6px);
}

.hero-harvest-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero-harvest-slider__dot[aria-selected="true"] {
  background: #fff;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .hero-harvest-slider__viewport {
    scroll-behavior: auto;
  }

  .hero-harvest-slider__arrow,
  .hero-harvest-slider__dot {
    transition: none;
  }
}

.section {
  padding: clamp(56px, 9vw, 96px) 0;
}

.section--alt {
  background: linear-gradient(180deg, #fff 0%, #fff5f8 100%);
}

.section__head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section__head--technology-lede {
  max-width: none;
  width: 100%;
}

.section__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-accent);
  margin-bottom: 10px;
}

.section__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.section__intro {
  margin: 0;
  color: var(--color-ink-muted);
}

.card-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 700px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

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

.card-grid--3 > .card--with-visual {
  height: 100%;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  border: 1px solid var(--color-line);
  box-shadow: 0 4px 20px rgba(28, 28, 40, 0.04);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-list li {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(126, 35, 54, 0.1);
  color: var(--color-brand-accent-dark);
}

.split {
  display: grid;
  gap: 32px;
}

@media (min-width: 800px) {
  .split--reverse {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .split--reverse .split__text {
    order: 2;
  }

  .split--reverse .split__aside {
    order: 1;
  }
}

blockquote.mission-quote {
  margin: 0;
  padding: 24px 26px;
  border-left: 4px solid var(--color-brand-accent);
  background: rgba(248, 212, 212, 0.35);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 500;
}

.value-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-line);
}

.value-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-brand-accent-dark);
  margin-bottom: 6px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--color-line);
}

.timeline li {
  position: relative;
  padding: 0 0 24px 22px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-brand-accent);
  box-shadow: 0 0 0 4px rgba(214, 74, 106, 0.22);
}

.timeline time {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-brand-accent-dark);
  margin-bottom: 4px;
}

/* 회사소개 — 연도별 상세 연혁 */
.company-history {
  margin-top: clamp(48px, 7vw, 72px);
  padding-top: clamp(36px, 5vw, 52px);
  border-top: 1px solid var(--color-line);
}

.company-history__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.company-history__title {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.company-history__intro {
  margin: 0;
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-ink-muted);
}

.company-history__timeline {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.5vw, 32px);
}

.company-history-year {
  margin: 0;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(30, 12, 18, 0.04);
}

.company-history-year__label {
  margin: 0 0 14px;
  padding-bottom: 12px;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-brand-accent-dark);
  border-bottom: 1px solid rgba(90, 32, 48, 0.12);
}

.company-history-year__list {
  margin: 0;
  padding-left: 1.35em;
  list-style: disc;
}

.company-history-year__list > li {
  margin-bottom: 0.5em;
  padding-left: 0.15em;
  font-size: clamp(0.94rem, 1.65vw, 1.02rem);
  line-height: 1.68;
  color: var(--color-ink);
}

.company-history-year__list > li:last-child {
  margin-bottom: 0;
}

.tech-columns {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .tech-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tech-block-heading--single-line {
  white-space: nowrap;
}

.tech-block h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.tech-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-ink-muted);
  font-size: 0.92rem;
}

.technology-roadmap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
}

.technology-roadmap__lead {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.65;
  color: var(--color-brand-accent-dark);
  word-break: keep-all;
}

.technology-roadmap__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.technology-roadmap__row {
  display: grid;
  gap: 16px 28px;
  align-items: center;
}

@media (min-width: 768px) {
  .technology-roadmap__row {
    grid-template-columns: max-content 1fr;
  }
}

.technology-roadmap__body {
  min-width: 0;
}

.technology-roadmap__topic-shell {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
}

.technology-roadmap__topic {
  --technology-roadmap-topic-box-width: 16.5rem;
  --technology-roadmap-topic-box-min-height: 7em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--technology-roadmap-topic-box-width);
  min-width: var(--technology-roadmap-topic-box-width);
  max-width: 100%;
  min-height: var(--technology-roadmap-topic-box-min-height);
  padding: 16px 18px;
  background: rgba(90, 32, 48, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}

@media (max-width: 767px) {
  .technology-roadmap__topic {
    width: 100%;
    min-width: 0;
  }
}

.technology-roadmap__index {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.technology-roadmap__topic-title {
  margin: 0;
  font-size: clamp(1rem, 1.85vw, 1.12rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-brand-wine-deep);
  word-break: keep-all;
  text-align: center;
}

.technology-roadmap__bullets {
  margin: 0;
  padding-left: 1.25em;
  color: var(--color-ink-muted);
  font-size: clamp(0.94rem, 1.7vw, 1rem);
  line-height: 1.7;
  word-break: keep-all;
}

.technology-roadmap__bullets li {
  margin-bottom: 0.42em;
}

.technology-roadmap__bullets li:last-child {
  margin-bottom: 0;
}

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

@media (min-width: 768px) {
  .credential-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 32px 22px;
  }

  .credential-grid > .credential-card--highlight:nth-of-type(1) {
    grid-column: 1 / 4;
  }

  .credential-grid > .credential-card--highlight:nth-of-type(2) {
    grid-column: 4 / 7;
  }

  .credential-grid > .credential-card:nth-of-type(3) {
    grid-column: 1 / 3;
  }

  .credential-grid > .credential-card:nth-of-type(4) {
    grid-column: 3 / 5;
  }

  .credential-grid > .credential-card:nth-of-type(5) {
    grid-column: 5 / 7;
  }
}

.credential-card {
  background: transparent;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.credential-card figure {
  margin: 0;
  background: transparent;
}

.credential-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.credential-card figcaption {
  padding: 14px 16px 18px;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  background: transparent;
  border-top: 1px solid rgba(90, 32, 48, 0.12);
}

.credential-card--highlight {
  border: 2px solid rgba(214, 74, 106, 0.45);
  box-shadow: 0 10px 36px rgba(74, 22, 34, 0.1);
}

.credential-card--highlight figcaption {
  font-weight: 600;
  color: var(--color-brand-wine-deep);
  font-size: 0.92rem;
  border-top-color: rgba(214, 74, 106, 0.28);
}

@media (min-width: 768px) {
  .credential-grid > .credential-card--highlight img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .credential-grid > .credential-card--highlight figcaption {
    font-size: 0.95rem;
    padding: 16px 18px 20px;
  }

  .credential-grid > .credential-card:not(.credential-card--highlight) figcaption {
    font-size: 0.84rem;
    padding: 12px 14px 16px;
  }
}

.card--with-visual {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__visual {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #f0e8ea;
  overflow: hidden;
}

.card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--patent-gallery .card__visual.card__visual--patent-a4-stack {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(10px, 2.5vw, 22px);
  padding: clamp(10px, 2vw, 20px);
  background: linear-gradient(165deg, #ece8eb 0%, #dfd6db 55%, #e8e2e5 100%);
}

.patent-a4-frame {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patent-a4-frame__paper {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 210 / 297;
  margin: 0 auto;
  background: #fafafa;
  border: 1px solid rgba(30, 12, 18, 0.12);
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 4px rgba(30, 12, 18, 0.06),
    0 12px 28px rgba(30, 12, 18, 0.14);
  padding: clamp(4px, 1vw, 8px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__visual--patent-a4-stack .patent-a4-frame__paper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 520px) {
  .card--patent-gallery .card__visual.card__visual--patent-a4-stack {
    flex-wrap: wrap;
    aspect-ratio: auto;
    min-height: clamp(200px, 55vw, 320px);
  }

  .patent-a4-frame {
    height: auto;
    width: min(200px, 42vw);
  }

  .patent-a4-frame__paper {
    height: auto;
    width: 100%;
    max-width: 100%;
  }
}

.card__body-footnote {
  margin: 12px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-ink-muted);
}

.card__body-footnote a {
  font-weight: 600;
  color: var(--color-brand-accent-dark);
}

.card--with-visual .card__body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card--with-visual h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.card--with-visual p {
  margin: 0 0 12px;
  flex: 1;
}

.media-page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.media-page-subnav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-brand-accent-dark);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 2px 10px rgba(30, 12, 18, 0.04);
}

.media-page-subnav a:hover {
  border-color: rgba(214, 74, 106, 0.35);
  background: rgba(255, 245, 248, 0.9);
}

.media-section-block {
  scroll-margin-top: calc(var(--header-h) + 20px);
  margin-bottom: clamp(40px, 6vw, 56px);
}

.media-section-block:last-of-type {
  margin-bottom: 0;
}

.media-section-block__title {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: var(--color-brand-wine-deep);
}

.media-section-block__intro {
  margin: 0 0 20px;
  max-width: 52rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

.media-press-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--color-ink);
  line-height: 1.75;
}

.media-press-list a {
  font-weight: 600;
  color: var(--color-brand-accent-dark);
}

.media-press-list__item {
  margin-bottom: 0.65em;
}

.media-press-list__item:last-child {
  margin-bottom: 0;
}

.media-press-list__meta {
  display: block;
  margin-top: 0.2em;
  font-size: 0.92em;
  color: var(--color-ink-muted);
  font-weight: 400;
  line-height: 1.5;
}

.media-press-list--preamble {
  list-style: disc;
  margin: 0 0 1.25rem;
  padding-left: 1.2em;
}

.media-press-grid {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
  gap: clamp(14px, 2.5vw, 22px);
}

.media-press-card {
  margin: 0;
}

.media-press-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(30, 12, 18, 0.06);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.media-press-card__link:hover {
  border-color: var(--color-brand-accent-mid, #c45c6a);
  box-shadow: 0 8px 28px rgba(30, 12, 18, 0.12);
  transform: translateY(-2px);
}

.media-press-card__link:focus-visible {
  outline: 2px solid var(--color-brand-accent-dark);
  outline-offset: 2px;
}

.media-press-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #f6f0f2 0%, #ebe4e8 100%);
  overflow: hidden;
}

.media-press-card__media--empty {
  min-height: 7.5rem;
}

.media-press-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.media-press-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 14px 16px 16px;
  flex: 1;
}

.media-press-card__title {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--color-brand-wine-deep);
}

.media-press-card__link:hover .media-press-card__title {
  color: var(--color-brand-accent-dark);
}

.media-press-card__meta {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-ink-muted);
  font-weight: 400;
}

.media-post-detail__langpick {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.media-post-detail__langpick a {
  font-weight: 600;
  color: var(--color-brand-accent-dark);
}

.media-post-detail__translation-lede {
  margin: 0 0 1rem;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-ink-muted);
  background: rgba(196, 92, 106, 0.08);
  border-radius: var(--radius-sm, 6px);
  border-left: 3px solid var(--color-brand-accent-dark);
}

.media-post-detail__body--en {
  font-size: 1.02rem;
}

.media-post-detail__translation-note code {
  font-size: 0.88em;
}

.media-post-detail {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: clamp(32px, 5vw, 56px);
}

.media-post-detail__breadcrumb {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
}

.media-post-detail__breadcrumb a {
  font-weight: 600;
  color: var(--color-brand-accent-dark);
}

.media-post-detail__head {
  margin-bottom: 24px;
}

.media-post-detail__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-brand-wine-deep);
  line-height: 1.35;
}

.media-post-detail__meta {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

.media-post-detail__hero {
  margin: 0 0 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #fff;
  box-shadow: 0 4px 18px rgba(30, 12, 18, 0.06);
}

.media-post-detail__hero img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.media-post-detail__body {
  color: var(--color-ink);
  line-height: 1.75;
  font-size: 1rem;
}

.media-post-detail__body img {
  max-width: 100%;
  height: auto;
}

.media-post-detail__body a {
  color: var(--color-brand-accent-dark);
  font-weight: 600;
  word-break: break-word;
}

.media-post-detail__source-links {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
  font-size: 0.95rem;
}

.media-post-detail__source-links a {
  font-weight: 600;
  color: var(--color-brand-accent-dark);
}

.media-field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
  .media-field-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.media-field-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #fff;
  box-shadow: 0 4px 18px rgba(30, 12, 18, 0.06);
}

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

.media-field-grid figcaption {
  padding: 10px 12px 12px;
  font-size: 0.82rem;
  color: var(--color-ink-muted);
  line-height: 1.45;
}

.technology-lede {
  margin: 0 0 20px;
  max-width: none;
  font-size: clamp(1.02rem, 1.9vw, 1.12rem);
  line-height: 1.75;
  color: var(--color-brand-accent-dark);
  font-weight: 600;
}

@media (min-width: 1080px) {
  html:lang(ko) .section__head--technology-lede .technology-lede {
    white-space: nowrap;
  }
}

.contact-sent-banner {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(214, 74, 106, 0.12);
  border: 1px solid rgba(214, 74, 106, 0.28);
  color: var(--color-brand-wine-deep);
  font-weight: 600;
}

.contact-sent-banner[hidden] {
  display: none !important;
}

.gallery-placeholder {
  border: 2px dashed var(--color-line);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  color: var(--color-ink-muted);
  background: rgba(255, 255, 255, 0.6);
}

.store-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    120deg,
    rgba(126, 35, 54, 0.12),
    rgba(248, 212, 212, 0.55)
  );
  border: 1px solid var(--color-line);
}

.store-banner p {
  margin: 0;
  max-width: 52ch;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

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

.form-row label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--color-line);
  background: #fff;
}

.form-row textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row small {
  color: var(--color-ink-muted);
  font-size: 0.82rem;
}

.captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.captcha-row input {
  width: 120px;
}

.site-footer {
  padding: 48px 0 32px;
  background: #1c1c28;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.site-footer a {
  color: #ffb7d9;
}

.site-footer__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.site-footer__meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__meta li {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footnote {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* 하단 고정: 회사 정보 + 바로가기 */
.site-footer-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  max-height: min(48vh, 380px);
  overflow-y: auto;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #2a2226 0%, #171314 100%);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--footer-accent-line);
  box-shadow:
    0 -12px 40px rgba(0, 0, 0, 0.28),
    0 -1px 0 rgba(74, 22, 34, 0.35) inset;
}

.site-footer-dock__inner {
  width: min(100% - 8px, var(--content-max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer-dock__row--main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 28px;
}

.site-footer-dock__main {
  flex: 1 1 min(100%, 320px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer-dock__brand {
  min-width: 0;
}

.site-footer-dock__title {
  margin: 0 0 2px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.site-footer-dock__en {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.site-footer-dock__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.site-footer-dock__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 12px;
}

.site-footer-dock__nav > a:not(.site-footer-dock__ig) {
  color: var(--footer-link-rose);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--footer-nav-pill-bg);
}

.site-footer-dock__nav > a:not(.site-footer-dock__ig):hover {
  color: var(--footer-link-rose-hover);
  background: var(--footer-nav-pill-bg-hover);
}

.site-footer-dock__ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 10px;
  color: var(--footer-link-rose);
  background: var(--footer-nav-pill-bg);
  text-decoration: none;
  flex-shrink: 0;
}

.site-footer-dock__ig:hover {
  color: var(--footer-link-rose-hover);
  background: var(--footer-nav-pill-bg-hover);
}

.site-footer-dock__ig-icon {
  display: block;
}

.site-footer-dock__contact-quick {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.site-footer-dock__contact-quick-tel,
.site-footer-dock__contact-quick-mail {
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--footer-contact-rose);
  line-height: 1.35;
  word-break: break-all;
  text-align: right;
}

.site-footer-dock__contact-quick-mail {
  font-weight: 500;
  font-size: 0.68rem;
}

.site-footer-dock__contact-quick-tel:hover,
.site-footer-dock__contact-quick-mail:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 639px) {
  .site-footer-dock__aside {
    align-items: flex-start;
    width: 100%;
  }

  .site-footer-dock__nav {
    justify-content: flex-start;
  }

  .site-footer-dock__contact-quick {
    align-items: flex-start;
  }

  .site-footer-dock__contact-quick-tel,
  .site-footer-dock__contact-quick-mail {
    text-align: left;
  }
}

.site-footer-dock__info-block {
  padding-top: 0;
  margin: 0;
}

.site-footer-dock__info-title {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-section-label);
}

.site-footer-dock__meta-list {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 2px;
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.38;
}

.site-footer-dock__meta-list dt {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.site-footer-dock__meta-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.site-footer-dock__meta-list a {
  color: var(--footer-contact-rose);
  text-decoration: none;
  font-weight: 600;
}

.site-footer-dock__meta-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer-dock__copy {
  margin: 2px 0 0;
  padding-top: 0;
  border-top: none;
  font-size: 0.6rem;
  opacity: 0.45;
}

.contact-page-footer-hint {
  margin: 36px 0 0;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(248, 212, 212, 0.28);
  border: 1px solid var(--color-line);
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.contact-page-footer-hint strong {
  color: var(--color-brand-accent-dark);
  font-weight: 600;
}

/* 회사소개 — 출범 요약(회색 박스 대신 밝은 카드 + 왼쪽 액센트) */
.about-launch-banner {
  margin-bottom: clamp(28px, 5vw, 40px);
  padding: clamp(22px, 3.5vw, 28px) clamp(22px, 3.5vw, 32px);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-brand-accent);
  box-shadow: 0 6px 28px rgba(30, 12, 18, 0.06);
}

.about-launch-banner__text {
  margin: 0;
  font-size: clamp(1.08rem, 2.05vw, 1.28rem);
  line-height: 1.72;
  color: var(--color-ink);
  text-align: left;
  max-width: 60rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.about-launch-banner__text strong {
  color: var(--color-brand-wine-deep);
  font-weight: 800;
}

.about-launch-banner__highlight {
  color: var(--color-brand-accent-dark);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.about-formation {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 56px);
  align-items: stretch;
}

.about-formation__panel {
  background: #fff;
  border-radius: var(--radius-md);
  padding: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 22px);
  border: 1px solid var(--color-line);
  box-shadow: 0 6px 28px rgba(30, 12, 18, 0.07);
}

.about-formation__panel-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.about-formation__partner-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brand-wine-deep);
  letter-spacing: -0.02em;
}

.about-formation__partner-sub {
  margin: 4px 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-ink-muted);
}

.about-formation__list {
  margin: 0;
  padding-left: 1.35rem;
  font-size: 0.93rem;
  color: var(--color-ink-muted);
  line-height: 1.58;
  list-style: none;
}

.about-formation__list > li {
  position: relative;
  padding-left: 0.1rem;
  margin-bottom: 12px;
}

.about-formation__list > li::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 0.5em;
  width: 0.55em;
  height: 0.55em;
  background: var(--color-brand-accent-dark);
  border-radius: 1px;
}

.about-formation__list > li:last-child {
  margin-bottom: 0;
}

.about-formation__list ul {
  margin: 8px 0 4px;
  padding-left: 1.35rem;
  list-style: none;
  font-size: 0.9rem;
}

.about-formation__list ul > li {
  position: relative;
  padding-left: 0.1rem;
  margin-bottom: 6px;
}

.about-formation__list ul > li::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 0.55em;
  width: 0.5em;
  height: 0.5em;
  background: var(--color-brand-accent-dark);
  border-radius: 1px;
  opacity: 0.78;
}

.about-formation__list ul > li:last-child {
  margin-bottom: 0;
}

.about-formation__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

.about-formation__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-accent-dark);
  opacity: 0.45;
}

.about-formation__arrow--flip svg {
  transform: scaleX(-1);
}

.about-formation__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 5vw, 44px) clamp(16px, 3vw, 28px);
  background: radial-gradient(
      ellipse 85% 70% at 50% 45%,
      rgba(214, 74, 106, 0.14) 0%,
      rgba(250, 245, 246, 0.4) 55%,
      transparent 100%
    ),
    linear-gradient(165deg, #fff 0%, #faf0f2 50%, #f5e4e8 100%);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 14px 40px rgba(74, 22, 34, 0.1);
}

.about-formation__center-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-accent-dark);
}

.about-formation__logo {
  display: block;
  width: min(100%, 380px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(74, 22, 34, 0.18));
}

@media (min-width: 1024px) {
  .about-formation {
    grid-template-columns: minmax(200px, 1fr) 52px minmax(280px, 440px) 52px minmax(200px, 1fr);
    gap: 16px 10px;
    align-items: center;
  }

  .about-formation__arrow {
    display: flex;
  }

  .about-formation__logo {
    width: min(100%, 400px);
  }
}

/* 회사소개 — Vision·Mission·Core Value (좌 빨간 라벨 + 우 본문, Core Value 라벨 강조) */
.vmc-block {
  margin: clamp(40px, 6vw, 56px) 0;
}

.vmc-block__title {
  margin: 0 0 clamp(22px, 3.5vw, 32px);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: #e11d48;
  letter-spacing: -0.02em;
}

.vmc-block__rows {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 28px);
}

.vmc-row {
  display: grid;
  grid-template-columns: minmax(136px, 182px) minmax(0, 1fr);
  gap: clamp(14px, 2.5vw, 22px);
  align-items: center;
}

.vmc-row--core {
  align-items: stretch;
}

@media (max-width: 560px) {
  .vmc-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vmc-row__badge {
    justify-self: start;
    width: auto;
    min-width: 7.5rem;
  }

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

  .vmc-row--core .vmc-row__badge--core {
    min-height: auto;
    padding-block: 18px;
  }
}

.vmc-row__badge {
  margin: 0;
  padding: clamp(20px, 3.4vw, 26px) clamp(12px, 2vw, 16px);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(145deg, #ef4444 0%, #dc2626 48%, #b91c1c 100%);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.vmc-row__badge--core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  padding: clamp(20px, 4vw, 28px) clamp(12px, 2vw, 16px);
  align-self: stretch;
  min-height: 100%;
  border-radius: 16px;
}

.vmc-row__badge-line {
  display: block;
  font-size: clamp(1.22rem, 3.8vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.vmc-row__body {
  min-width: 0;
}

.vmc-row__text {
  margin: 0;
  font-size: clamp(0.96rem, 1.75vw, 1.06rem);
  line-height: 1.72;
  color: var(--color-ink);
  font-weight: 500;
}

.vmc-values-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vmc-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

.vmc-value-card {
  margin: 0;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(90, 32, 48, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(30, 12, 18, 0.04);
}

.vmc-value-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
  color: var(--color-ink);
}

.vmc-value-card__icon svg {
  display: block;
}

.vmc-value-card__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-brand-wine-deep);
  word-break: keep-all;
}

.vmc-value-card__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--color-ink-muted);
  word-break: keep-all;
}

/* 브랜드 스토리 — 보름달 톤 히어로 + 4축 카드 */
.brand-story-page .brand-story-hero {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 10vw, 100px);
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(214, 74, 106, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(74, 22, 34, 0.35) 0%, transparent 50%),
    linear-gradient(165deg, #1a0c10 0%, #2d1218 38%, #3a1822 100%);
  color: #f8eef1;
}

.brand-story-page .brand-story-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(120px, 18vw);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(45, 18, 24, 0.35) 35%,
    rgba(255, 245, 248, 0.65) 88%,
    #fff5f8 100%
  );
}

.brand-story-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(40px, 6vw, 56px);
  align-items: center;
}

@media (min-width: 900px) {
  .brand-story-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.92fr);
    gap: clamp(48px, 7vw, 72px);
  }
}

.brand-story-hero__eyebrow {
  color: rgba(248, 238, 241, 0.75);
  letter-spacing: 0.14em;
}

.brand-story-hero__title {
  margin: 0 0 20px;
  font-size: clamp(1.85rem, 4.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.brand-story-hero__lead {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1rem, 1.85vw, 1.08rem);
  line-height: 1.78;
  color: rgba(248, 238, 241, 0.9);
}

.brand-story-hero__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 22px);
  width: min(100%, 300px);
  margin-inline: auto;
  padding: clamp(14px, 2.8vw, 22px);
  border-radius: clamp(22px, 4vw, 30px);
  background: linear-gradient(
    155deg,
    rgba(58, 24, 34, 0.55) 0%,
    rgba(28, 12, 16, 0.72) 48%,
    rgba(45, 18, 26, 0.65) 100%
  );
  border: 1px solid rgba(214, 74, 106, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 32px 64px rgba(0, 0, 0, 0.42),
    0 0 72px rgba(196, 45, 82, 0.14);
}

.brand-story-hero__media-shell {
  width: 100%;
  overflow: hidden;
  border-radius: clamp(12px, 2.4vw, 18px);
  line-height: 0;
  background: rgba(10, 4, 8, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(214, 74, 106, 0.12),
    inset 0 0 48px rgba(0, 0, 0, 0.25);
}

.brand-story-hero__media {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  outline: none;
  /* PNG에서 하단 편집 마크 제거됨 — 미세 번짐만 잘라낼 때만 음수 마진 조정 */
  margin-bottom: -2px;
  filter: saturate(1.02);
}

.brand-story-moon-caption {
  margin: 0;
  padding: 0 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 238, 241, 0.62);
  text-align: center;
}

/* 히어로 → 카드 구간 톤 맞춤 */
.brand-story-page .section.section--alt {
  background: linear-gradient(180deg, #fff5f8 0%, #fff 28%, #fff5f8 100%);
  border-top: none;
  padding-top: clamp(48px, 8vw, 80px);
}

.brand-story-page .brand-story-pillar-card {
  border: 1px solid rgba(90, 32, 48, 0.1);
  box-shadow: 0 8px 32px rgba(30, 12, 18, 0.07);
}

.brand-story-pillar-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .brand-story-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 22px;
  }
}

.brand-story-pillar-card {
  margin: 0;
  padding: clamp(22px, 3vw, 28px) clamp(20px, 3vw, 26px);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(30, 12, 18, 0.06);
}

.brand-story-pillar-card__moon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 230, 235, 0.9) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, #e85a78 0%, #9e2340 100%);
  box-shadow: 0 4px 20px rgba(196, 45, 82, 0.35);
}

.brand-story-pillar-card__moon--dim {
  opacity: 0.88;
  transform: scale(0.92);
  box-shadow: 0 3px 14px rgba(196, 45, 82, 0.25);
}

.brand-story-pillar-card__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-brand-wine-deep);
}

.brand-story-pillar-card__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--color-ink-muted);
}

