:root {
  --page: #fbfdf9;
  --surface: #ffffff;
  --surface-soft: #f4faf6;
  --surface-mint: #e8f5ee;
  --surface-cream: #fbf5e9;
  --surface-blue: #eef8f8;
  --line: #dfeae2;
  --line-strong: #c9d8ce;
  --ink: #24342c;
  --ink-soft: #435247;
  --muted: #6e7d72;
  --brand: #68856e;
  --brand-deep: #496750;
  --mint: #b9d9c5;
  --aqua: #bde4df;
  --cream: #efe0c4;
  --accent: #8abca0;
  --shadow: 0 24px 60px rgba(56, 83, 65, 0.12);
  --shadow-soft: 0 14px 34px rgba(56, 83, 65, 0.09);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 0%, rgba(189, 228, 223, 0.45), transparent 30rem),
    radial-gradient(circle at 94% 8%, rgba(239, 224, 196, 0.55), transparent 30rem),
    linear-gradient(180deg, #fbfdf9 0%, #f7fbf7 45%, #fbfdf9 100%);
  line-height: 1.65;
  word-break: keep-all;
}

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

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

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 253, 249, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 216, 206, 0.72);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(145deg, #fff, var(--surface-mint));
  color: var(--brand-deep);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(56, 83, 65, 0.08);
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: .58rem .8rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: .62rem .82rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  background: var(--surface-mint);
  color: var(--brand-deep);
  outline: none;
}

.nav .language {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.7);
}

main {
  overflow: hidden;
}

.section {
  padding: 108px 0;
}

.section.compact {
  padding: 72px 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 78px 0 86px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: .5rem .85rem;
  color: var(--brand-deep);
  background: rgba(232, 245, 238, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(138, 188, 160, 0.16);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6.1vw, 80px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.hero h1 .soft,
.page-hero h1 .soft {
  color: var(--brand);
}

.lead {
  margin-top: 26px;
  color: var(--ink-soft);
  max-width: 700px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.78;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand-deep);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(73, 103, 80, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(73, 103, 80, .23);
  outline: none;
}

.button.secondary {
  background: rgba(255,255,255,.78);
  color: var(--brand-deep);
  border-color: var(--line-strong);
  box-shadow: none;
}

.hero-card {
  position: relative;
  min-height: 530px;
  padding: clamp(24px, 3.8vw, 40px);
  border: 1px solid rgba(201, 216, 206, 0.88);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(189, 228, 223, .62), transparent 17rem),
    radial-gradient(circle at 90% 12%, rgba(239, 224, 196, .58), transparent 16rem),
    rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(104, 133, 110, .18);
  border-radius: 50%;
}

.energy-orbit {
  position: absolute;
  inset: 68px 78px auto auto;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  border: 1px solid rgba(104, 133, 110, .24);
}

.energy-orbit::before,
.energy-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(104, 133, 110, .22);
  box-shadow: var(--shadow-soft);
}

.energy-orbit::before {
  width: 116px;
  height: 116px;
  left: 56px;
  top: 56px;
  background: linear-gradient(145deg, #fff, var(--surface-mint));
}

.energy-orbit::after {
  width: 34px;
  height: 34px;
  right: -12px;
  top: 42px;
  background: var(--surface-cream);
}

.hero-panel-title {
  position: relative;
  z-index: 2;
  max-width: 320px;
  color: var(--brand-deep);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-panel-copy {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 28px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.hero-chip-wrap {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 42px);
  right: clamp(20px, 4vw, 42px);
  bottom: clamp(22px, 3.8vw, 38px);
  display: grid;
  gap: 12px;
}

.hero-chip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(201, 216, 206, .82);
  box-shadow: 0 12px 24px rgba(56, 83, 65, .07);
}

.hero-chip strong {
  color: var(--ink);
  font-size: 15px;
}

.hero-chip span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.metric-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}

.metric {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--brand-deep);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.04em;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}


