/* =========================================================
   SIA GLOBAL EXIM — Group website stylesheet
   Light "gallery" theme designed around black brand logos
   ========================================================= */

:root {
  --bg: #f4f0e8;          /* warm paper */
  --bg-2: #ebe5da;        /* alternate section */
  --card: #fbf9f5;        /* cards / plates */
  --text: #1a1714;        /* near-black, matches logos */
  --text-dim: #5b544b;
  --muted: #8a8176;
  --accent: #8f6b3a;      /* bronze */
  --accent-2: #6f5129;
  --amber: #b5671c;
  --terracotta: #a3532f;
  --line: rgba(26, 23, 20, 0.13);
  --dark: #171513;        /* footer / marquee */
  --on-dark: #efe9df;
  --on-dark-dim: #a79e91;
  --line-dark: rgba(239, 233, 223, 0.14);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 30px 60px -34px rgba(40, 30, 18, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0 0 1.1em; }
em { font-style: italic; color: var(--accent); }
address { font-style: normal; }
::selection { background: var(--text); color: var(--bg); }

/* Subtle paper grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--text); color: var(--bg); padding: 8px 14px; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Logos (black PNGs with transparent background) ----------
   Each logo has a different shape, so a per-logo factor (--k) keeps them
   visually balanced when placed side by side. --lh is set per placement. */
.logo { height: calc(var(--lh, 48px) * var(--k, 1)); width: auto; max-width: 100%; object-fit: contain; }
.logo-sge     { --k: 1; }
.logo-stones  { --k: .9; }
.logo-rugs    { --k: 1.3; }
.logo-backlit { --k: .34; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
  color: var(--accent); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-title { font-family: var(--serif); font-size: clamp(2.2rem, 4.6vw, 3.9rem); line-height: 1.05; letter-spacing: -.01em; }
.section-sub { color: var(--text-dim); margin-top: 18px; }
.section { padding: clamp(80px, 12vw, 150px) 0; position: relative; }
.section-head { margin-bottom: clamp(40px, 6vw, 70px); max-width: 760px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 999px; cursor: pointer;
  font-family: var(--sans); font-weight: 500;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn i { font-style: normal; transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn-gold { background: var(--text); color: var(--bg); }
.btn-gold:hover { background: var(--accent); transform: translateY(-2px); }
.btn-ghost { border-color: var(--text); color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-line { padding: 14px 0; border-radius: 0; border-bottom: 1px solid var(--text); color: var(--text); }
.btn-line:hover { color: var(--accent); border-color: var(--accent); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(244, 240, 232, .88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-mark { --lh: 66px; display: block; transition: transform .4s var(--ease); }
.site-header.scrolled .brand-mark { --lh: 50px; }
.brand-mark .logo { transition: height .4s var(--ease); }
.main-nav ul { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); }
.main-nav a {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); font-weight: 500;
  position: relative; padding: 6px 0; transition: color .3s;
}
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--text); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { border: 1px solid var(--text); border-radius: 999px; padding: 9px 20px !important; color: var(--text) !important; }
.nav-cta:hover { background: var(--text); color: var(--bg) !important; }

.menu-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 1px solid var(--line);
  border-radius: 50%; cursor: pointer; position: relative; z-index: 60;
}
.menu-toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--text); transition: transform .4s var(--ease), top .4s var(--ease); }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-open .menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 140px 0 90px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 50% at 80% 45%, rgba(214, 170, 110, .22), transparent 70%),
    radial-gradient(40% 40% at 8% 95%, rgba(143, 107, 58, .10), transparent 70%),
    linear-gradient(180deg, #f7f4ee 0%, var(--bg) 100%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 120px; opacity: .45;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.hero-title { font-family: var(--serif); font-size: clamp(3rem, 7.2vw, 6.4rem); line-height: .95; letter-spacing: -.02em; margin-bottom: 30px; }
.hero-title span { display: block; }
.hero-lede { font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--text-dim); max-width: 470px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Triptych */
.triptych { display: flex; gap: 14px; height: clamp(460px, 66vh, 640px); }
.panel {
  position: relative; flex: 1; overflow: hidden;
  border-radius: 400px 400px 16px 16px;
  transition: flex .8s var(--ease), transform .6s var(--ease);
  isolation: isolate; box-shadow: var(--shadow);
}
.panel:nth-child(2) { transform: translateY(-26px); }
.triptych:hover .panel { flex: .8; }
.triptych .panel:hover { flex: 1.9; }
.panel-tex { position: absolute; inset: -6%; background-size: cover; background-position: center; transition: transform 1.2s var(--ease); z-index: -2; }
.panel:hover .panel-tex { transform: scale(1.06); }
.panel-stone .panel-tex { background-image: url("../assets/textures/marble.svg"); }
.panel-light .panel-tex { background-image: url("../assets/textures/onyx.svg"); animation: breathe 6s ease-in-out infinite; }
.panel-rug .panel-tex { background-image: url("../assets/textures/rug.svg"); }
.panel-shade { display: none; }
.panel-content {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  padding: 18px 14px 16px; border-radius: 10px;
  background: rgba(251, 249, 245, .92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  transition: opacity .5s var(--ease);
}
.triptych:hover .panel:not(:hover) .panel-content { opacity: 0; }
.panel-index { display: none; }
.panel-content { --lh: 54px; }
.panel-logo { display: block; }
.panel-label { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; font-weight: 500; }
.panel-link {
  font-size: 12px; letter-spacing: .06em; color: var(--accent); white-space: nowrap; font-weight: 500;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease), opacity .6s var(--ease);
}
.panel-link i { font-style: normal; }
.panel:hover .panel-link, .panel:focus-visible .panel-link { max-height: 30px; opacity: 1; }

@keyframes breathe { 0%, 100% { filter: brightness(1) saturate(1); } 50% { filter: brightness(1.15) saturate(1.08); } }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 24px; height: 40px; border: 1px solid var(--line); border-radius: 20px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 2px; height: 8px; margin-left: -1px; background: var(--text); border-radius: 2px; animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Marquee (dark band) ---------- */
.marquee { overflow: hidden; padding: 22px 0; background: var(--dark); }
.marquee-track { display: flex; align-items: center; gap: 36px; width: max-content; animation: marquee 40s linear infinite; }
.marquee span { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); font-style: italic; color: var(--on-dark); white-space: nowrap; }
.marquee i { font-style: normal; color: #c9a46a; font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); }
.about-body p { color: var(--text-dim); font-size: 1.05rem; }
.about-body strong { color: var(--text); font-weight: 600; letter-spacing: .04em; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin: 44px 0 0; border: 1px solid var(--line); }
.stat { background: var(--bg); padding: 26px 24px; }
.stat dt { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--text); }
.stat dd { margin: 10px 0 0; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Brands ---------- */
.brands { background: var(--bg-2); }
.logo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: clamp(70px, 10vw, 130px); }
.logo-tile {
  --lh: 84px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 44px 28px 26px; min-height: 210px;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 18px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.logo-tile .logo { transition: transform .5s var(--ease); }
.logo-tile .logo { margin: auto 0; }
.logo-tile span { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); font-weight: 600; opacity: .0; transform: translateY(6px); transition: all .5s var(--ease); }
.logo-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.logo-tile:hover .logo { transform: scale(1.04); }
.logo-tile:hover span { opacity: 1; transform: none; }

