/* ============================================================
   사람꽃메디 홈페이지 — style.css (정제판)
   색상 시스템:
     --white / --cream / --beige (중립 배경)
     --green-dark / --green-mid / --green-light / --green-tint (브랜드 그린)
     --blue / --blue-tint (로고 보조 블루)
   타이포그래피:
     Display — Noto Serif KR (400/700)
     Body    — Noto Sans KR (400/500/700)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;500;700&family=Noto+Sans+KR:wght@400;500;700&display=swap');

/* ─── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --cream:       #F8F6F1;
  --beige:       #EFEAE1;

  --green-dark:  #2F6E3E;
  --green-mid:   #5C9E6A;
  --green-light: #D7E9D9;
  --green-tint:  #EEF6EF;

  --blue:        #3C6FA6;
  --blue-tint:   #E8F0F7;

  --text-main:   #232826;
  --text-sub:    #565E59;
  --text-muted:  #8C938E;
  --line:        #E4E0D7;
  --line-soft:   #EEEBE3;

  --font-serif: 'Noto Serif KR', serif;
  --font-sans:  'Noto Sans KR', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-xs:   0 1px 2px rgba(35,40,38,0.04);
  --shadow-card: 0 6px 24px rgba(47,110,62,0.07);
  --shadow-lift: 0 16px 40px rgba(47,110,62,0.13);
  --shadow-btn:  0 6px 18px rgba(47,110,62,0.24);

  --transition: 0.24s cubic-bezier(.4,0,.2,1);
  --max-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { display: block; }

/* ─── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 104px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--green-mid);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 18px;
  word-break: keep-all;
}

.section-desc {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 620px;
  line-height: 1.85;
  word-break: keep-all;
}

/* ─── Icon helpers ──────────────────────────────────────── */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
  background: var(--green-tint);
  border-radius: var(--radius-md);
}
.icon-chip svg { width: 24px; height: 24px; }
.icon-chip--blue { color: var(--blue); background: var(--blue-tint); }

/* ─── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(35,40,38,0.06);
  border-bottom-color: var(--line-soft);
  background: rgba(255,255,255,0.94);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.nav-logo-text .ko {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.nav-logo-text .en {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--green-dark);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--green-dark); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-xs);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}

.nav-cta:hover { background: #245733 !important; box-shadow: var(--shadow-btn) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-main);
  border-radius: 1px;
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  padding: 14px 28px 24px;
  gap: 2px;
}

.nav-mobile a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sub);
  border-bottom: 1px solid var(--line-soft);
}

.nav-mobile a:last-child { border-bottom: none; color: var(--green-dark); font-weight: 700; }
.nav-mobile.open { display: flex; }

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  padding: 168px 0 96px;
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--green-tint) 0%, transparent 62%),
    radial-gradient(820px 520px at -6% 110%, var(--blue-tint) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
  border: 1px solid var(--green-light);
  box-shadow: var(--shadow-xs);
}

.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green-mid);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92,158,106,0.18);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 24px;
  word-break: keep-all;
}

.hero-title em {
  font-style: normal;
  color: var(--green-dark);
  position: relative;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 38px;
  max-width: 520px;
  word-break: keep-all;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 100px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: #245733;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(47,110,62,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--green-light);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  background: var(--green-tint);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.stat-item { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero visual */
.hero-visual { position: relative; }

.hero-card-stack {
  display: grid;
  gap: 14px;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-card:nth-child(even) { margin-left: 24px; }
.hero-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.hero-card .icon-chip { width: 46px; height: 46px; }

.hero-card-text .title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
}

.hero-card-text .desc {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ─── About ──────────────────────────────────────────────── */
#about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: start;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 16px; top: 34px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  z-index: 1;
}

.timeline-content .year {
  font-size: 11.5px;
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.timeline-content .text {
  font-size: 14.5px;
  color: var(--text-sub);
  margin-top: 3px;
  line-height: 1.65;
  word-break: keep-all;
}

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

.value-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--line-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.value-card .icon-chip {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.value-card .icon-chip svg { width: 20px; height: 20px; }

.value-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 7px;
}

.value-card p {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.72;
  word-break: keep-all;
}

/* ─── Business ───────────────────────────────────────────── */
#business { background: var(--cream); }

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.biz-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.biz-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.biz-card .icon-chip {
  width: 54px; height: 54px;
  margin-bottom: 20px;
}
.biz-card .icon-chip svg { width: 26px; height: 26px; }

.biz-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 11px;
  word-break: keep-all;
}