.section-head.clean {
  grid-template-columns: minmax(0, 1fr);
  max-width: 880px;
}

.section-kicker {
  color: var(--brand-deep);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.16;
  letter-spacing: -.045em;
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.panel.padded {
  padding: clamp(24px, 4vw, 44px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, .96fr);
  gap: 24px;
  align-items: stretch;
}

.about-copy {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #fff, var(--surface-soft));
}

.about-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.2;
  letter-spacing: -.04em;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-badge {
  margin-top: 32px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  padding: .6rem .85rem;
  border-radius: 999px;
  background: var(--surface-mint);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 13px;
}

.value-grid,
.platform-grid,
.brand-grid,
.business-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

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

.value-card,
.platform-card,
.brand-card,
.business-card,
.proof-card,
.tech-edge-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(56, 83, 65, .055);
}

.value-card strong,
.platform-card strong,
.proof-card strong {
  display: block;
  color: var(--brand-deep);
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.value-card h3,
.platform-card h3,
.brand-card h3,
.business-card h3,
.proof-card h3,
.tech-edge-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.value-card p,
.platform-card p,
.brand-card p,
.business-card p,
.proof-card p,
.tech-edge-card p,
.note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.vision-band {
  position: relative;
  background: linear-gradient(145deg, var(--surface-mint), #fff 52%, var(--surface-cream));
}

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

.platform-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
}

.platform-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: var(--surface-mint);
  opacity: .72;
}

.platform-number {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 24px;
  background: var(--surface-mint);
  color: var(--brand-deep);
  font-weight: 900;
  border: 1px solid var(--line);
}

.platform-list,
.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.platform-list li,
.clean-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.platform-list li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--accent);
}

.tech-edge-wrap {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tech-edge-card {
  padding: 20px;
  background: rgba(255,255,255,.72);
}

.tech-edge-card .tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.proof-card {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.proof-card .big {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-deep);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
}

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

.brand-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.brand-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(189, 228, 223, .68), transparent 58%),
    linear-gradient(145deg, var(--surface-soft), #fff);
  color: var(--brand-deep);
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
}

.brand-card .category {
  color: var(--brand-deep);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--brand-deep);
  font-weight: 900;
  border-bottom: 1px solid rgba(73, 103, 80, .35);
}

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

.business-card {
  min-height: 250px;
  background: linear-gradient(145deg, #fff, var(--surface-soft));
}

.business-card .num {
  display: block;
  margin-bottom: 28px;
  color: rgba(73, 103, 80, .48);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(189, 228, 223, .48), transparent 20rem),
    #fff;
}

.contact-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row dt {
  color: var(--brand-deep);
  font-weight: 900;
}

.contact-row dd {
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  padding: 90px 0 56px;
}

.page-hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(189,228,223,.45), transparent 24rem),
    radial-gradient(circle at 90% 0%, rgba(239,224,196,.48), transparent 24rem),
    rgba(255,255,255,.8);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 58px);
}

.vision-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.flow-card::after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-weight: 900;
}

.flow-card:last-child::after {
  content: "";
}