.brand { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 7vw, 110px); align-items: center; }
.brand + .brand { margin-top: clamp(90px, 13vw, 170px); }
.brand.reverse .brand-visual { order: 2; }
.brand-visual { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); }
.brand-stone .brand-visual { border-radius: 300px 300px 8px 8px; }
.brand-rug .brand-visual { border-radius: 8px 8px 300px 300px; }
.brand-tex { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.4s var(--ease); }
.brand-visual:hover .brand-tex { transform: scale(1.05); }
.brand-stone .brand-tex { background-image: url("../assets/textures/marble.svg"); }
.brand-light .brand-tex { background-image: url("../assets/textures/onyx.svg"); filter: brightness(.8) saturate(.9); transition: transform 1.4s var(--ease), filter 1.2s var(--ease); }
.brand-light .brand-visual.lit .brand-tex, .brand-light .brand-visual:hover .brand-tex { filter: brightness(1.08) saturate(1.05); }
.brand-light .glow {
  position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 45%), rgba(255, 240, 200, .55), transparent 40%);
  opacity: 0; transition: opacity .6s;
}
.brand-light .brand-visual:hover .glow { opacity: 1; }
.brand-rug .brand-tex { background-image: url("../assets/textures/rug.svg"); }
.brand-num { position: absolute; left: 22px; bottom: 16px; font-family: var(--serif); font-size: clamp(4rem, 8vw, 7rem); line-height: 1; color: rgba(255,255,255,.9); mix-blend-mode: overlay; }
.brand-rug .brand-num { top: 16px; bottom: auto; }
.brand-logo { --lh: 96px; display: inline-block; margin-bottom: 30px; }
.brand-logo .logo { transition: opacity .3s; }
.brand-logo:hover .logo { opacity: .7; }
.brand-title { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; margin-bottom: 22px; }
.brand-info p { color: var(--text-dim); max-width: 520px; }
.brand-light em { color: var(--amber); }
.brand-rug em { color: var(--terracotta); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 34px; }
.chips li { font-size: 12px; letter-spacing: .04em; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--text-dim); background: rgba(251, 249, 245, .6); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.step { padding: 40px 28px 10px 0; position: relative; }
.step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
.step::before { content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 0; background: var(--text); transition: width 1.2s var(--ease); }
.step.in::before { width: 100%; }
.step-no { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 1.3rem; }
.step h3 { font-family: var(--serif); font-size: 2rem; margin: 10px 0 12px; }
.step p { color: var(--text-dim); font-size: .95rem; }

