/* ============================================================
   THE GLOW LAB — Korean Beauty Export
   Shared design system
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Warm neutrals */
  --ivory:        #FBF8F1;
  --cream:        #F4ECDD;
  --cream-2:      #EFE6D3;
  --beige:        #E6D9BF;
  --beige-line:   #E3D6BC;

  /* Gold */
  --gold:         #C2A05B;
  --gold-deep:    #A8843F;
  --gold-soft:    #D9C293;
  --gold-pale:    #EBDCB8;
  --gold-grad:    linear-gradient(135deg, #E2CE9C 0%, #C2A05B 42%, #A8843F 72%, #CBAA68 100%);

  /* Ink */
  --ink:          #2A2620;
  --ink-soft:     #6E6557;
  --ink-faint:    #9A9082;

  /* Dark surfaces */
  --espresso:     #2C231A;
  --espresso-2:   #3A2E22;
  --espresso-3:   #241C14;

  --white:        #FFFFFF;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Metrics */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 3px rgba(42,38,32,.05), 0 8px 24px rgba(42,38,32,.05);
  --shadow-md: 0 4px 14px rgba(42,38,32,.07), 0 24px 60px rgba(42,38,32,.09);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Language toggle ---------- */
html.lang-ru [data-lang="en"] { display: none !important; }
html.lang-en [data-lang="ru"] { display: none !important; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-deep);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-deep);
  display: inline-block;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  margin-top: 18px;
  max-width: 18ch;
}
.section-title.wide { max-width: 24ch; }
.lead {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-top: 18px;
  max-width: 56ch;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .section-title, .center .lead { margin-inline: auto; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 26px;
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 4px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn i, .btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover i, .btn:hover svg { transform: translateX(5px); }

.btn--gold {
  background: var(--gold-grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(168,132,63,.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(168,132,63,.36); }

.btn--line {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--beige);
}
.btn--line:hover { box-shadow: inset 0 0 0 1px var(--gold); color: var(--gold-deep); }

.btn--ghost-light {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.btn--ghost-light:hover { box-shadow: inset 0 0 0 1px var(--gold-soft); color: var(--gold-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(251,248,241,.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--beige-line);
  box-shadow: 0 6px 30px rgba(42,38,32,.05);
}

/* logo */
.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo-mark {
  font-family: var(--serif); font-weight: 600;
  font-size: 30px; line-height: 1; letter-spacing: -.06em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: 13px;
  border-right: 1px solid var(--beige);
}
.over-hero:not(.scrolled) .logo-mark { border-right-color: rgba(255,255,255,.3); }
.logo-words { display: flex; flex-direction: column; gap: 3px; }
.logo-name {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; letter-spacing: .16em; line-height: 1;
  color: var(--ink); white-space: nowrap;
}
.logo-sub {
  font-size: 8.5px; font-weight: 600; letter-spacing: .32em;
  color: var(--gold-deep); line-height: 1; white-space: nowrap;
}
.over-hero:not(.scrolled) .logo-name { color: #fff; }
.over-hero:not(.scrolled) .logo-sub { color: var(--gold-soft); }

/* nav */
.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2vw, 36px); }
.nav-link {
  position: relative;
  font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: 6px;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-deep); transition: width .35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.over-hero:not(.scrolled) .nav-link { color: rgba(255,255,255,.82); }
.over-hero:not(.scrolled) .nav-link:hover,
.over-hero:not(.scrolled) .nav-link.active { color: #fff; }
.over-hero:not(.scrolled) .nav-link::after { background: var(--gold-soft); }

/* language switch */
.lang-switch { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; }
.lang-switch button { color: var(--ink-faint); transition: color .25s var(--ease); }
.lang-switch button.active { color: var(--gold-deep); }
.lang-switch .sep { color: var(--beige); }
.over-hero:not(.scrolled) .lang-switch button { color: rgba(255,255,255,.6); }
.over-hero:not(.scrolled) .lang-switch button.active { color: #fff; }
.over-hero:not(.scrolled) .lang-switch .sep { color: rgba(255,255,255,.35); }

/* mobile menu button */
.menu-btn { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--ink); }
.over-hero:not(.scrolled) .menu-btn { color: #fff; }
.menu-btn i { width: 24px; height: 24px; }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ivory);
  transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; padding: 28px var(--gutter);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .drawer-top { display: flex; justify-content: space-between; align-items: center; height: 56px; }
.mobile-drawer .drawer-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 30px; }
.mobile-drawer .drawer-nav a {
  font-family: var(--serif); font-size: 26px; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--beige-line);
}
.mobile-drawer .drawer-nav a.active { color: var(--gold-deep); }
.mobile-drawer .drawer-lang { margin-top: 34px; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden;
}
.hero-inner { flex: 1 0 auto; display: flex; align-items: center; }
.hero .hero-bg { position: absolute; inset: 0; z-index: 0; border-radius: 0; }
.hero .hero-bg::before { display: none; }
.hero .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28,22,16,.82) 0%, rgba(34,27,19,.55) 42%, rgba(44,35,26,.2) 100%);
}
.hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.4;
  max-width: none;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 640px; padding-block: clamp(120px, 18vh, 220px) clamp(60px, 9vh, 100px); }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 500; line-height: 1.02; margin-top: 22px;
}
.hero h1 em { font-style: italic; }
.hero .hero-sub { font-size: clamp(17px, 1.5vw, 20px); color: rgba(255,255,255,.86); margin-top: 24px; max-width: 44ch; }
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

