:root {
  --bg: #120302;
  --bg-deep: #080100;
  --paper: #f4ecdf;
  --muted: #c7b9aa;
  --gold: #c99742;
  --gold-soft: #e5bd6d;
  --red: #d92f1f;
  --red-bright: #ef3e2c;
  --line: rgba(229, 189, 109, .42);
  --max: 1540px;
  --header-h: 112px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 0%, rgba(102, 27, 16, .18), transparent 34%),
    var(--bg-deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(28px, 5vw, 78px);
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  height: 82px;
  background: rgba(15, 2, 1, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.brand { width: clamp(155px, 14vw, 220px); position: relative; z-index: 102; }
.brand img { width: 100%; filter: drop-shadow(0 8px 18px rgba(0,0,0,.34)); }

.main-nav { display: flex; align-items: center; gap: clamp(34px, 4.4vw, 68px); }
.main-nav a {
  position: relative;
  padding: 13px 0;
  color: #d8cfc5;
  font-size: 16px;
  letter-spacing: .01em;
  transition: color .25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.main-nav a:hover, .main-nav a.active { color: #fff6e7; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 9px;
  position: relative;
  z-index: 102;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--paper);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #180502;
}
.hero-picture, .hero-picture img, .hero-shade, .hero-glow { position: absolute; inset: 0; }
.hero-picture { z-index: -4; }
.hero-picture img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(12, 1, 0, .72) 0%, rgba(13, 2, 1, .44) 34%, rgba(11, 1, 0, .08) 60%, rgba(7,0,0,.16) 100%),
    linear-gradient(0deg, rgba(5,0,0,.46), transparent 25%, transparent 74%, rgba(5,0,0,.16));
}
.hero-glow {
  z-index: -2;
  background: radial-gradient(circle at 24% 42%, rgba(126, 40, 18, .18), transparent 36%);
  mix-blend-mode: screen;
}
.hero-content {
  width: min(680px, 47vw);
  margin-left: clamp(34px, 4.6vw, 78px);
  padding-top: 90px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .48em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow span { width: 44px; height: 1px; background: var(--gold-soft); }
.hero h1 {
  margin: 0;
  max-width: 690px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(54px, 5.25vw, 88px);
  line-height: .99;
  letter-spacing: -.045em;
  text-shadow: 0 6px 30px rgba(0,0,0,.22);
}
.hero h1 em { color: var(--gold-soft); font-style: normal; }
.hero-content > p {
  max-width: 500px;
  margin: 30px 0 30px;
  color: #d5cbc0;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 28px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 520;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.btn svg { width: 24px; height: 24px; fill: currentColor; }
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright), #c92115);
  box-shadow: 0 15px 35px rgba(208, 40, 23, .24);
}
.btn-primary:hover { box-shadow: 0 19px 42px rgba(208, 40, 23, .36); }
.btn-outline { min-height: 53px; color: var(--gold-soft); border: 1px solid rgba(229,189,109,.75); background: rgba(8,1,0,.28); }
.btn-outline:hover { background: rgba(201,151,66,.1); border-color: var(--gold-soft); }
.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .3);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #28e16d, #159e8f);
  box-shadow: 0 16px 36px rgba(37, 211, 102, .45);
}
.btn-video {
  min-height: 53px;
  color: var(--paper);
  border: 1px solid rgba(244, 236, 223, .35);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}
.btn-video:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--gold-soft);
  color: #fff;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244,236,223,.68);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i { width: 1px; height: 42px; background: linear-gradient(var(--gold-soft), transparent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:.35; transform:scaleY(.7); transform-origin:top} 50%{opacity:1; transform:scaleY(1)} }

.section { padding: clamp(95px, 10vw, 160px) clamp(28px, 5vw, 80px); }
.products { max-width: var(--max); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 64px; }
.kicker {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section h2, .story h2, .contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.section-heading p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 1120px;
  margin-inline: auto;
}
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(229,189,109,.2);
  background: linear-gradient(145deg, rgba(51,12,8,.72), rgba(16,3,2,.94));
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -55% 15%;
  z-index: 0;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,66,.16), transparent 62%);
  pointer-events: none;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(229,189,109,.54); box-shadow: 0 24px 60px rgba(0,0,0,.34); }