.biz-card p {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.78;
  word-break: keep-all;
}

/* ─── Brands ─────────────────────────────────────────────── */
#brands { background: var(--white); }

.brands-intro { margin-bottom: 56px; }

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

.brand-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.brand-header {
  padding: 38px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.brand-header--saramflower { background: linear-gradient(140deg, #DCEBF4 0%, #EAF2F8 100%); }
.brand-header--sonamu      { background: linear-gradient(140deg, #D7E9D9 0%, #EEF6EF 100%); }
.brand-header--daisy       { background: linear-gradient(140deg, #F6E6DC 0%, #FBF1E9 100%); }

.brand-emblem {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 14px rgba(35,40,38,0.08);
}
.brand-emblem svg { width: 32px; height: 32px; }

.brand-header--saramflower .brand-emblem { color: var(--blue); }
.brand-header--sonamu      .brand-emblem { color: var(--green-dark); }
.brand-header--daisy       .brand-emblem { color: #D98A5E; }

.brand-name-block .ko {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  letter-spacing: -0.01em;
}

.brand-name-block .en {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-top: 3px;
  display: block;
}

.brand-body {
  padding: 26px 30px 30px;
  background: var(--white);
  flex: 1;
}

.brand-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
  word-break: keep-all;
}

.brand-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.78;
  word-break: keep-all;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.chip {
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ─── Products ───────────────────────────────────────────── */
#products { background: var(--cream); }

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

.product-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 16px 22px;
  text-align: center;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-item:hover {
  transform: translateY(-5px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-card);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #F1EFEA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-item:hover .product-img-wrap img { transform: scale(1.06); }

.product-img-icon {
  background: var(--green-tint);
  color: var(--green-dark);
}
.product-img-icon svg { width: 56px; height: 56px; }

.product-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  word-break: keep-all;
  line-height: 1.4;
}

.product-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.5;
}

.products-note {
  margin-top: 34px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ─── Inquiry form ───────────────────────────────────────── */
#inquiry { background: var(--white); }

.inquiry-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.inquiry-info { padding-top: 6px; }

.inquiry-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
}

.inquiry-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-sub);
  word-break: keep-all;
}

.inquiry-point svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--green-mid);
  margin-top: 1px;
}

.inquiry-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid var(--line-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text-main);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(92,158,106,0.12);
}

.form-group textarea { resize: vertical; min-height: 116px; }
.form-group select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238C938E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 6px;
  box-shadow: var(--shadow-btn);
}

.form-submit:hover {
  background: #245733;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(47,110,62,0.3);
}

/* ─── Contact / Map ──────────────────────────────────────── */
#contact { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: stretch;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-item:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }

.contact-item .icon-chip {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
}
.contact-item .icon-chip svg { width: 21px; height: 21px; }

.contact-item-text .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item-text .value {
  font-size: 15px;
  color: var(--text-main);
  margin-top: 3px;
  word-break: keep-all;
}

.map-area {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  background: var(--beige);
  display: flex;
  flex-direction: column;
}

.map-area iframe {
  width: 100%;
  flex: 1;
  min-height: 460px;
  border: 0;
  display: block;
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 16px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid var(--line-soft);
  transition: background var(--transition);
}

.map-link svg { width: 17px; height: 17px; }
.map-link:hover { background: var(--green-tint); }

/* ─── Warehouse section ──────────────────────────────────── */
.warehouse-section {
  background: var(--cream);
  padding: 104px 0;
}

.warehouse-label { margin-bottom: 32px; }

.warehouse-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  line-height: 0;
}

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

.warehouse-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.w-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  word-break: keep-all;
}

.w-badge svg {
  width: 22px; height: 22px;
  color: var(--green-dark);
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: #1C2620;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand .name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

.footer-brand .tagline {
  font-size: 12.5px;
  margin-top: 6px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.95); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 12px; }

.footer-brands { display: flex; gap: 10px; }

.footer-brand-chip {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ─── Scroll-to-top ──────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  font-size: 19px;
  z-index: 999;
}