/* trust band */
.trust-band { position: relative; z-index: 2; background: rgba(36,28,20,.72); backdrop-filter: blur(6px); border-top: 1px solid rgba(216,194,147,.18); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 18px; padding: 30px clamp(8px,2vw,28px); color: #fff; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.1); padding-left: clamp(20px,3vw,44px); }
.trust-ic { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(216,194,147,.4); color: var(--gold-soft); }
.trust-ic i { width: 22px; height: 22px; }
.trust-item h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.trust-item p { font-size: 13.5px; color: rgba(255,255,255,.62); margin-top: 4px; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head { padding-top: 150px; padding-bottom: clamp(30px, 4vw, 60px); background: var(--cream); }
.page-head .crumb { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.page-head .crumb b { color: var(--gold-deep); font-weight: 600; }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "stat-a stat-b"
    "stat-c stat-c"
    "stat-d stat-d";
  gap: 1px;
  background: var(--beige-line);
  border: 1px solid var(--beige-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--ivory);
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat:nth-child(1) { grid-area: stat-a; min-height: 120px; }
.stat:nth-child(2) { grid-area: stat-b; min-height: 120px; }
.stat:nth-child(3) { grid-area: stat-c; min-height: 190px; }
.stat:nth-child(4) { grid-area: stat-d; min-height: 120px; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.stat-num .gold-text { display: inline-block; }
.stat-label { margin-top: 12px; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

/* ============================================================
   CARDS
   ============================================================ */
.card-ic {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--gold-pale);
  color: var(--gold-deep);
  transition: background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.card-ic i { width: 24px; height: 24px; }

/* feature cards (about) */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: var(--ivory); border: 1px solid var(--beige-line); border-radius: var(--radius);
  padding: 36px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.feature-card:hover .card-ic { background: var(--gold-grad); color: #fff; box-shadow: none; }
.feature-card h3 { font-size: 24px; margin-top: 24px; }
.feature-card p { color: var(--ink-soft); font-size: 15px; margin-top: 12px; }

/* service cards */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--beige-line); border: 1px solid var(--beige-line); border-radius: var(--radius); overflow: hidden; }
.service-card { background: var(--ivory); padding: 40px 32px; transition: background .4s var(--ease); position: relative; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: var(--gold-grad); transition: width .4s var(--ease); }
.service-card:hover { background: #fff; }
.service-card:hover::before { width: 100%; }
.service-card:hover .card-ic { background: var(--gold-grad); color: #fff; box-shadow: none; }
.service-card .num { position: absolute; top: 30px; right: 32px; font-family: var(--serif); font-size: 15px; color: var(--ink-faint); }
.service-card h3 { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: 26px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; margin-top: 12px; }

/* split section */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
.split-media { position: relative; }

/* benefits (why us) */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 36px; }
.benefit { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--beige-line); }
.benefit .bic { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--gold-deep); margin-top: 2px; }
.benefit .bic i { width: 16px; height: 16px; }
.benefit h4 { font-family: var(--sans); font-size: 16px; font-weight: 700; }
.benefit p { font-size: 14px; color: var(--ink-soft); margin-top: 3px; }

/* ============================================================
   BRANDS
   ============================================================ */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.filter-btn {
  padding: 11px 22px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 3px; color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--beige); transition: all .3s var(--ease);
}
.filter-btn:hover { color: var(--ink); box-shadow: inset 0 0 0 1px var(--gold); }
.filter-btn.active { background: var(--gold-grad); color: #fff; box-shadow: none; }

.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--beige-line); border: 1px solid var(--beige-line); border-radius: var(--radius); overflow: hidden; margin-top: 38px; }
.brand-card { background: var(--ivory); aspect-ratio: 16 / 10; display: grid; place-items: center; text-align: center; padding: 20px; transition: background .35s var(--ease); }
.brand-card:hover { background: #fff; }
.brand-name { font-family: var(--serif); font-size: clamp(18px, 1.8vw, 23px); font-weight: 500; letter-spacing: .04em; color: var(--ink); transition: color .35s var(--ease); }
.brand-card:hover .brand-name { color: var(--gold-deep); }
.brand-cat { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }
.brand-card.hide { display: none; }

/* partners */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.partner-card { background: var(--ivory); border: 1px solid var(--beige-line); border-radius: var(--radius); aspect-ratio: 3/2; display: grid; place-items: center; padding: 24px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.partner-name { font-family: var(--serif); font-size: clamp(19px,1.9vw,24px); color: var(--ink); text-align: center; }
.partner-card:hover .partner-name { color: var(--gold-deep); }

/* ============================================================
   PLACEHOLDER MEDIA
   ============================================================ */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(194,160,91,.07) 0 2px, transparent 2px 13px),
    linear-gradient(150deg, var(--cream) 0%, var(--beige) 100%);
  display: grid; place-items: center;
}
.ph::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(168,132,63,.22); border-radius: calc(var(--radius) - 6px);
}
.ph-label {
  position: relative; font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep);
  background: rgba(251,248,241,.7); padding: 8px 14px; border-radius: 3px; text-align: center;
  max-width: 80%;
}
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph--no-frame::before {
  display: none;
}
.ph-dark {
  background:
    repeating-linear-gradient(135deg, rgba(216,194,147,.06) 0 2px, transparent 2px 13px),
    linear-gradient(150deg, var(--espresso-2) 0%, var(--espresso-3) 100%);
}
.ph-dark::before { border-color: rgba(216,194,147,.2); }
.ph-dark .ph-label { color: var(--gold-soft); background: rgba(36,28,20,.55); }
.ph-corner { place-items: end; }
.ph-corner .ph-label { position: absolute; right: 22px; bottom: 20px; }