/* ---------- Global ---------- */
.global { background: var(--bg-2); overflow: hidden; }
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.global-copy > p { color: var(--text-dim); max-width: 500px; margin-top: 24px; }
.regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; margin-top: 30px; }
.regions li { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.35rem; display: flex; align-items: center; gap: 12px; }
.regions li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

.orbit { position: relative; aspect-ratio: 1; width: min(100%, 520px); margin: 0 auto; }
.ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring .dot { position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; margin-left: -6px; border-radius: 50%; }
.r1 { width: 50%; height: 50%; animation: spin 14s linear infinite; }
.r2 { width: 76%; height: 76%; animation: spin 24s linear infinite reverse; }
.r3 { width: 100%; height: 100%; animation: spin 36s linear infinite; }
.r1 .dot { background: #8d8a84; box-shadow: 0 0 0 4px rgba(141,138,132,.18); }
.r2 .dot { background: var(--amber); box-shadow: 0 0 0 4px rgba(181,103,28,.18), 0 0 20px rgba(233,166,86,.8); }
.r3 .dot { background: var(--terracotta); box-shadow: 0 0 0 4px rgba(163,83,47,.18); }
.core {
  --lh: 70px;
  position: absolute; top: 50%; left: 50%; width: 36%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; display: grid; place-items: center;
  background: var(--card); box-shadow: var(--shadow);
}
.core .logo { width: 72%; height: auto; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.contact-copy > p { color: var(--text-dim); margin-top: 22px; }
.contact-list { margin-top: 36px; }
.contact-list li { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-list span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); padding-top: 4px; font-weight: 500; }
.contact-list a, .contact-list address { color: var(--text); }
.contact-list a:hover { color: var(--accent); }

.contact-form { background: var(--card); border: 1px solid var(--line); padding: clamp(24px, 4vw, 44px); border-radius: 12px; box-shadow: var(--shadow); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line);
  color: var(--text); font: inherit; padding: 10px 0; border-radius: 0; transition: border-color .3s;
}
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text) 50%), linear-gradient(135deg, var(--text) 50%, transparent 50%); background-position: calc(100% - 10px) 55%, calc(100% - 5px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--text); }
.field.invalid input, .field.invalid textarea { border-color: #b3452c; }
.form-status { margin: 14px 0 0; font-size: 14px; color: var(--accent); min-height: 1.4em; }

/* ---------- Footer (dark, logos inverted to white) ---------- */
.site-footer { background: var(--dark); color: var(--on-dark-dim); padding: 70px 0 30px; }
.site-footer .logo { filter: invert(1); }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { --lh: 80px; }
.footer-logos { --lh: 52px; display: flex; flex-wrap: wrap; align-items: center; gap: clamp(24px, 4vw, 56px); }
.footer-logos .logo { opacity: .75; transition: opacity .3s; }
.footer-logos a:hover .logo { opacity: 1; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--on-dark); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .triptych { height: 480px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-left: 0; padding-left: 0; }
  .step:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; background: rgba(244, 240, 232, .98);
    display: grid; place-items: center;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  .menu-open .main-nav { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 26px; text-align: center; }
  .main-nav a { font-family: var(--serif); font-size: 2rem; letter-spacing: 0; text-transform: none; color: var(--text); font-weight: 400; }
  .nav-cta { font-family: var(--sans) !important; font-size: 13px !important; letter-spacing: .14em !important; text-transform: uppercase !important; }
  .menu-open { overflow: hidden; }

  .about-grid, .brand, .global-grid, .contact-grid { grid-template-columns: 1fr; }
  .brand.reverse .brand-visual { order: 0; }
  .brand-visual { aspect-ratio: 4 / 3.4; }
  .logo-row { grid-template-columns: 1fr; }
  .logo-tile { min-height: 170px; --lh: 72px; }
  .logo-tile span { opacity: 1; transform: none; }
  .orbit { width: min(80%, 380px); }
}

@media (max-width: 600px) {
  .brand-mark, .site-header.scrolled .brand-mark { --lh: 42px; }
  .triptych { height: auto; flex-direction: column; gap: 12px; }
  .panel, .triptych:hover .panel, .triptych .panel:hover { flex: none; height: 170px; border-radius: 16px; }
  .panel:nth-child(2) { transform: none; }
  .panel-content { --lh: 46px; top: 10px; left: auto; right: 10px; width: 58%; justify-content: center; }
  .triptych:hover .panel:not(:hover) .panel-content { opacity: 1; }
  .panel-link { max-height: 30px; opacity: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 16px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 30px 0 6px; border-left: 0; }
  .step + .step { border-top: 1px solid var(--line); }
  .regions { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .brand-logo { --lh: 80px; }
  .footer-brand { --lh: 64px; }
  .footer-logos { --lh: 44px; }
  .scroll-cue { display: none; }
}

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