.flow-card strong {
  display: block;
  color: var(--brand-deep);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer {
  padding: 38px 0 44px;
  background: rgba(255,255,255,.74);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
}

.disclaimer {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.68);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.legal h2,
.legal h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  letter-spacing: -.025em;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .platform-grid,
  .proof-grid,
  .tech-edge-wrap,
  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(1),
  .metric:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav a {
    padding: .86rem 1rem;
  }

  .section,
  .section.compact {
    padding: 74px 0;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 70px;
  }

  .hero-card {
    min-height: 460px;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .platform-grid,
  .proof-grid,
  .tech-edge-wrap,
  .brand-grid,
  .business-grid,
  .value-grid,
  .vision-flow {
    grid-template-columns: 1fr;
  }

  .flow-card::after {
    content: "↓";
    right: 24px;
    top: auto;
    bottom: -21px;
    transform: none;
  }

  .flow-card:last-child::after {
    content: "";
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero h1,
  .page-hero h1 {
    font-size: 39px;
  }

  .hero-card {
    min-height: 420px;
  }

  .energy-orbit {
    width: 190px;
    height: 190px;
    inset: 84px 42px auto auto;
  }

  .hero-panel-copy {
    font-size: 23px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* 2026-06-10 revision: requested copy cleanup + brand image placement */
.brand-word {
  font-size: 21px;
  letter-spacing: .34em;
  line-height: 1;
}
.brand-mark {
  font-size: 0;
  position: relative;
}
.brand-mark::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--brand-deep);
  box-shadow: inset 7px 0 0 rgba(104,133,110,.18);
}
.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 216, 206, .86);
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 520px;
}
.hero-media-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.hero-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(255,255,255,.72));
  pointer-events: none;
}
.hero-media-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: .7rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  color: var(--brand-deep);
  font-weight: 900;
  font-size: 13px;
}
.lead .lead-strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 10px;
}
.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.image-panel.small img,
.image-panel.small {
  min-height: 320px;
}
.about-copy.compact-about {
  min-height: 460px;
}
.about-copy.compact-about p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}
.vision-goal-layout {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(320px,1.08fr);
  gap: 24px;
  align-items: stretch;
}
.vision-statement {
  background: linear-gradient(145deg, #fff, var(--surface-soft));
}
.vision-statement h3 {
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.23;
  letter-spacing: -.04em;
}
.goal-list {
  display: grid;
  gap: 14px;
}
.goal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(56,83,65,.055);
}
.goal-card strong {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.goal-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  letter-spacing: -.025em;
}
.goal-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}
.visual-band {
  padding: 72px 0;
  background: linear-gradient(145deg, rgba(232,245,238,.62), rgba(255,255,255,.72));
}
.visual-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}
.visual-stack {
  display: grid;
  gap: 20px;
}
.visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(201,216,206,.8);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.visual-card.tall {
  min-height: 740px;
}
.visual-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(26,46,35,.36));
  pointer-events: none;
}
.visual-label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  padding: .62rem .9rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(36,52,44,.42);
  backdrop-filter: blur(10px);
  font-weight: 900;
  font-size: 13px;
}
.tech-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.tech-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #fff;
  min-height: 420px;
  box-shadow: var(--shadow-soft);
}
.tech-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.tech-visual-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.76);
}
.tech-visual-copy strong {
  display: block;
  color: var(--brand-deep);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tech-visual-copy h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -.025em;
}
.brand-grid.brand-image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.brand-card.brand-image-card {
  min-height: auto;
  padding: 0;
  overflow: hidden;
}
.brand-card.brand-image-card .brand-thumb {
  aspect-ratio: 16/10;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.brand-card.brand-image-card .brand-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-card.brand-image-card .brand-body {
  padding: 22px;
}
.brand-card.brand-image-card h3 {
  font-size: 24px;
}
.footer-contact {
  margin-top: 8px;
  color: var(--ink-soft);
}
@media (max-width: 1080px) {
  .vision-goal-layout,
  .visual-grid,
  .tech-visual-grid,
  .brand-grid.brand-image-grid {
    grid-template-columns: 1fr;
  }
  .visual-card.tall { min-height: 420px; }
}
@media (max-width: 820px) {
  .hero-media-card,
  .hero-media-card img,
  .image-panel,
  .image-panel img,
  .tech-visual-card,
  .tech-visual-card img {
    min-height: 340px;
  }
  .brand-word { font-size: 17px; letter-spacing: .18em; }
}


/* 2026-06-10 logo reflection */
.brand {
  gap: 0;
  letter-spacing: 0;
  text-transform: none;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: clamp(220px, 24vw, 330px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
@media (max-width: 820px) {
  .brand-logo {
    width: clamp(170px, 52vw, 220px);
    max-height: 36px;
  }
  .header-inner {
    gap: 14px;
  }
}
@media (max-width: 420px) {
  .brand-logo {
    width: 170px;
  }
}


/* 2026-06-12 brand restoration: Skin Vegetarian + GATZMEN */
.brand-grid.brand-image-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: stretch;
}
.brand-card.brand-image-card .brand-thumb {
  aspect-ratio: 16 / 11;
}
.brand-card.brand-image-card .brand-body p:not(.category) {
  min-height: 4.9em;
}
.brand-feature-list {
  margin-top: 34px;
  display: grid;
  gap: 26px;
}
.brand-feature {
  display: grid;
  grid-template-columns: minmax(260px, .46fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.brand-feature.dark-feature {
  background: linear-gradient(145deg, rgba(36,52,44,.92), rgba(255,255,255,.82) 46%, rgba(255,255,255,.86));
}
.brand-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: clamp(12px, 2vw, 24px);
}
.brand-feature-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -.04em;
}
.brand-feature-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}
.dark-feature .brand-feature-copy h3,
.dark-feature .brand-feature-copy p:not(.section-kicker) {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.12);
}
.dark-feature .brand-feature-copy .section-kicker {
  color: #dfeae2;
}
.brand-feature-images {
  display: grid;
  gap: 14px;
}
.brand-feature-images.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.brand-feature-images img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(201,216,206,.86);
  box-shadow: 0 18px 42px rgba(36,52,44,.12);
}
@media (max-width: 1080px) {
  .brand-feature {
    grid-template-columns: 1fr;
  }
  .brand-feature.dark-feature {
    background: rgba(36,52,44,.92);
  }
}
@media (max-width: 720px) {
  .brand-feature-images.two-up {
    grid-template-columns: 1fr;
  }
  .brand-feature-images img {
    min-height: 260px;
  }
}
/* 2026-06-12 new official logo sizing */
.brand-logo {
  width: clamp(230px, 26vw, 370px);
  max-height: 46px;
}
@media (max-width: 820px) {
  .brand-logo {
    width: clamp(180px, 54vw, 240px);
  }
}