.product-card.featured { border-color: rgba(229,189,109,.48); background: linear-gradient(145deg, rgba(114,26,16,.58), rgba(27,5,3,.96)); }
.product-media {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: #210704;
}
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,1,0,.02) 48%, rgba(12,2,1,.42) 100%);
  pointer-events: none;
}
.product-media picture, .product-media img { width: 100%; height: 100%; }
.product-media picture { display: block; }
/* Show the complete photograph and keep the whole card compact on desktop. */
.product-media img {
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.product-card:hover .product-media img { transform: scale(1.018); filter: saturate(1.04) contrast(1.02); }
.product-number {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(229,189,109,.55);
  border-radius: 50%;
  background: rgba(15,2,1,.66);
  backdrop-filter: blur(10px);
  color: #f1ca7c;
  font-family: Georgia,serif;
  font-size: 15px;
}
.product-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(229,189,109,.42);
  background: rgba(15,2,1,.72);
  backdrop-filter: blur(10px);
  color: #f0d49a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: 23px 26px 25px;
}
.product-type { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .22em; font-size: 10px; font-weight: 700; }
.product-card h3 { margin: 8px 0 10px; font-family: Georgia,serif; font-size: clamp(25px, 1.75vw, 30px); font-weight: 400; }
.product-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0 0 17px; }
.product-card a { display: inline-flex; align-self: flex-start; gap: 10px; align-items: center; margin-top: auto; color: #fff0d2; font-size: 14px; border-bottom: 1px solid rgba(229,189,109,.38); padding-bottom: 5px; }
.product-card a span:last-child { color: var(--gold-soft); }

/* Video Showcase Section */
.video-section {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 40px;
}
.video-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid rgba(229, 189, 109, .28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 151, 66, .12), transparent 45%),
    linear-gradient(145deg, rgba(38, 9, 6, .85), rgba(14, 3, 2, .96));
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
}
.video-text h2 { margin: 12px 0 18px; font-family: Georgia, serif; font-size: clamp(32px, 3.8vw, 56px); line-height: 1.1; font-weight: 400; }
.video-text p { color: var(--muted); font-size: 17px; line-height: 1.65; margin: 0 0 28px; }
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(229, 189, 109, .4);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.story { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 760px; background: #160503; }
.story-photo {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background: #140503;
  --move-x: 0px;
  --move-y: 0px;
}
.story-photo::before,
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
}
.story-photo::before {
  background-image: url('../assets/images/about-palembang.webp');
  background-size: cover;
  background-position: center center;
  transform: translate3d(var(--move-x), var(--move-y), 0) scale(1.06);
  transition: transform .22s ease-out;
  will-change: transform;
}
.story-photo::after {
  background:
    linear-gradient(90deg, rgba(20,5,3,0) 52%, rgba(20,5,3,.18) 68%, rgba(20,5,3,.98) 100%),
    linear-gradient(0deg, rgba(8,1,0,.24), rgba(8,1,0,.08));
  pointer-events: none;
}
.story-photo:hover::before {
  filter: saturate(1.03) contrast(1.02);
}
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(34px, 5vw, 90px); background: linear-gradient(90deg, rgba(22,5,3,.96), #160503); }
.story-copy p { color: var(--muted); font-size: 18px; line-height: 1.8; margin: 28px 0 35px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid var(--line); padding-top: 26px; }
.facts div { display: flex; flex-direction: column; gap: 7px; }
.facts strong { color: var(--gold-soft); font-family: Georgia,serif; font-size: 29px; font-weight: 400; }
.facts span { color: #bbaea1; font-size: 13px; }

.contact { max-width: var(--max); margin: 0 auto; }
.contact-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(42px, 6vw, 84px);
  border: 1px solid rgba(229,189,109,.3);
  background:
    radial-gradient(circle at 86% 30%, rgba(201,151,66,.15), transparent 32%),
    linear-gradient(135deg, #3d0d08, #170402 62%);
}
.contact-card::after { content:"UCAK"; position:absolute; right:-10px; bottom:-68px; color:rgba(255,255,255,.025); font-size:clamp(120px,18vw,270px); font-weight:900; letter-spacing:-.08em; pointer-events:none; }
.contact-card > div { position: relative; z-index: 1; }
.contact-card h2 { max-width: 880px; font-size: clamp(42px, 4.5vw, 72px); }
.contact-card p { color: var(--muted); font-size: 17px; }
.contact-actions { min-width: 235px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.contact-actions .btn { width: 100%; }
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 99px;
  border: 1px solid rgba(37, 211, 102, .32);
  background: rgba(18, 140, 126, .12);
  color: #62f29e;
  font-size: 15px;
}
.contact-phone strong { color: #ffffff; font-weight: 600; letter-spacing: .03em; }
.text-link { color: var(--gold-soft); border-bottom: 1px solid var(--line); padding: 0 2px 6px; }

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .42), 0 0 0 0 rgba(37, 211, 102, .5);
  transition: transform .28s ease, box-shadow .28s ease;
  animation: waPulse 2.8s infinite;
}
.floating-whatsapp svg { width: 30px; height: 30px; }
.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, .55);
}
.floating-wa-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  border: 2px solid #120302;
  border-radius: 50%;
  background: #ff3b30;
}
.floating-wa-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(229, 189, 109, .35);
  background: rgba(18, 3, 2, .92);
  backdrop-filter: blur(10px);
  color: var(--paper);
  font-size: 13px;
  font-weight: 550;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}
