:root {
  --ink: #191718;
  --muted: #6b6466;
  --paper: #fbf8f2;
  --cream: #f3eadc;
  --red: #9d1e2d;
  --red-dark: #6f0f1d;
  --orange: #d18a3b;
  --green: #087a55;
  --green-soft: #dff6e9;
  --amber: #9b6100;
  --amber-soft: #fff0c7;
  --blue: #2649ba;
  --line: #ded7cb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(35, 23, 18, 0.14);
  --radius: 18px;
  --font: "Outfit", "Noto Sans Georgian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a { color: inherit; }

button, input, select, textarea { font: inherit; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid #3a66ff;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(21, 20, 25, .09);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img { width: 118px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--red); }

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: 13px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover,
.nav-cta:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 28px rgba(230, 43, 50, .22);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover { background: var(--ink); color: var(--white); box-shadow: none; }
.button.small { min-height: 40px; padding: 8px 14px; font-size: 14px; }
.button.wide { width: 100%; }

.language-link {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 86px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 191, 80, .5), transparent 23%),
    radial-gradient(circle at 4% 72%, rgba(230, 43, 50, .14), transparent 27%),
    var(--cream);
}

.hero::after {
  position: absolute;
  right: -72px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(230, 43, 50, .08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 60px;
  align-items: center;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 span { color: var(--red); }

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0 0;
  color: #49444d;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { color: var(--green); content: "✓"; font-weight: 900; }

.pack-stage {
  position: relative;
  min-height: 500px;
}

.pack-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 245px;
  height: 310px;
  padding: 0;
  border: 0;
  background: transparent;
}

.pack-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(43, 27, 15, .2));
}
.pack-card:nth-child(1) { left: 0; top: 88px; z-index: 2; transform: rotate(-8deg); }
.pack-card:nth-child(2) { right: 0; top: 10px; z-index: 3; transform: rotate(7deg); }
.pack-card:nth-child(3) { right: 58px; bottom: -5px; z-index: 4; width: 220px; height: 275px; transform: rotate(-1deg); }