/* 2026-06-12 all brand detail feature sections */
.feature-ciracle {
  background: linear-gradient(145deg, rgba(255,248,241,.98), rgba(255,255,255,.9));
}
.feature-zymogen {
  background: linear-gradient(145deg, rgba(247,250,248,.98), rgba(255,255,255,.9));
}
.feature-osum {
  background: linear-gradient(145deg, rgba(244,249,242,.98), rgba(255,255,255,.9));
}
.feature-skinveg {
  background: linear-gradient(145deg, rgba(247,249,248,.98), rgba(255,255,255,.9));
}
.feature-gatzmen {
  background: linear-gradient(145deg, rgba(36,52,44,.92), rgba(255,255,255,.82) 46%, rgba(255,255,255,.86));
}
.brand-feature-copy .section-kicker {
  margin-bottom: 10px;
}
@media (max-width: 1080px) {
  .feature-gatzmen {
    background: rgba(36,52,44,.92);
  }
}


/* 2026-06-12: brand detail sections use one hero image and brand cards include homepage links */
.brand-home-link {
  margin-top: 18px;
  align-self: flex-start;
  padding-bottom: 3px;
}
.brand-card.brand-image-card .brand-body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.brand-card.brand-image-card .brand-body .brand-home-link {
  margin-top: auto;
}
.brand-feature-images.single {
  grid-template-columns: 1fr;
}
.brand-feature-images.single img {
  min-height: 330px;
  max-height: 420px;
  object-position: center;
}
.feature-ciracle .brand-feature-images.single img,
.feature-zymogen .brand-feature-images.single img,
.feature-osum .brand-feature-images.single img,
.feature-skinveg .brand-feature-images.single img,
.feature-gatzmen .brand-feature-images.single img {
  width: 100%;
}
@media (max-width: 720px) {
  .brand-card.brand-image-card .brand-body { min-height: auto; }
  .brand-feature-images.single img { min-height: 240px; max-height: none; }
}