/* ============================================================
   GEOGRAPHY MAP
   ============================================================ */

/* Two-column grid: 4 left (list) + 8 right (map card) */
.geo-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

/* Left: regions list */
.geo-regions {
  display: flex;
  flex-direction: column;
}
.geo-region-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.geo-region-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige-line);
  font-size: 16px;
  color: var(--ink);
  cursor: default;
  transition: transform .35s var(--ease), color .3s var(--ease);
}
.geo-region-item:first-child { border-top: 1px solid var(--beige-line); }
.geo-region-item:hover { transform: translateY(-2px); color: var(--gold-deep); }
.geo-region-item:hover .geo-dot { background: var(--gold-deep); transform: scale(1.4); }
.geo-dot {
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.geo-region-expanding {
  padding: 14px 0 0;
  font-size: 14px;
  color: var(--ink-faint);
}
.geo-region-expanding em { font-style: italic; }

/* Right: map card container */
.geo-map-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--beige-line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 48px);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* World map image */
.geo-map-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: luminosity;
  filter: sepia(0.2);
  position: relative;
  z-index: 1;
}

/* Warm tint overlay */
.geo-map-tint {
  position: absolute;
  inset: 0;
  background: rgba(113, 88, 30, 0.04);
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 2;
}

/* Animated SVG route overlay */
.geo-route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Animated dashed export paths */
.export-path {
  fill: none;
  stroke: #a6894a;
  stroke-width: 1.5;
  stroke-dasharray: 5, 5;
  animation: export-flow 1.8s linear infinite;
}
@keyframes export-flow { to { stroke-dashoffset: -20; } }

/* Seoul origin marker */
.origin-dot { fill: var(--gold-deep); }
.origin-ring { fill: none; stroke: var(--gold-deep); stroke-width: 1; opacity: 0.5; animation: origin-pulse 2s ease-in-out infinite; }
@keyframes origin-pulse { 0%, 100% { opacity: 0.5; r: 11; } 50% { opacity: 0.2; r: 14; } }