.section { padding: 92px 0; }
.section.soft { background: #f7f3eb; }
.section.dark { background: var(--ink); color: var(--white); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-head h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.section-head > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; }
.dark .section-head > p { color: #c9c5ce; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.proof-item { min-height: 144px; padding: 28px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 7px; font-size: 29px; line-height: 1; }
.proof-item span { color: var(--muted); font-size: 14px; font-weight: 600; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.feature-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-no {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red-dark);
  font-weight: 900;
}

.feature-card h3 { margin: 0 0 10px; font-size: 24px; }
.feature-card p { margin: 0; color: var(--muted); }

.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.brand-panel {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}

.brand-panel:nth-child(1) { background: #d9292f; }
.brand-panel:nth-child(2) { background: #e85d18; }
.brand-panel:nth-child(3) { background: #2259b4; }
.brand-panel::after { position: absolute; right: -30px; bottom: -80px; width: 210px; height: 210px; border: 42px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.brand-panel strong { position: relative; z-index: 1; font-size: 38px; letter-spacing: -.03em; }
.brand-panel span { position: relative; z-index: 1; max-width: 250px; font-weight: 700; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-step { padding: 28px 0; border-top: 2px solid #45424a; }
.process-step strong { display: block; margin-bottom: 16px; color: #ffbf50; font-size: 14px; letter-spacing: .1em; }
.process-step h3 { margin: 0 0 8px; font-size: 25px; }
.process-step p { margin: 0; color: #bcb8c2; }

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  background: var(--red);
  color: var(--white);
}

.cta-band h2 { margin: 0 0 8px; font-size: clamp(32px, 4vw, 52px); line-height: 1.04; letter-spacing: -.04em; }
.cta-band p { max-width: 650px; margin: 0; color: #ffe8e8; }
.cta-band .button { background: var(--white); color: var(--red-dark); }

.site-footer { padding: 52px 0 30px; background: #0e0d11; color: #d6d1da; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; }
.footer-brand img { width: 130px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 410px; color: #9f9aa6; }
.footer-group h2 { margin: 0 0 14px; color: var(--white); font-size: 16px; }
.footer-group a { display: block; margin: 8px 0; color: #beb8c4; text-decoration: none; }
.footer-group a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid #302d35; color: #817b87; font-size: 13px; }

.page-hero { padding: 58px 0 42px; background: var(--cream); }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 18px; }

.catalogue-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 32px;
  padding: 44px 0 96px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 102px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.filters h2 { margin: 0 0 18px; font-size: 20px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label, .field-label { font-size: 13px; font-weight: 800; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cfc9c0;
  border-radius: 11px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); outline: 2px solid rgba(38,73,186,.15); }

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.catalogue-main { min-width: 0; }
.results-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.results-head p { margin: 0; color: var(--muted); font-weight: 700; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover { border-color: #c7bdb2; box-shadow: 0 12px 34px rgba(40,28,18,.09); transform: translateY(-2px); }
.product-link { display: flex; flex: 1; flex-direction: column; color: inherit; text-decoration: none; }
.product-image {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.92) 0 32%, rgba(250,247,241,.72) 66%, rgba(241,233,220,.88) 100%);
}
.product-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 18px 18px 14px; }
.product-brand { margin-bottom: 7px; color: var(--red-dark); font-size: 11px; font-weight: 900; letter-spacing: .11em; }
.product-card h2 { margin: 0; font-size: 18px; line-height: 1.18; letter-spacing: -.015em; }
.product-specs { margin: 9px 0 0; color: var(--muted); font-size: 13px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 16px; }

.stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.stock::before { width: 7px; height: 7px; border-radius: 50%; background: currentColor; content: ""; }
.stock.in { background: var(--green-soft); color: var(--green); }
.stock.low { background: var(--amber-soft); color: var(--amber); }
.stock.out { background: #ece9e5; color: #625d64; }
.heat { color: var(--muted); font-size: 12px; font-weight: 700; }

.card-action { padding: 0 18px 18px; }
.card-action .button { width: 100%; }
.empty-state { grid-column: 1 / -1; padding: 60px 20px; border: 1px dashed #bbb4aa; border-radius: 18px; text-align: center; color: var(--muted); }

.quote-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  box-shadow: 0 14px 32px rgba(21,20,25,.25);
}
.quote-count {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--white);
  color: var(--red-dark);
  font-size: 12px;
}

dialog {
  width: min(560px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 36px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
dialog::backdrop { background: rgba(14,13,17,.64); backdrop-filter: blur(4px); }
.dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.dialog-head h2 { margin: 0; font-size: 24px; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 22px; cursor: pointer; }
.dialog-body { padding: 20px 24px 24px; overflow: auto; }
.cart-list { display: grid; gap: 12px; }
.cart-item { display: grid; grid-template-columns: 58px 1fr auto; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 14px; }
.cart-item img { width: 58px; height: 58px; object-fit: contain; mix-blend-mode: multiply; }
.cart-item strong { display: block; font-size: 14px; line-height: 1.2; }
.cart-item span { color: var(--muted); font-size: 12px; }
.qty-control { display: inline-flex; align-items: center; gap: 8px; }
.qty-control button { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); cursor: pointer; }

.detail { padding: 54px 0 92px; }
.breadcrumbs { margin-bottom: 26px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--red-dark); }
.detail-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.detail-image { min-height: 520px; display: grid; place-items: center; isolation: isolate; padding: 38px; border-radius: 28px; background: radial-gradient(circle at 50% 44%, #fff 0 28%, #f6f2e9 76%); }
.detail-image img { width: min(100%, 420px); height: auto; max-height: 420px; object-fit: contain; mix-blend-mode: multiply; }
.detail-copy .product-brand { font-size: 13px; }
.detail-copy .lead { margin: 22px 0; color: var(--muted); font-size: 18px; }
.detail-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 28px 0; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.detail-fact { padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-fact:nth-child(even) { border-right: 0; }
.detail-fact:nth-last-child(-n+2) { border-bottom: 0; }
.detail-fact span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.detail-fact strong { font-size: 16px; }
.notice { padding: 16px 18px; border-left: 4px solid var(--blue); border-radius: 8px; background: #eef3ff; color: #29375f; }

.quote-page { padding: 54px 0 92px; }
.quote-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.quote-summary, .form-card, .privacy-card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.quote-summary { position: sticky; top: 102px; }
.quote-summary h2, .form-card h1, .privacy-card h1 { margin-top: 0; }
.summary-list { display: grid; gap: 12px; margin: 22px 0; }
.summary-item { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: center; }
.summary-item img { width: 52px; height: 52px; object-fit: contain; border-radius: 9px; background: #f6f2e9; mix-blend-mode: multiply; }
.summary-item strong { display: block; line-height: 1.2; }
.summary-item span { color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 16px; }
.field.full { grid-column: 1 / -1; }
.check-row { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin: 8px 0 20px; }
.check-row input { width: 20px; height: 20px; margin: 2px 0 0; }
.form-status { min-height: 24px; margin: 14px 0 0; font-weight: 700; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red-dark); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.privacy-wrap { width: min(850px, calc(100% - 40px)); margin: 54px auto 92px; }
.privacy-card h2 { margin-top: 34px; }
.privacy-card li { margin: 8px 0; }
.privacy-meta { color: var(--muted); }

.legacy-message { min-height: 70vh; display: grid; place-items: center; padding: 40px; text-align: center; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 30px; }
  .pack-stage { min-height: 430px; }
  .pack-card { width: 200px; height: 255px; }
  .pack-card:nth-child(3) { width: 180px; height: 225px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .hero { padding: 54px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .pack-stage { min-height: 390px; max-width: 520px; margin-inline: auto; width: 100%; }
  .section { padding: 70px 0; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-grid, .brand-grid, .process-grid { grid-template-columns: 1fr; }
  .brand-panel { min-height: 230px; }
  .catalogue-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 14px; }
  .filters h2, .filters .filter-reset { grid-column: 1 / -1; }
  .detail-grid, .quote-layout { grid-template-columns: 1fr; gap: 30px; }
  .quote-summary { position: static; }
  .detail-image { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header .brand img { width: 100px; }
  .nav-wrap { min-height: 68px; }
  .hero h1 { font-size: 47px; }
  .hero-actions .button { width: 100%; }
  .pack-stage { min-height: 330px; }
  .pack-card { width: 158px; height: 205px; padding: 14px; border-radius: 20px; }
  .pack-card:nth-child(1) { top: 72px; }
  .pack-card:nth-child(3) { width: 145px; height: 185px; right: 35px; }
  .section-head { display: block; }
  .section-head > p { margin-top: 14px; }
  .proof-strip, .product-grid, .form-grid, .filters { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .filters h2, .filters .filter-reset { grid-column: auto; }
  .product-grid { gap: 13px; }
  .cta-band { grid-template-columns: 1fr; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .detail { padding-top: 28px; }
  .detail-image { min-height: 330px; padding: 30px; }
  .detail-facts { grid-template-columns: 1fr; }
  .detail-fact, .detail-fact:nth-child(even), .detail-fact:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-fact:last-child { border-bottom: 0; }
  .quote-float { right: 14px; bottom: 14px; }
  .cart-item { grid-template-columns: 46px 1fr; }
  .cart-item .qty-control { grid-column: 1 / -1; justify-content: flex-end; }
}

/* Editorial importer / distributor homepage */
.home-page {
  background: #fbf8f2;
}

.home-page .home-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 120;
  border-bottom: 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 38px rgba(17, 12, 13, .08);
  backdrop-filter: blur(16px);
}

.trade-strip {
  background: var(--red-dark);
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.trade-strip-inner {
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-header .nav-wrap {
  min-height: 82px;
}

.home-header .nav-links {
  gap: 24px;
  font-size: 14px;
}

.home-header .nav-cta {
  background: var(--red-dark);
}

.home-page .hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  padding: 210px 0 130px;
  isolation: isolate;
  background-color: #181315;
  background-image:
    linear-gradient(90deg, rgba(17, 13, 14, .96) 0%, rgba(17, 13, 14, .88) 34%, rgba(17, 13, 14, .48) 58%, rgba(17, 13, 14, .1) 100%),
    linear-gradient(0deg, rgba(17, 13, 14, .34), transparent 48%),
    url("/images/backgrounds/hero-ramyeon-v2.webp");
  background-position: center;
  background-size: cover;
}

.home-page .hero::after {
  display: none;
}

.home-page .hero-grid {
  position: static;
  z-index: 2;
  display: block;
}

.home-page .hero-copy {
  width: min(720px, 61vw);
  color: var(--white);
}

.home-page .hero .eyebrow {
  color: #f3d7b1;
}

.home-page .hero .eyebrow::before {
  background: #d9a34f;
  box-shadow: 0 0 0 5px rgba(217, 163, 79, .12);
}

.home-page .hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 6.4vw, 88px);
  line-height: .97;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.home-page .hero h1 span {
  display: block;
  color: #f2c47d;
}

.home-page .hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.65;
}

.home-page .hero-actions {
  margin-top: 34px;
  gap: 13px;
}

.home-page .hero .button {
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 12px;
  background: var(--red);
}

.home-page .hero .button:hover {
  background: #b92a3c;
}

.home-page .hero .button.secondary {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.home-page .hero .button.secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.home-page .hero-note {
  max-width: 690px;
  gap: 10px 22px;
  margin-top: 31px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.home-page .hero-note span::before {
  color: #efc47e;
  content: "•";
}

.home-page .hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.home-page .hero-scroll span:last-child {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}

.home-overview {
  position: relative;
  padding: 0 0 126px;
  background: var(--paper);
}

.home-overview .proof-strip {
  position: relative;
  z-index: 4;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(29, 19, 16, .14);
  transform: translateY(-54px);
}

.home-overview .proof-item {
  min-height: 150px;
  padding: 31px 28px;
  border-color: #e6dfd5;
}

.home-overview .proof-item strong {
  color: var(--red-dark);
  font-size: clamp(26px, 2.7vw, 36px);
}

.home-overview .proof-item span {
  max-width: 210px;
  display: block;
  font-size: 13px;
  line-height: 1.5;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: end;
  padding-top: 38px;
}

.intro-grid h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.intro-grid > div:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.intro-grid > div:last-child > p:first-child {
  margin-top: 0;
}

.importer-statement {
  margin: 28px 0 0;
  padding: 20px 0 0 22px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--red);
  color: #4a4446;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform .18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.distribution-story {
  min-height: 920px;
  display: flex;
  align-items: center;
  padding: 118px 0;
  background-color: #171416;
  background-image:
    linear-gradient(90deg, rgba(17, 14, 15, .08) 0%, rgba(17, 14, 15, .12) 42%, rgba(17, 14, 15, .74) 66%, rgba(17, 14, 15, .94) 100%),
    linear-gradient(0deg, rgba(17, 14, 15, .26), transparent),
    url("/images/backgrounds/distribution-v2.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.distribution-story .container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.distribution-panel {
  grid-column: 7 / -1;
  padding: clamp(36px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(22, 18, 20, .78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(13px);
}

.distribution-panel .eyebrow {
  color: #f1cb91;
}

.distribution-panel .eyebrow::before {
  background: #d9a34f;
}

.distribution-panel h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.distribution-panel > p:not(.eyebrow),
.distribution-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.65;
}

.capability-list {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.capability-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.capability-item > span {
  color: #e6b668;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}

.capability-item h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.capability-item p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.58;
}

.light-link {
  color: #f1cb91;
}

.portfolio {
  padding-block: 126px;
  background: #fff;
}

.portfolio .section-head {
  margin-bottom: 52px;
}

.portfolio .brand-grid {
  gap: 20px;
}

.portfolio .brand-panel {
  min-height: 490px;
  justify-content: flex-start;
  padding: 34px;
  border-radius: 18px;
  background-color: #75131f;
  background-repeat: no-repeat;
  background-position: right -56px bottom -30px;
  background-size: 82% auto;
  box-shadow: 0 18px 55px rgba(36, 18, 18, .14);
  transition: transform .25s ease, box-shadow .25s ease;
}

.portfolio .brand-panel:hover {
  box-shadow: 0 28px 70px rgba(36, 18, 18, .22);
  transform: translateY(-6px);
}

.portfolio .brand-panel::after {
  content: none;
}

.portfolio .brand-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(12, 8, 9, .42) 0%, rgba(12, 8, 9, .02) 46%, rgba(12, 8, 9, .72) 100%);
  content: "";
}

.portfolio .brand-panel > * {
  position: relative;
  z-index: 1;
}

.portfolio .brand-nongshim {
  background-color: #a91828;
  background-image: url("/images/products/hero-shin-transparent.webp");
}

.portfolio .brand-samyang {
  background-color: #b94d1d;
  background-image: url("/images/products/hero-buldak-3x-transparent.webp");
  background-position: right -76px bottom -18px;
  background-size: 92% auto;
}

.portfolio .brand-paldo {
  background-color: #184c62;
  background-image: url("/images/products/hero-paldo-bibim-men-transparent.webp");
  background-position: right -68px bottom -12px;
  background-size: 91% auto;
}

.portfolio .brand-panel > span:first-child,
.portfolio .brand-label {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.portfolio .brand-panel strong {
  margin-top: 12px;
  font-size: clamp(32px, 3.4vw, 46px);
}

.portfolio .brand-products {
  max-width: 250px;
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.portfolio .brand-panel > span:last-child,
.portfolio .brand-link {
  max-width: 280px;
  margin-top: auto;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.journey {
  padding-block: 126px;
  background: var(--cream);
}

.journey .section-head {
  margin-bottom: 48px;
}

.journey .process-grid {
  gap: 20px;
}

.journey .process-step {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}

.journey .process-step strong {
  margin-bottom: 60px;
  color: var(--red-dark);
  font-size: 15px;
}

.journey .process-step h3 {
  color: var(--ink);
  font-size: 25px;
}

.journey .process-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.partner-cta {
  padding: 118px 0;
  background-color: var(--red-dark);
  background-image:
    linear-gradient(90deg, rgba(83, 7, 18, .98), rgba(111, 15, 29, .82) 52%, rgba(17, 13, 14, .54)),
    url("/images/backgrounds/hero-ramyeon-v2.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.partner-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  gap: clamp(46px, 8vw, 116px);
  align-items: center;
}

.partner-cta .eyebrow {
  color: #f1cb91;
}

.partner-cta .eyebrow::before {
  background: #d9a34f;
}

.partner-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.partner-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
  line-height: 1.68;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions .button {
  width: 100%;
  min-height: 54px;
}

.partner-cta .button {
  background: var(--white);
  color: var(--red-dark);
}

.partner-cta .button:hover {
  background: #f4e6d1;
  color: var(--red-dark);
}

.partner-cta .button.secondary {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .05);
  color: var(--white);
}

.partner-cta .button.secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--red-dark);
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding-top: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.contact-direct a {
  text-underline-offset: 4px;
}

.home-page .site-footer {
  padding-top: 66px;
}

.home-page .footer-grid {
  grid-template-columns: 1.45fr .7fr .85fr;
}

.home-page .footer-brand p {
  max-width: 520px;
}

.footer-clarification {
  font-size: 12px;
  line-height: 1.6;
}

/* Image-led internal-page header */
.page-hero {
  padding: 82px 0 74px;
  background-color: #211619;
  background-image:
    linear-gradient(90deg, rgba(20, 14, 15, .94), rgba(20, 14, 15, .68) 58%, rgba(20, 14, 15, .3)),
    url("/images/backgrounds/hero-ramyeon-v2.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.page-hero .eyebrow {
  color: #f1cb91;
}

.page-hero .eyebrow::before {
  background: #d9a34f;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
}

.quote-page {
  background:
    linear-gradient(180deg, rgba(243, 234, 220, .72), transparent 340px),
    var(--paper);
}

.quote-summary,
.form-card {
  box-shadow: 0 18px 46px rgba(37, 26, 20, .07);
}

@media (max-width: 1040px) {
  .home-header .nav-links { gap: 16px; }
  .home-page .hero-copy { width: min(690px, 69vw); }
  .distribution-panel { grid-column: 6 / -1; }
  .portfolio .brand-panel { min-height: 440px; padding: 28px; }
}

@media (max-width: 900px) {
  .trade-strip-inner span:last-child { display: none; }
  .trade-strip-inner { justify-content: center; }
  .home-header .menu-button { display: inline-grid; place-items: center; }
  .home-header .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 102px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .home-header .nav-links.open { display: flex; }
  .home-header .nav-links a { padding: 12px; }
  .home-page .hero {
    min-height: 790px;
    padding: 186px 0 112px;
    background-image:
      linear-gradient(90deg, rgba(17, 13, 14, .94) 0%, rgba(17, 13, 14, .84) 48%, rgba(17, 13, 14, .38) 100%),
      url("/images/backgrounds/hero-ramyeon-v2.webp");
    background-position: 58% center;
  }
  .home-page .hero-copy { width: min(680px, 86vw); }
  .intro-grid,
  .partner-cta-inner { grid-template-columns: 1fr; }
  .intro-grid { gap: 34px; }
  .distribution-story {
    min-height: auto;
    padding: 90px 0;
    background-image:
      linear-gradient(90deg, rgba(17, 14, 15, .52), rgba(17, 14, 15, .9)),
      url("/images/backgrounds/distribution-v2.webp");
    background-position: 36% center;
  }
  .distribution-panel { grid-column: 4 / -1; }
  .portfolio .brand-grid { grid-template-columns: 1fr; }
  .portfolio .brand-panel {
    min-height: 390px;
    background-position: right -30px center;
    background-size: 58% auto;
  }
  .contact-actions { width: min(520px, 100%); }
}

@media (max-width: 820px) {
  .home-page .home-header .nav-links {
    left: 14px;
    right: 14px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 22px 60px rgba(15, 10, 11, .22);
  }
  .home-page .hero h1 { font-size: clamp(48px, 10vw, 68px); }
  .home-overview .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-overview .proof-item:nth-child(2) { border-right: 0; }
  .home-overview .proof-item:nth-child(-n+2) { border-bottom: 1px solid #e6dfd5; }
  .home-overview .proof-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .distribution-panel { grid-column: 2 / -1; }
  .portfolio,
  .journey { padding-block: 92px; }
  .journey .process-grid { grid-template-columns: 1fr; }
  .journey .process-step {
    min-height: 240px;
  }
  .journey .process-step strong { margin-bottom: 35px; }
  .partner-cta { padding: 92px 0; }
  .home-page .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .trade-strip {
    font-size: 9px;
    letter-spacing: .11em;
  }
  .trade-strip-inner { min-height: 30px; }
  .home-header .nav-wrap { min-height: 70px; }
  .home-header .nav-links { top: 100px; }
  .home-page .hero {
    min-height: 760px;
    padding: 158px 0 94px;
    background-image:
      linear-gradient(90deg, rgba(17, 13, 14, .95) 0%, rgba(17, 13, 14, .84) 68%, rgba(17, 13, 14, .46) 100%),
      url("/images/backgrounds/hero-ramyeon-v2.webp");
    background-position: 62% center;
  }
  .home-page .hero-copy { width: 100%; }
  .home-page .hero h1 {
    font-size: clamp(43px, 12.3vw, 56px);
    line-height: .99;
  }
  .home-page .hero-copy > p:not(.eyebrow) {
    margin-top: 23px;
    font-size: 16px;
    line-height: 1.57;
  }
  .home-page .hero-actions { margin-top: 27px; }
  .home-page .hero-actions .button { width: 100%; }
  .home-page .hero-note {
    display: grid;
    gap: 7px;
    margin-top: 23px;
  }
  .home-page .hero-scroll { display: none; }
  .home-overview { padding-bottom: 86px; }
  .home-overview .proof-strip {
    grid-template-columns: 1fr;
    transform: translateY(-30px);
  }
  .home-overview .proof-item,
  .home-overview .proof-item:nth-child(2) {
    min-height: 112px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid #e6dfd5;
  }
  .home-overview .proof-item:last-child { border-bottom: 0; }
  .intro-grid { padding-top: 12px; }
  .intro-grid h2,
  .distribution-panel h2,
  .partner-cta h2 { font-size: clamp(38px, 10.8vw, 50px); }
  .intro-grid > div:last-child,
  .partner-cta p:not(.eyebrow) { font-size: 16px; }
  .distribution-story {
    padding: 60px 0;
    background-position: 27% center;
  }
  .distribution-story .container { display: block; }
  .distribution-panel {
    padding: 29px 23px;
    background: rgba(22, 18, 20, .86);
  }
  .capability-item {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .portfolio .brand-panel {
    min-height: 380px;
    padding: 26px;
    background-position: right -62px bottom -4px;
    background-size: 82% auto;
  }
  .portfolio .brand-samyang,
  .portfolio .brand-paldo {
    background-size: 94% auto;
  }
  .journey .process-step { padding: 25px; }
  .partner-cta {
    background-image:
      linear-gradient(90deg, rgba(83, 7, 18, .97), rgba(83, 7, 18, .82)),
      url("/images/backgrounds/hero-ramyeon-v2.webp");
    background-position: 65% center;
  }
  .home-page .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 58px 0 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Georgian typography
   :lang(ka) also matches regional language tags such as ka-GE. */
html:lang(ka) body {
  font-family: "Noto Sans Georgian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

html:lang(ka) h1,
html:lang(ka) h2,
html:lang(ka) h3 {
  letter-spacing: 0;
  text-wrap: pretty;
}

html:lang(ka) .trade-strip,
html:lang(ka) .eyebrow,
html:lang(ka) .portfolio .brand-label {
  font-weight: 700;
  letter-spacing: .015em;
}

html:lang(ka) .home-page .hero-copy {
  width: min(780px, 65vw);
}

html:lang(ka) .home-page .hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.35vw, 62px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

html:lang(ka) .intro-grid h2 {
  font-size: clamp(38px, 4.15vw, 56px);
  line-height: 1.2;
  letter-spacing: -.004em;
}

html:lang(ka) .distribution-panel h2 {
  font-size: clamp(36px, 3.65vw, 50px);
  line-height: 1.2;
  letter-spacing: -.004em;
}

html:lang(ka) .section-head h2 {
  font-size: clamp(34px, 3.55vw, 48px);
  line-height: 1.2;
  letter-spacing: -.004em;
}

html:lang(ka) .partner-cta h2 {
  font-size: clamp(38px, 4.15vw, 56px);
  line-height: 1.2;
  letter-spacing: -.004em;
}

html:lang(ka) .page-hero h1,
html:lang(ka) .detail-copy h1 {
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.2;
  letter-spacing: -.004em;
}

html:lang(ka) .product-card h2,
html:lang(ka) .journey .process-step h3,
html:lang(ka) .capability-item h3 {
  line-height: 1.4;
}

html:lang(ka) .button,
html:lang(ka) .nav-links,
html:lang(ka) .footer-group {
  line-height: 1.45;
}

html:lang(ka) .button,
html:lang(ka) .nav-cta {
  font-weight: 700;
}

@media (max-width: 900px) {
  html:lang(ka) .home-page .hero-copy {
    width: min(700px, 90vw);
  }

  html:lang(ka) .home-page .hero h1 {
    font-size: clamp(36px, 4.7vw, 42px);
    line-height: 1.23;
  }
}

@media (max-width: 600px) {
  html:lang(ka) .home-page .hero {
    min-height: 720px;
  }

  html:lang(ka) .home-page .hero-copy {
    width: 100%;
  }

  html:lang(ka) .home-page .hero h1 {
    font-size: clamp(30px, 8.3vw, 36px);
    line-height: 1.25;
    letter-spacing: 0;
  }

  html:lang(ka) .home-page .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }

  html:lang(ka) .intro-grid h2,
  html:lang(ka) .distribution-panel h2,
  html:lang(ka) .partner-cta h2 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.24;
    letter-spacing: 0;
  }

  html:lang(ka) .section-head h2,
  html:lang(ka) .page-hero h1,
  html:lang(ka) .detail-copy h1 {
    font-size: clamp(28px, 7.6vw, 33px);
    line-height: 1.25;
    letter-spacing: 0;
  }

  html:lang(ka) .journey .process-step h3 {
    font-size: 22px;
    line-height: 1.38;
  }

  html:lang(ka) .home-page .button {
    font-size: 14px;
    line-height: 1.5;
  }
}