.floating-whatsapp:hover .floating-wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes waPulse {
  0% { box-shadow: 0 10px 28px rgba(37, 211, 102, .42), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 10px 28px rgba(37, 211, 102, .42), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px rgba(37, 211, 102, .42), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(28px, 5vw, 80px);
  border-top: 1px solid rgba(229,189,109,.15);
  background: #090101;
  color: #9f9287;
}
.site-footer img { width: 145px; }
.site-footer p, .site-footer small { margin: 0; font-size: 13px; }
.site-footer small { text-align: right; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.product-card:nth-child(2) { transition-delay: .08s; }
.product-card:nth-child(3) { transition-delay: .16s; }

@media (max-width: 1120px) {
  :root { --header-h: 92px; }
  .hero-content { width: min(610px, 54vw); }
  .hero h1 { font-size: clamp(48px, 5.2vw, 70px); }
  .product-grid { max-width: 1010px; gap: 14px; }
  .product-content { min-height: 198px; padding: 21px 22px 23px; }
  .story { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-header { height: 78px; padding: 12px 22px; }
  .site-header.scrolled { height: 70px; }
  .brand { width: 148px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: rgba(11,1,0,.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { font-family: Georgia,serif; font-size: 34px; }
  .hero { min-height: 820px; align-items: flex-end; }
  .hero-picture img { object-position: 67% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(10,1,0,.96) 0%, rgba(10,1,0,.68) 48%, rgba(10,1,0,.22) 100%), linear-gradient(90deg, rgba(10,1,0,.58), transparent); }
  .hero-content { width: auto; margin: 0; padding: 130px 25px 90px; }
  .hero h1 { font-size: clamp(48px, 12vw, 68px); }
  .hero-content > p { max-width: 560px; font-size: 17px; margin: 23px 0 25px; }
  .eyebrow { margin-bottom: 20px; letter-spacing: .34em; gap: 14px; }
  .eyebrow span { width: 28px; }
  .scroll-cue { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { max-width: 520px; width: 100%; margin-inline: auto; }
  .product-media { aspect-ratio: 4 / 5; }
  .story { grid-template-columns: 1fr; }
  .story-photo { min-height: 540px; }
  .story-photo::after { background: linear-gradient(0deg, #160503 0%, rgba(22,5,3,.16) 30%, rgba(22,5,3,.08) 100%); }
  .story-copy { padding: 35px 26px 90px; }
  .video-container { grid-template-columns: 1fr; gap: 32px; padding: 28px 22px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer small { text-align: center; }
}

@media (max-width: 520px) {
  .hero { min-height: 760px; }
  .hero-picture img { object-position: 70% center; }
  .hero-content { padding-bottom: 58px; }
  .hero h1 { font-size: clamp(43px, 13vw, 58px); }
  .hero-actions { width: 100%; }
  .btn { width: 100%; padding-inline: 18px; }
  .eyebrow { font-size: 10px; }
  .section { padding-inline: 20px; }
  .section-heading { margin-bottom: 38px; }
  .product-content { min-height: 220px; padding: 22px; }
  .product-number { top: 14px; left: 14px; width: 40px; height: 40px; }
  .product-badge { right: 14px; bottom: 14px; }
  .facts { gap: 10px; }
  .facts strong { font-size: 23px; }
  .facts span { font-size: 11px; }
  .contact { padding-inline: 20px; }
  .contact-card { padding: 36px 25px; }
  .contact-phone { font-size: 13px; padding: 8px 14px; width: 100%; justify-content: center; }
  .floating-whatsapp { right: 18px; bottom: 18px; width: 52px; height: 52px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
  .floating-wa-tooltip { display: none; }
}

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

/* Language switch */
.header-tools {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
}
.language-switch {
  position: relative;
  z-index: 103;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 4px 8px;
  border: 1px solid rgba(229, 189, 109, .38);
  border-radius: 999px;
  background: rgba(10, 1, 0, .32);
  backdrop-filter: blur(10px);
  color: rgba(244, 236, 223, .44);
}
.lang-btn {
  min-width: 30px;
  height: 28px;
  padding: 0 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #b9aca0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease;
}
.lang-btn:hover { color: #fff4e1; }
.lang-btn.active {
  color: #190504;
  background: var(--gold-soft);
  box-shadow: 0 5px 15px rgba(201, 151, 66, .22);
}
.eyebrow b { font: inherit; }

@media (max-width: 1120px) {
  .main-nav { gap: clamp(22px, 3vw, 42px); }
  .header-tools { gap: 18px; }
}

@media (max-width: 820px) {
  .header-tools { gap: 9px; }
  .language-switch {
    min-height: 34px;
    padding: 3px 6px;
    background: rgba(10, 1, 0, .56);
  }
  .lang-btn { min-width: 27px; height: 26px; padding-inline: 5px; }
  .main-nav { padding-top: 68px; }
}

@media (max-width: 380px) {
  .brand { width: 128px; }
  .site-header { padding-inline: 14px; }
  .language-switch { gap: 3px; }
  .lang-btn { min-width: 24px; padding-inline: 3px; }
}