#scrollTop.visible { opacity: 1; transform: none; pointer-events: all; }
#scrollTop:hover { background: #245733; transform: translateY(-2px); }

/* ─── Success message ────────────────────────────────────── */
.form-success {
  display: none;
  background: var(--green-tint);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-align: center;
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 16px;
  font-size: 15px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual       { display: none; }
  .about-inner       { grid-template-columns: 1fr; gap: 44px; }
  .business-grid     { grid-template-columns: 1fr 1fr; }
  .brand-cards       { grid-template-columns: 1fr; max-width: 460px; }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .warehouse-badges  { grid-template-columns: repeat(2, 1fr); }
  .inquiry-inner     { grid-template-columns: 1fr; gap: 44px; }
  .contact-inner     { grid-template-columns: 1fr; gap: 36px; }
  .nav-links         { display: none; }
  .nav-hamburger     { display: flex; }
  section            { padding: 72px 0; }
  .warehouse-section { padding: 72px 0; }
  #hero              { padding: 136px 0 72px; }
}

@media (max-width: 600px) {
  .container       { padding: 0 20px; }
  .business-grid   { grid-template-columns: 1fr; }
  .about-values    { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .warehouse-badges{ grid-template-columns: 1fr; }
  .hero-stats      { gap: 24px; }
  .form-row        { grid-template-columns: 1fr; }
  .inquiry-form    { padding: 26px 22px; }
  .footer-top      { flex-direction: column; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; }
  .hero-actions    { flex-direction: column; }
  .btn-primary,
  .btn-secondary   { justify-content: center; }
  .hero-card:nth-child(even) { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ─── Hero animated background ────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  will-change: transform;
}

.hero-orb--1 {
  width: 440px; height: 440px;
  top: -90px; right: -50px;
  background: radial-gradient(circle at 32% 30%, rgba(92,158,106,0.50), transparent 70%);
  animation: orbFloat1 19s ease-in-out infinite;
}

.hero-orb--2 {
  width: 380px; height: 380px;
  bottom: -120px; left: -60px;
  background: radial-gradient(circle at 40% 40%, rgba(60,111,166,0.34), transparent 70%);
  animation: orbFloat2 23s ease-in-out infinite;
}

.hero-orb--3 {
  width: 320px; height: 320px;
  top: 36%; left: 52%;
  background: radial-gradient(circle at 50% 50%, rgba(214,233,217,0.65), transparent 70%);
  animation: orbFloat3 27s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-44px, 54px) scale(1.12); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(52px, -42px) scale(1.1); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-34px, -30px) scale(0.88); }
}

/* ─── Feature products (대표 제품) ───────────────────────── */
.feature-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.fproduct {
  display: grid;
  grid-template-columns: 226px 1fr;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fproduct:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.fproduct-media {
  position: relative;
  background: #F4F2EE;
  overflow: hidden;
}

.fproduct-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.45s ease;
}

.fproduct:hover .fproduct-media img { transform: scale(1.04); }

.fproduct-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  padding: 5px 13px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

