:root {
  --ink: #101923;
  --soft: #52606b;
  --muted: #76826f;
  --line: #e2e7e1;
  --paper: #fff;
  --surface: #f7faf6;
  --green: #2f7a45;
  --green-dark: #163522;
  --navy: #0c1b33;
  --ease: cubic-bezier(.2,.82,.2,1);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: SUIT, "Noto Sans KR", -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.68;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 76px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16,25,35,.07);
}
.topbar .inner { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: inline-block;
  width: 86px;
  height: 30px;
  background: url("./images/tgm_001.png") center / contain no-repeat;
  filter: invert(1);
  overflow: hidden;
  text-indent: -999px;
}
.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #536258;
  font-size: 13px;
  font-weight: 800;
}
.nav a:hover, .nav a.active { color: #102016; background: #f1f5f0; }
.hero {
  min-height: 430px;
  padding: 150px 0 72px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center / cover no-repeat;
  opacity: .42;
  filter: saturate(.84) contrast(.94);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,17,31,.38), rgba(8,17,31,.78));
}
.hero .container { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.06;
  letter-spacing: -.02em;
}
.hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.45vw, 19px);
}
.subnav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.subnav .container { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0; }
.subnav a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}
.subnav a.active { background: var(--green); border-color: var(--green); color: #fff; }
section { padding: 86px 0; }
.section-head { margin-bottom: 30px; }
.kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -.02em;
}
.lead { margin: 14px 0 0; max-width: 760px; color: var(--soft); }
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.visual {
  min-height: 390px;
  border-radius: 8px;
  overflow: hidden;
  background: #e7eee8;
}
.visual img { height: 100%; object-fit: cover; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,25,35,.055);
}
.card img.icon { width: 44px; height: 44px; object-fit: contain; margin-bottom: 18px; }
.card h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--soft); font-size: 15px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.step {
  padding: 24px;
  min-height: 210px;
  border-right: 1px solid var(--line);
  background: #fff;
}
.step:last-child { border-right: 0; }
.step small { color: var(--green); font-weight: 900; }
.step strong { display: block; margin-top: 12px; font-size: 24px; }
.step p { margin: 16px 0 0; color: var(--soft); font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.product figure { margin: 0; aspect-ratio: 1 / 1; background: #f1f5f0; }
.product figure img { height: 100%; object-fit: cover; }
.product div { padding: 16px; }
.product strong { display: block; font-size: 18px; }
.product span { display: block; margin-top: 6px; color: var(--soft); font-size: 13px; }
.notice-list { border-top: 1px solid var(--line); }
.notice-row {
  display: grid;
  grid-template-columns: 130px 1fr 120px;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.notice-row strong { font-size: 19px; }
.notice-row span, .notice-row time { color: var(--soft); font-size: 14px; }
.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}
.contact-stack {
  display: grid;
  gap: 14px;
}
.contact-card {
  min-height: 122px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,25,35,.05);
}
.contact-card small {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-card strong {
  display: block;
  margin-top: 9px;
  font-size: 23px;
  line-height: 1.25;
}
.contact-card span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 14px;
}
.inquiry-panel {
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.inquiry-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(47,122,69,.24), transparent 42%),
    url("../assets/images/tgm_030.png") center / cover no-repeat;
  opacity: .12;
}
.inquiry-panel > * { position: relative; z-index: 1; }
.inquiry-panel .kicker { color: #9fd8ad; }
.inquiry-panel h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
}
.inquiry-panel .lead { color: rgba(255,255,255,.76); }
.contact-form {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255,255,255,.09);
  color: #fff;
  font: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.58); }
.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 132px;
  resize: vertical;
}
.contact-form button {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
}
.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #102016;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.toast.show { opacity: 1; transform: translateY(0); }
.map-card {
  margin-top: 16px;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47,122,69,.12), rgba(12,27,51,.06)),
    #edf3ef;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}