@media (prefers-reduced-motion: reduce) {
  .export-path { animation: none; }
  .origin-ring { animation: none; }
}


/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .geo-grid {
    grid-template-columns: 1fr;
  }
  .geo-regions { order: 2; }
  .geo-map-card { order: 1; min-height: 280px; }
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,5vw,72px); }
.contact-info-list { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; }
.contact-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--beige-line); }
.contact-item .ci { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--gold-pale); color: var(--gold-deep); }
.contact-item .ci i { width: 20px; height: 20px; }
.contact-item .lbl { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }
.contact-item .val { font-size: 16.5px; margin-top: 3px; }

.form-card { background: var(--ivory); border: 1px solid var(--beige-line); border-radius: var(--radius); padding: clamp(28px,3.5vw,46px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 15px 16px; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--white); border: 1px solid var(--beige-line); border-radius: var(--radius-sm);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194,160,91,.15); }
.field.invalid input, .field.invalid textarea { border-color: #b4604b; box-shadow: 0 0 0 3px rgba(180,96,75,.12); }
.field .err { display: none; font-size: 12px; color: #b4604b; margin-top: 6px; }
.field.invalid .err { display: block; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .ok { width: 60px; height: 60px; border-radius: 50%; background: var(--gold-grad); color: #fff; display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .ok i { width: 28px; height: 28px; }
.form-message { margin-top: 12px; min-height: 1.2em; color: var(--gold); font-size: 0.95rem; }
.form-message.is-error { color: #b33; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band .ph {
  position: absolute; inset: 0; border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 100%),
              url("golden-serums.png") center/cover no-repeat;
}
.cta-band .ph::before { display: none; }
.cta-band .veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,22,16,.9) 0%, rgba(36,28,20,.7) 60%, rgba(44,35,26,.5) 100%); }
.cta-inner { position: relative; z-index: 2; padding-block: clamp(70px, 10vw, 130px); }
.cta-band h2 { font-size: clamp(34px, 4.6vw, 60px); font-weight: 500; max-width: 16ch; }
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 18px; max-width: 48ch; font-size: 17px; }
.cta-band .hero-actions { margin-top: 34px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--espresso-3); color: rgba(255,255,255,.7); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,56px); padding-block: clamp(56px,7vw,84px); }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: var(--gold-soft); }
.footer-brand .logo-mark { border-right-color: rgba(255,255,255,.18); }
.footer-brand p { margin-top: 22px; font-size: 14.5px; color: rgba(255,255,255,.55); max-width: 34ch; }
.footer-col h5 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.footer-col a, .footer-col li { display: block; font-size: 14.5px; color: rgba(255,255,255,.62); padding: 6px 0; transition: color .25s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 26px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.footer-bottom .copy { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom .lang-switch button { color: rgba(255,255,255,.5); }
.footer-bottom .lang-switch button.active { color: var(--gold-soft); }
.footer-bottom .lang-switch .sep { color: rgba(255,255,255,.25); }

/* ============================================================
   REVEAL
   ============================================================ */
html.reveal-ready .reveal { opacity: 0; transform: translateY(26px); }
html.reveal-ready .reveal.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.reveal-ready .reveal.d1.in { transition-delay: .08s; }
html.reveal-ready .reveal.d2.in { transition-delay: .16s; }
html.reveal-ready .reveal.d3.in { transition-delay: .24s; }
html.reveal-ready .reveal.d4.in { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
  .pin .ping { animation: none; }
  .route-line { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .nav-links, .lang-switch.desktop { display: none; }
  .menu-btn { display: inline-flex; }
  .split, .split.rev, .contact-grid { grid-template-columns: 1fr; }
  .split-media { order: -1; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-left: clamp(8px,2vw,28px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header .bar { height: 64px; }
  .logo { gap: 9px; }
  .logo-mark { font-size: 25px; padding-right: 9px; }
  .logo-name { font-size: 15px; letter-spacing: .12em; }
  .logo-sub { font-size: 7.5px; letter-spacing: .26em; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .service-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-head { padding-top: 110px; }
  .hero-content { padding-block: 110px 50px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 14px 22px; font-size: 12px; }
  .service-card { padding: 32px 26px; }
  .service-card .num { top: 26px; right: 26px; }
  .filter-btn { padding: 10px 16px; }

}
@media (max-width: 380px) {
  .logo-sub { display: none; }

}