.fproduct-tag--green  { background: var(--green-dark); }
.fproduct-tag--red    { background: #C75450; }
.fproduct-tag--purple { background: #6B5096; }
.fproduct-tag--flower { background: #C77E9B; }
.fproduct-tag--daisy  { background: #E0A53A; }

.fproduct-body { padding: 26px 26px 22px; }

.fproduct-type {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.fproduct-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 11px;
  word-break: keep-all;
}

.fproduct-desc {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.72;
  word-break: keep-all;
  margin-bottom: 16px;
}

.fproduct-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.fproduct-feats span {
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
}

.fproduct-specs {
  display: flex;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

.fproduct-specs > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 12px;
}

.fproduct-specs > div + div {
  border-left: 1px solid var(--line-soft);
  padding-left: 16px;
}

.fproduct-specs dt {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.fproduct-specs dd {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 700;
}

.products-subtitle {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 64px;
}

.products-subtitle + .products-grid { margin-top: 22px; }

@media (max-width: 960px) {
  .feature-products { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .fproduct { grid-template-columns: 1fr; }
  .fproduct-media { aspect-ratio: 4 / 3; }
  .map-area iframe { min-height: 340px; }
}

/* ─── Value band (유통구조 강조) ──────────────────────────── */
.value-band {
  background: linear-gradient(135deg, #245733 0%, #2F6E3E 55%, #3a8a52 100%);
  color: rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}

.value-band::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.value-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-label--light { color: #BFE6C7; }
.section-label--light::before { background: #BFE6C7; }

.value-band-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 18px;
  word-break: keep-all;
}

.value-band-title em {
  font-style: normal;
  color: #F3D88A;
}

.value-band-desc {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  word-break: keep-all;
}

.value-band-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vb-point {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.vb-point svg {
  width: 26px; height: 26px;
  color: #BFE6C7;
  flex-shrink: 0;
}

.vb-point strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
}

.vb-point span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-top: 2px;
}

/* ─── Origin lineup (수입·국산 기저귀) ───────────────────── */
.origin-block { margin-top: 60px; }

.origin-lead {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.8;
  max-width: 760px;
  margin-top: 6px;
  word-break: keep-all;
}

.origin-lead strong { color: var(--green-dark); font-weight: 700; }

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

.origin-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}

.origin-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.origin-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 34px;
  border-radius: 7px;
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.origin-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 7px;
}

.origin-card p {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.7;
  word-break: keep-all;
}

@media (max-width: 960px) {
  .value-band-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .origin-grid { grid-template-columns: 1fr; }
}

/* ─── Mobile polish (모바일 최적화) ──────────────────────── */
@media (max-width: 600px) {
  .nav-inner         { height: 62px; }
  .nav-logo-img      { width: 38px; height: 38px; }
  #hero              { padding: 116px 0 60px; }
  .hero-eyebrow      { font-size: 11.5px; padding: 7px 14px; margin-bottom: 20px; }
  .hero-title        { font-size: 30px; line-height: 1.3; margin-bottom: 18px; }
  .hero-sub          { font-size: 15px; line-height: 1.8; margin-bottom: 30px; }
  .hero-stats        { margin-top: 34px; padding-top: 26px; gap: 22px; }
  .stat-num          { font-size: 24px; }
  .stat-label        { font-size: 11.5px; }

  .section-title     { font-size: 25px; }
  .section-desc      { font-size: 15px; }
  .section-label     { font-size: 11px; }

  .biz-card          { padding: 28px 24px; }
  .value-band-title  { font-size: 25px; line-height: 1.34; }
  .value-band-desc   { font-size: 14.5px; }
  .vb-point          { padding: 15px 16px; }

  .feature-products  { margin-top: 36px; gap: 18px; }
  .fproduct-media    { aspect-ratio: 1 / 1; max-height: 300px; }
  .fproduct-body     { padding: 22px 20px 20px; }
  .fproduct-body h3  { font-size: 18.5px; }

  .products-subtitle { font-size: 19px; margin-top: 48px; }
  .origin-block      { margin-top: 44px; }
  .origin-lead       { font-size: 13.5px; }
  .products-note     { font-size: 12.5px; line-height: 1.7; }

  .warehouse-img-wrap{ border-radius: var(--radius-md); }
  .contact-item      { padding: 16px 16px; }
}

@media (max-width: 380px) {
  .hero-title        { font-size: 27px; }
  .hero-stats        { flex-wrap: wrap; gap: 16px 28px; }
  .stat-item         { flex: 0 0 calc(50% - 14px); }
  .products-grid     { gap: 12px; }
  .product-item      { padding: 12px 10px 16px; }
}

/* ─── Mobile sticky CTA bar ──────────────────────────────── */
.mobile-cta-bar { display: none; }

@media (max-width: 600px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1001;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-top: 1px solid var(--line-soft);
    box-shadow: 0 -4px 20px rgba(35,40,38,0.06);
  }

  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 50px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
  }

  .mobile-cta-bar svg { width: 18px; height: 18px; }

  .mcta-call {
    background: var(--green-tint);
    color: var(--green-dark);
    border: 1.5px solid var(--green-light);
  }

  .mcta-inq {
    background: var(--green-dark);
    color: #fff;
    box-shadow: var(--shadow-btn);
  }

  body      { padding-bottom: 76px; }
  #scrollTop{ bottom: 86px; width: 42px; height: 42px; }
}