.map-card img { width: 58px; height: 58px; object-fit: contain; margin: 0 auto 18px; }
.map-card strong { display: block; font-size: clamp(24px, 3vw, 36px); letter-spacing: -.02em; }
.map-card span { display: block; margin-top: 10px; color: var(--soft); }
.cta-band {
  padding: 72px 0;
  background: var(--navy);
  color: #fff;
}
.cta-band p { color: rgba(255,255,255,.74); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.secondary:hover { background: var(--surface); }
.page-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.business-hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.business-hero::before { opacity: .52; filter: saturate(.82) contrast(.92) brightness(.82); }
.business-hero::after {
  background:
    linear-gradient(90deg, rgba(8,17,31,.82), rgba(8,17,31,.42) 54%, rgba(8,17,31,.64)),
    linear-gradient(180deg, rgba(8,17,31,.22), rgba(8,17,31,.84));
}
.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 800;
}
.export-overview {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47,122,69,.08), rgba(12,27,51,.04)),
    #fff;
  padding: 30px;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.map-panel img {
  max-width: 360px;
  width: min(82%, 360px);
  margin: 0 auto;
}
.region-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,25,35,.055);
  padding: 30px;
}
.region-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.region-item {
  padding: 17px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid #edf1eb;
}
.region-item strong {
  display: block;
  color: var(--green);
  font-size: 17px;
  margin-bottom: 6px;
}
.region-item span { color: var(--soft); font-size: 14px; }
.variety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.variety-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16,25,35,.05);
}
.variety-card figure { margin: 0; aspect-ratio: 4 / 3; background: #edf3ef; }
.variety-card img { height: 100%; object-fit: cover; }
.variety-card div { padding: 18px; }
.variety-card strong { display: block; font-size: 22px; }
.variety-card span { display: block; margin-top: 7px; color: var(--soft); font-size: 14px; }
.season-strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.month {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f1f4f0;
  color: #96a094;
  font-weight: 900;
  font-size: 13px;
}
.month.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(47,122,69,.2);
}
.export-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.export-step {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}
.export-step img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.export-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,17,31,.1), rgba(8,17,31,.82));
}
.export-step:hover img { transform: scale(1.05); opacity: .88; }
.export-step div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.export-step small {
  color: rgba(255,255,255,.7);
  font-weight: 900;
  letter-spacing: .08em;
}
.export-step strong {
  display: block;
  margin-top: 8px;
  font-size: 23px;
  line-height: 1.2;
}
.export-step p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.business-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.business-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,25,35,.05);
}
.business-step figure {
  margin: 0;
  aspect-ratio: 183 / 180;
  background: #edf3ef;
}
.business-step img { height: 100%; object-fit: cover; }
.business-step div { padding: 18px; }
.business-step small {
  color: var(--green);
  font-weight: 900;
  letter-spacing: .08em;
}
.business-step strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.25;
}
.business-step p {
  margin: 9px 0 0;
  color: var(--soft);
  font-size: 14px;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.country-card {
  min-height: 120px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(47,122,69,.1), rgba(12,27,51,.04)),
    #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}
.country-card strong { display: block; font-size: 24px; }
.country-card span { display: block; margin-top: 6px; color: var(--soft); font-size: 14px; }
.business-cta {
  background: var(--navy);
  color: #fff;
}
.business-cta .kicker { color: #9fd8ad; }
.business-cta .lead { color: rgba(255,255,255,.76); }
.business-cta .btn.secondary {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.24);
  color: #fff;
}
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: #667268;
  background: #f8faf8;
  font-size: 13px;
}
.footer .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .split, .grid, .contact-panel, .contact-layout, .export-overview { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .export-steps, .business-steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step { border-bottom: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .container { width: min(1160px, calc(100% - 28px)); }
  .topbar, .topbar .inner { height: 66px; }
  .nav { display: none; }
  .hero { min-height: 360px; padding: 116px 0 54px; }
  .business-hero { min-height: 470px; }
  section { padding: 64px 0; }
  .process-grid, .product-grid, .variety-grid, .export-steps, .business-steps, .country-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .region-list { grid-template-columns: 1fr; }
  .season-strip { grid-template-columns: repeat(6, 1fr); padding: 12px; }
  .month { min-height: 48px; }
  .step { border-right: 0; }
  .notice-row { grid-template-columns: 1fr; gap: 4px; }
}
