/* =========================================================
   GRAMAS FOOD — Corporate Website
   Design System & Global Styles
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette — Gramas Food (orange + charcoal + warm browns + olive) */
  /* "green-*" vars repurposed as the dark/charcoal + warm-accent ramp */
  --green-900: #1D1E1C;
  --green-800: #583616;
  --green-700: #E9630A;
  --green-600: #C94E00;
  --green-500: #E9630A;
  --green-100: #FFF0E6;

  /* Accent ramp — bright brand orange / gold for CTAs & highlights */
  --amber-700: #B74500;
  --amber-600: #D95400;
  --amber-500: #E9630A;
  --amber-400: #F58239;
  --amber-100: #FFF0E6;

  --olive: #80b500;       /* secondary "natural" accent */
  --brown: #583616;

  --cream: #ffffff;       /* main background (white) */
  --cream-2: #f7f8fa;
  --sand: #f2f5f8;        /* cool light section background */

  --ink: #1D1E1C;
  --ink-soft: #5F554C;
  --muted: #808080;
  --line: #e6e8ec;
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(31, 35, 43, 0.06);
  --shadow-md: 0 12px 30px rgba(31, 35, 43, 0.10);
  --shadow-lg: 0 24px 60px rgba(31, 35, 43, 0.16);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --container: 1240px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Josefin Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Josefin Sans", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 600; color: var(--ink); letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

::selection { background: var(--amber-400); color: var(--green-900); }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0; }
.bg-cream { background: var(--cream); }
.bg-sand { background: linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%); }
.bg-green { background: var(--green-900); color: #d6d9de; }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4 { color: #ffffff; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--amber-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber-500); border-radius: 2px; }
.bg-green .eyebrow { color: var(--amber-400); }
.bg-green .eyebrow::before { background: var(--amber-400); }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p.lead { margin-top: 16px; color: var(--ink-soft); font-size: 1.08rem; }
.bg-green .section-head p.lead { color: #aab0ba; }

.lead { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn--primary { background: var(--amber-500); color: var(--green-900); box-shadow: 0 10px 24px rgba(243,107,33,.32); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(243,107,33,.42); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--dark { background: var(--green-800); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); background: var(--green-700); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--green-800); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--green-600); background: var(--white); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--green-900); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); height: 70px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { height: 30px; width: auto; display: block; }
.brand__logo--light { display: none; }
/* On the dark hero (transparent nav over hero) swap to the white logo */
.site-header:not(.scrolled) .nav-light .brand__logo--dark { display: none; }
.site-header:not(.scrolled) .nav-light .brand__logo--light { display: block; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--green-600), var(--green-800));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; color: var(--green-900); letter-spacing: -.02em; }
.brand__tag { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--amber-700); font-weight: 600; margin-top: 3px; }
.site-header:not(.scrolled) .nav-light .brand__name { color: #fff; }
.site-header:not(.scrolled) .nav-light .brand__tag { color: var(--amber-400); }

/* Nav */
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block; padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: .96rem; color: var(--ink-soft);
  transition: color .25s, background .25s;
}
.main-nav a:hover, .main-nav a.active { color: var(--green-800); background: rgba(31,35,43,.08); }
.site-header:not(.scrolled) .nav-light .main-nav a { color: rgba(255,255,255,.85); }
.site-header:not(.scrolled) .nav-light .main-nav a:hover,
.site-header:not(.scrolled) .nav-light .main-nav a.active { color: #fff; background: rgba(255,255,255,.14); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* Language switch */
.lang-switch { display: inline-flex; background: rgba(31,35,43,.1); border-radius: var(--radius-pill); padding: 4px; }
.lang-switch button {
  font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .04em;
  padding: 6px 13px; border-radius: var(--radius-pill); color: var(--ink-soft); transition: all .25s;
}
.lang-switch button.active { background: var(--white); color: var(--green-800); box-shadow: var(--shadow-sm); }
.site-header:not(.scrolled) .nav-light .lang-switch { background: rgba(255,255,255,.16); }
.site-header:not(.scrolled) .nav-light .lang-switch button { color: rgba(255,255,255,.85); }
.site-header:not(.scrolled) .nav-light .lang-switch button.active { background: #fff; color: var(--green-800); }

.header-actions .btn { padding: 11px 22px; font-size: .9rem; }
.header-actions .btn--cta { background: var(--amber-500); color: var(--green-900); }
.site-header:not(.scrolled) .nav-light .btn--cta { background: #fff; }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; background: rgba(31,35,43,.1); }
.burger span { width: 22px; height: 2px; background: var(--green-800); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.site-header:not(.scrolled) .nav-light .burger { background: rgba(255,255,255,.18); }
.site-header:not(.scrolled) .nav-light .burger span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px; color: #fff; overflow: hidden;
  background: var(--green-900);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(20,24,31,.92) 0%, rgba(20,24,31,.74) 42%, rgba(20,24,31,.30) 100%),
    radial-gradient(80% 60% at 80% 20%, rgba(243,107,33,.22), transparent 60%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px);
  font-size: .82rem; font-weight: 500; letter-spacing: .02em; margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-400); box-shadow: 0 0 0 4px rgba(255,138,71,.25); }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--amber-400); }
.hero__sub { margin-top: 24px; font-size: 1.18rem; color: #d2d6dd; max-width: 560px; }
.hero__cta { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero__stats { margin-top: 60px; display: flex; gap: 44px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: #fff; line-height: 1; }
.hero__stat .num .suffix { color: var(--amber-400); }
.hero__stat .label { font-size: .85rem; color: #aab0ba; margin-top: 8px; max-width: 150px; }

.hero__scroll {
  position: absolute; bottom: 28px; right: 34px; left: auto; transform: none; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
@media (max-height: 860px) { .hero__scroll { display: none; } }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.45); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; border-radius: 3px; background: var(--amber-400); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* Marquee trust strip */
.trust-strip { background: var(--green-800); color: #c8ccd4; padding: 18px 0; overflow: hidden; }
.marquee { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; letter-spacing: .03em; opacity: .85; }
.marquee span::before { content: "\2726"; color: var(--amber-400); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   FEATURE / VALUE CARDS
   ========================================================= */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.value-card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--amber-500), var(--green-500)); transition: width .5s var(--ease); }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card:hover::after { width: 100%; }
.value-card .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(140deg, var(--green-100), #fff); color: var(--green-700);
}
.value-card .ic svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--ink-soft); font-size: .98rem; }

/* =========================================================
   ABOUT / SPLIT
   ========================================================= */
.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; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split__media .badge-float {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.badge-float.bl { bottom: -26px; left: -26px; }
.badge-float.tr { top: -24px; right: -22px; }
.badge-float .bf-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--green-800); color: var(--amber-400); display: grid; place-items: center; }
.badge-float .bf-ic svg { width: 24px; height: 24px; }
.badge-float .bf-num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--green-900); line-height: 1; }
.badge-float .bf-label { font-size: .78rem; color: var(--muted); }

.checklist { margin-top: 28px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ck { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--green-100); color: var(--green-600); display: grid; place-items: center; margin-top: 2px; }
.checklist .ck svg { width: 15px; height: 15px; }
.checklist b { font-family: var(--font-head); display: block; }
.checklist span.d { color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   PRODUCTS
   ========================================================= */
.product-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-card__img { position: relative; aspect-ratio: 4/3.2; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-card:hover .product-card__img img { transform: scale(1.09); }
.product-card__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,24,31,.55)); }
.product-card__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2; padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(250,246,239,.92); color: var(--green-800); font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .04em;
}
.product-card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.product-card__body h3 { margin-bottom: 8px; }
.product-card__body p { color: var(--ink-soft); font-size: .94rem; flex: 1; }
.product-card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--green-700); }
.product-card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.product-card:hover .product-card__link svg { transform: translateX(5px); }

.spec-list { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 7px; }
.spec-list span { font-size: .74rem; padding: 5px 11px; border-radius: var(--radius-pill); background: var(--cream); border: 1px solid var(--line); color: var(--ink-soft); }

/* Category pills filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 46px; }
.filter-bar button {
  padding: 10px 22px; border-radius: var(--radius-pill); font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); transition: all .3s;
}
.filter-bar button:hover { border-color: var(--green-500); color: var(--green-700); }
.filter-bar button.active { background: var(--green-800); color: #fff; border-color: var(--green-800); }

/* =========================================================
   PROCESS / TIMELINE
   ========================================================= */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process__step { position: relative; padding-top: 30px; }
.process__step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--amber-600);
  position: absolute; top: 0; left: 0;
}
.process__step .bar { height: 3px; background: var(--line); border-radius: 3px; margin-bottom: 22px; position: relative; overflow: hidden; }
.process__step .bar::after { content: ""; position: absolute; inset: 0; width: 0; background: var(--amber-500); border-radius: 3px; transition: width 1s var(--ease); }
.process__step.in .bar::after { width: 100%; }
.bg-green .process__step .bar { background: rgba(255,255,255,.14); }
.process__step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.process__step p { color: var(--ink-soft); font-size: .94rem; }
.bg-green .process__step p { color: #aab0ba; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-block { text-align: center; padding: 10px; }
.stat-block .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: #fff; line-height: 1; }
.stat-block .num .suffix { color: var(--amber-400); }
.stat-block .label { margin-top: 12px; color: #aab0ba; font-size: .95rem; }

/* =========================================================
   CERTIFICATES
   ========================================================= */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cert-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cert-card .seal { width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(140deg, var(--amber-100), #fff); color: var(--amber-700); border: 2px solid var(--amber-400); }
.cert-card .seal svg { width: 34px; height: 34px; }
.cert-card h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--green-900); }
.cert-card p { font-size: .85rem; color: var(--muted); margin-top: 6px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-card .qmark { font-family: var(--font-head); font-size: 4rem; color: var(--amber-400); line-height: .6; height: 30px; }
.quote-card p { color: var(--ink-soft); font-style: italic; margin: 18px 0 24px; }
.quote-card .who { display: flex; align-items: center; gap: 14px; }
.quote-card .who .av { width: 48px; height: 48px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote-card .who b { font-family: var(--font-head); }
.quote-card .who span { display: block; font-size: .82rem; color: var(--muted); }
.stars { color: var(--amber-500); letter-spacing: 2px; margin-top: 4px; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 84px); background: linear-gradient(135deg, var(--green-800), var(--green-900)); color: #fff; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(243,107,33,.35), transparent 65%); }
.cta-band .inner { position: relative; z-index: 1; max-width: 620px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c4c8d0; margin: 16px 0 30px; }
.cta-band .hero__cta { margin-top: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--green-900); color: #aab0ba; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 56px; }
.footer-grid .brand__name { color: #fff; }
.footer-about p { margin: 20px 0; font-size: .95rem; max-width: 320px; }
.social { display: flex; gap: 12px; }
.social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .3s, transform .3s; }
.social a:hover { background: var(--amber-500); color: var(--green-900); transform: translateY(-3px); }
.social a svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 22px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .94rem; transition: color .25s, padding .25s; }
.footer-col a:hover { color: var(--amber-400); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: .92rem; line-height: 1.45; }
.footer-contact li b { font-weight: 600; }
.footer-contact .fc-ic { color: var(--amber-400); flex-shrink: 0; }
.footer-contact .fc-ic svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: var(--amber-400); }

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 70px) 0 70px; color: #fff; overflow: hidden; background: var(--green-900);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(20,24,31,.94), rgba(20,24,31,.7)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 760px; }
.page-hero p { color: #c4c8d0; max-width: 560px; margin-top: 18px; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #9aa0ac; margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-info .ci-card { display: flex; gap: 18px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .3s, transform .3s; }
.contact-info .ci-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-info .ci-ic { flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.contact-info .ci-ic svg { width: 24px; height: 24px; }
.contact-info h4 { font-family: var(--font-head); margin-bottom: 4px; }
.contact-info p, .contact-info a { color: var(--ink-soft); font-size: .95rem; }
.contact-info a:hover { color: var(--green-700); }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .96rem; background: var(--cream); color: var(--ink); transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 4px rgba(243,107,33,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.form-success { display: none; padding: 16px 20px; border-radius: var(--radius-sm); background: var(--green-100); color: var(--green-800); font-weight: 500; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.15); }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--green-900); }
.faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s, color .3s; }
.faq-item.open .faq-q .pm { transform: rotate(135deg); background: var(--green-700); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--ink-soft); font-size: .96rem; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* Back to top */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 80; width: 50px; height: 50px; border-radius: 50%; background: var(--green-800); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(14px); transition: all .35s var(--ease); }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--amber-500); color: var(--green-900); }
.to-top svg { width: 22px; height: 22px; }

/* Mobile drawer overlay */
.nav-overlay { position: fixed; inset: 0; background: rgba(20,24,31,.5); backdrop-filter: blur(3px); z-index: 99; opacity: 0; pointer-events: none; transition: opacity .35s; }
.nav-overlay.show { opacity: 1; pointer-events: auto; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-band, .process, .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: var(--cream); z-index: 100; padding: 100px 28px 40px; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); overflow-y: auto; }
  .main-nav.open { transform: none; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .main-nav a { padding: 14px 18px; font-size: 1.05rem; color: var(--ink) !important; }
  .main-nav a:hover, .main-nav a.active { background: rgba(31,35,43,.1); color: var(--green-800) !important; }
  .burger { display: flex; }
  .hero__scroll { display: none; }
  .header-actions .btn--cta { display: none; }
  .split, .split--rev, .contact-grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .badge-float.bl { left: 14px; bottom: -20px; }
  .badge-float.tr { right: 14px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .stats-band, .process, .cert-grid, .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .hero__stat .num { font-size: 2rem; }
  .header-actions .lang-switch { display: inline-flex; }
  .section { padding: 64px 0; }
  .cta-band { text-align: center; }
  .cta-band .hero__cta { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

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

/* Cookie consent banner */
#cookie-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  max-width: 720px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  background: var(--ink); color: #fff;
  padding: 16px 20px; border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
#cookie-consent p { flex: 1 1 280px; margin: 0; font-size: 14px; line-height: 1.5; }
#cookie-consent .cc-actions { display: flex; gap: 10px; }
#cookie-consent button {
  cursor: pointer; border: 0; border-radius: var(--radius-pill);
  padding: 10px 20px; font: inherit; font-weight: 600; font-size: 14px;
}
#cookie-consent .cc-accept { background: var(--amber-500); color: #fff; }
#cookie-consent .cc-reject { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* Certificate documents grid */
.doc-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px;
}
.doc-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream-2); border: 1px solid rgba(31,35,43,.08);
  border-radius: var(--radius); padding: 16px 18px;
  transition: box-shadow .2s, transform .2s;
}
.doc-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.doc-ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--amber-100); color: var(--amber-600);
}
.doc-ic svg { width: 22px; height: 22px; }
.doc-meta { flex: 1 1 auto; min-width: 0; }
.doc-meta h4 { margin: 0; font-size: 16px; color: var(--ink); }
.doc-meta span { display: block; font-size: 13px; color: var(--ink-soft); }
.doc-lang {
  flex: none; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: var(--ink-soft); border: 1px solid rgba(31,35,43,.18);
  border-radius: var(--radius-pill); padding: 2px 8px;
}
.doc-link {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--amber-600); text-decoration: none;
}
.doc-link svg { width: 16px; height: 16px; }
.doc-link:hover { color: var(--amber-700); }
body[data-page="quality"] .doc-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(330px, 36vw); overflow-x: auto; padding: 8px 2px 26px; scroll-snap-type: x mandatory; scrollbar-color: var(--amber-500) var(--line); }
body[data-page="quality"] .doc-card { min-height: 142px; scroll-snap-align: start; background: #fff; }
body[data-page="products"] .product-card { border: 1px solid rgba(88,54,22,.1); background: radial-gradient(circle at 85% 10%, rgba(233,99,10,.12), transparent 27%), #fff; }
body[data-page="products"] .product-card__img { background: radial-gradient(circle, rgba(233,99,10,.24), transparent 65%); }

/* =========================================================
   2026 BRAND REVISION
   ========================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-header:not(.nav-light-wrap) { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(88,54,22,.09); }
.brand { position: relative; flex-direction: column; align-items: flex-start; gap: 0; }
.brand__logo { height: 31px; }
.brand__logo--official { height: 38px; }
.brand__logo--light.brand__logo--official { filter: brightness(0) invert(1); }
.site-footer .footer-about .brand { width: fit-content; padding: 10px 14px; background: #fff; border-radius: 5px; }
.site-footer .brand__logo { height: 38px; }

/* Language dropdown */
.lang-menu { position: relative; }
.lang-menu__trigger { min-width: 104px; height: 44px; padding: 0 12px; border: 1px solid rgba(88,54,22,.14); border-radius: var(--radius-pill); background: rgba(255,255,255,.92); color: var(--brown); display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .76rem; font-weight: 600; }
.lang-menu__trigger > svg:first-child { width: 17px; height: 17px; }
.lang-menu__trigger .lang-chevron { width: 14px; height: 14px; transition: transform .25s; }
.lang-menu.open .lang-chevron { transform: rotate(180deg); }
.lang-menu__panel { position: absolute; top: calc(100% + 10px); right: 0; min-width: 180px; padding: 8px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .25s var(--ease); }
.lang-menu.open .lang-menu__panel { opacity: 1; visibility: visible; transform: none; }
.lang-menu__panel button { width: 100%; padding: 10px 12px; border-radius: 10px; display: flex; align-items: center; gap: 12px; color: var(--ink-soft); text-align: left; }
.lang-menu__panel button:hover, .lang-menu__panel button.active { color: var(--brown); background: var(--amber-100); }
.lang-menu__panel b { width: 25px; color: var(--amber-600); }
.site-header:not(.scrolled) .nav-light .lang-menu__trigger { border-color: rgba(255,255,255,.24); background: rgba(29,30,28,.32); color: #fff; }
[dir="rtl"] .lang-menu__panel { right: auto; left: 0; }

/* Elemental logo intro */
.intro-active { overflow: hidden; }
.site-intro { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; background: #050505; opacity: 1; transition: opacity .7s var(--ease), visibility .7s; }
.site-intro img { position: relative; z-index: 2; width: min(52vw, 460px); opacity: 0; transform: translateY(8px); filter: brightness(0) invert(1); transition: opacity .7s .2s, transform .9s var(--ease) .2s; }
.site-intro__glow { position: absolute; inset: -15%; background: radial-gradient(circle at 50% 50%, #E9630A 0 6%, rgba(233,99,10,.86) 12%, rgba(233,99,10,.28) 27%, transparent 52%); clip-path: circle(0 at 50% 50%); transition: clip-path 1.45s var(--ease); }
.site-intro__rays { position: absolute; inset: -40%; opacity: 0; background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg 8deg, rgba(233,99,10,.16) 9deg, transparent 11deg 18deg); -webkit-mask-image: radial-gradient(circle, #000 0 12%, transparent 48%); mask-image: radial-gradient(circle, #000 0 12%, transparent 48%); transition: opacity .6s .25s; }
.site-intro.play img { opacity: 1; transform: none; }
.site-intro.play .site-intro__glow { clip-path: circle(78vmax at 50% 50%); }
.site-intro.play .site-intro__rays { opacity: 1; animation: introRays 9s linear infinite; }
.site-intro.leave { opacity: 0; visibility: hidden; }
@keyframes introRays { to { transform: rotate(360deg); } }

/* Full-bleed product hero */
.hero { min-height: 760px; height: max(760px, 100svh); padding: calc(var(--header-h) + 62px) 0 78px; background: var(--ink); color: #fff; align-items: center; }
.hero__container { position: relative; z-index: 2; width: min(100% - 40px, var(--container)); }
.hero__inner { max-width: 700px; }
.hero__badge { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(20,18,15,.36); box-shadow: none; }
.hero h1 { color: #fff; font-size: clamp(3rem, 4.65vw, 4.8rem); margin-top: 26px; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--amber-500); }
.hero__sub { color: rgba(255,255,255,.84); max-width: 620px; font-size: 1.13rem; text-shadow: 0 1px 14px rgba(0,0,0,.25); }
.hero__cta { margin-top: 30px; }
.hero__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(20,18,15,.18); backdrop-filter: blur(8px); }
.hero__cta .btn--ghost:hover { color: var(--ink); }
.play-ic { width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; padding-left: 2px; background: var(--brown); color: #fff; font-size: .55rem; }
.hero__video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; transform: none; animation: none; }
.hero__overlay { background: linear-gradient(90deg, rgba(18,16,13,.91) 0%, rgba(18,16,13,.76) 34%, rgba(18,16,13,.36) 62%, rgba(18,16,13,.12) 100%), linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28)); }
.hero__media-note { position: absolute; left: 32px; bottom: 32px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-pill); color: #fff; background: rgba(29,30,28,.36); backdrop-filter: blur(8px); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.hero__media-note .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-400); box-shadow: 0 0 0 5px rgba(233,99,10,.2); }
.hero__rail { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); display: grid; gap: 10px; }
.hero__rail span { width: 3px; height: 32px; border-radius: 3px; background: rgba(255,255,255,.38); }
.hero__rail .active { height: 62px; background: var(--amber-500); }

/* Certificate and partner motion bands */
.brand-bands { border-block: 1px solid rgba(88,54,22,.12); background: #fff; }
.brand-band { min-height: 84px; display: grid; grid-template-columns: 190px 1fr; align-items: stretch; overflow: hidden; }
.brand-band + .brand-band { border-top: 1px solid rgba(88,54,22,.12); }
.brand-band__label { position: relative; z-index: 2; padding: 0 24px; display: flex; align-items: center; justify-content: center; background: var(--brown); color: #fff; font-size: .7rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; text-align: center; }
.brand-band--partners .brand-band__label { background: var(--amber-500); }
.brand-band__viewport { overflow: hidden; display: flex; align-items: center; }
.brand-band__track { display: flex; align-items: center; gap: 58px; width: max-content; white-space: nowrap; will-change: transform; }
.brand-band__track span { min-width: 125px; text-align: center; color: var(--brown); font-size: 1.05rem; font-weight: 600; letter-spacing: .04em; }
.brand-band__track--left { animation: bandLeft 32s linear infinite; }
.brand-band__track--right { animation: bandRight 42s linear infinite; transform: translateX(-50%); }
.partner-wordmarks span { color: var(--ink-soft); font-weight: 700; }
.partner-wordmarks .logo-bim { color: #ef233c; }
.partner-wordmarks .logo-sok { color: #e50046; }
.partner-wordmarks .logo-a101 { color: #1583bd; }
.partner-wordmarks .logo-migros { color: #f58220; }
.partner-wordmarks .logo-thy { color: #d71920; font-size: .8rem; }
@keyframes bandLeft { to { transform: translateX(-50%); } }
@keyframes bandRight { to { transform: translateX(0); } }

/* Brand family */
.brand-house { overflow: hidden; background: radial-gradient(circle at 50% 38%, #20160f 0%, #11100e 44%, #090a09 100%); }
.brand-house .section-head { max-width: 840px; margin-bottom: 46px; }
.brand-house .section-head h2 { margin-top: 8px; color: #f5eee7; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 400; letter-spacing: -.035em; }
.brand-house .section-head .lead { color: rgba(255,255,255,.62); }
.brand-showcase { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.subbrand { position: relative; min-height: 340px; border: 1px solid rgba(233,99,10,.34); border-radius: 28px; color: #fff; overflow: hidden; display: grid; grid-template-columns: 48% 52%; background: linear-gradient(135deg, #17130f, #0d0e0d); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); transition: border-color .4s, transform .5s var(--ease), box-shadow .5s var(--ease); }
.subbrand:hover { border-color: rgba(233,99,10,.72); transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.32); }
.subbrand__media { position: relative; min-width: 0; overflow: hidden; }
.subbrand__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 58%, rgba(13,14,13,.82) 100%), linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.22)); }
.subbrand__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .6s; }
.subbrand:hover .subbrand__media img { transform: scale(1.045); filter: saturate(1.08); }
.subbrand__content { position: relative; z-index: 1; min-width: 0; padding: 38px 36px 30px 24px; display: flex; flex-direction: column; align-items: flex-start; }
.subbrand__num { display: flex; align-items: center; gap: 9px; color: var(--amber-500); font-size: .8rem; line-height: 1; }
.subbrand__num b { font-weight: 500; }
.subbrand__num i { display: block; width: 24px; height: 1px; background: currentColor; opacity: .7; }
.subbrand h3 { margin-top: 20px; color: #f8f1eb; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 400; letter-spacing: .02em; }
.subbrand__rule { width: 48px; height: 1px; margin-top: 14px; background: var(--amber-500); }
.subbrand p { max-width: 330px; margin-top: 18px; color: rgba(255,255,255,.68); font-size: .89rem; line-height: 1.55; }
.subbrand__link { width: fit-content; margin-top: auto; margin-inline-start: auto; padding-top: 20px; display: flex; align-items: center; justify-content: flex-start; gap: 14px; color: rgba(255,255,255,.84); font-size: .76rem; }
.subbrand__link > i { width: 48px; height: 48px; flex: 0 0 48px; border: 1px solid var(--amber-500); border-radius: 50%; display: grid; place-items: center; transition: background .3s, color .3s, transform .4s var(--ease); }
.subbrand__link svg { width: 18px; height: 18px; }
.subbrand:hover .subbrand__link > i { color: #111; background: var(--amber-500); transform: translateX(4px); }
.subbrand--wide { grid-column: 1 / -1; min-height: 240px; grid-template-columns: 40% 60%; }
.subbrand--wide .subbrand__content { padding-left: 42px; display: grid; grid-template-columns: minmax(250px, 1fr) minmax(180px, .7fr); grid-template-rows: auto auto auto 1fr; column-gap: 54px; }
.subbrand--wide .subbrand__num, .subbrand--wide h3, .subbrand--wide .subbrand__rule { grid-column: 1; }
.subbrand--wide p { grid-column: 1; }
.subbrand--wide .subbrand__link { grid-column: 2; grid-row: 1 / -1; align-self: end; justify-self: end; }
.subbrand--static { cursor: default; }
.subbrand--static:hover { border-color: rgba(233,99,10,.34); transform: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.035); }
.subbrand--static:hover .subbrand__media img { transform: none; filter: none; }
.brand-house__note { margin-top: 28px; max-width: 760px; color: #aab0aa; }
.munch-callout { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; overflow: hidden; background: var(--ink); color: #fff; }
.munch-callout__media { min-height: 420px; overflow: hidden; }
.munch-callout__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.munch-callout:hover .munch-callout__media img { transform: scale(1.06); }
.munch-callout__content { padding: clamp(36px, 6vw, 74px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.munch-callout h2 { margin-top: 10px; color: #fff; }
.munch-callout p { margin: 18px 0 30px; color: #b7b9b6; }

/* Certificate project carousel */
.cert-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 18px; overflow-x: auto; padding: 8px 2px 30px; scroll-snap-type: x mandatory; scrollbar-color: var(--amber-500) var(--line); }
.cert-project { scroll-snap-align: start; position: relative; min-height: 410px; padding: 34px 30px; border-radius: 0; background: var(--cream-2); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; transition: .4s var(--ease); }
.cert-project::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, transparent 45%, rgba(233,99,10,.12)); }
.cert-project:hover { transform: translateY(-6px); border-color: var(--amber-500); }
.cert-project > * { position: relative; z-index: 1; }
.cert-project__index { position: absolute; top: 24px; right: 24px; color: var(--muted); font-size: .75rem; }
.cert-project .seal { width: 92px; height: 92px; margin-bottom: auto; border: 1px solid var(--amber-500); border-radius: 50%; color: var(--amber-600); display: grid; place-items: center; }
.cert-project .seal svg { width: 42px; height: 42px; }
.cert-project h3 { font-size: 1.7rem; }
.cert-project p { margin-top: 8px; color: var(--ink-soft); }
.cert-project__view { margin-top: 22px; color: var(--amber-600); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.cert-all { margin-top: 28px; }

/* COLLINS-inspired draggable certificate stack */
.cert-stack-section { overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f7f2ec 100%); }
.cert-stack-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr); gap: clamp(50px, 8vw, 130px); align-items: center; }
.cert-stack-copy { position: relative; z-index: 5; }
.cert-stack-copy h2 { margin-top: 12px; }
.cert-stack-copy .lead { margin-top: 20px; }
.cert-stack-instruction { display: flex; align-items: center; gap: 12px; margin-top: 34px; color: var(--brown); font-size: .92rem; }
.drag-symbol { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(88,54,22,.2); border-radius: 50%; font-size: 1.2rem; }
.cert-stack-controls { margin-top: 26px; display: flex; align-items: center; gap: 15px; }
.cert-stack-control { display: inline-flex; align-items: center; gap: 7px; color: var(--brown); font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.cert-stack-control:hover { color: var(--amber-600); }
.cert-stack-count { min-width: 65px; padding: 6px 10px; border-inline: 1px solid var(--line); color: var(--muted); font-size: .73rem; text-align: center; }
.cert-stack-all { margin-top: 34px; }
.cert-stack-stage { position: relative; min-height: 710px; display: grid; place-items: center; }
.cert-stack-deck { position: relative; width: min(76vw, 500px); aspect-ratio: 3 / 4; perspective: 1200px; outline: none; }
.cert-stack-deck:focus-visible { outline: 3px solid rgba(233,99,10,.35); outline-offset: 18px; border-radius: 28px; }
.cert-stack-card { --card-bg: #E9630A; --card-ink: #fff; position: absolute; inset: 0; padding: 18px; border-radius: 28px; overflow: hidden; background: var(--card-bg); color: var(--card-ink); box-shadow: 0 28px 70px rgba(29,30,28,.2), 0 3px 10px rgba(29,30,28,.12); display: flex; flex-direction: column; transform-origin: 50% 105%; transition: transform .43s var(--ease), opacity .3s ease, box-shadow .25s; will-change: transform; user-select: none; -webkit-user-drag: none; touch-action: none; }
.cert-stack-card.is-top { cursor: grab; }
.cert-stack-card:not(.is-top) { pointer-events: none; }
.cert-stack-card.is-dragging { cursor: grabbing; transition: none; box-shadow: 0 40px 90px rgba(29,30,28,.32); }
.cert-stack-card.is-cycling { pointer-events: none; }
.cert-stack-card--black { --card-bg: #1D1E1C; }
.cert-stack-card--cream { --card-bg: #f1e4d6; --card-ink: #1D1E1C; }
.cert-stack-card--brown { --card-bg: #583616; }
.cert-stack-card--coral { --card-bg: #ff875c; --card-ink: #1D1E1C; }
.cert-stack-card--gold { --card-bg: #dca62c; --card-ink: #1D1E1C; }
.cert-stack-card__index { position: absolute; top: 29px; left: 30px; z-index: 3; min-width: 36px; height: 36px; padding: 0 8px; border-radius: 18px; background: rgba(29,30,28,.72); color: #fff; display: grid; place-items: center; font-size: .7rem; font-weight: 600; backdrop-filter: blur(8px); }
.cert-stack-card__preview { flex: 1; min-height: 0; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: inset 0 0 0 1px rgba(29,30,28,.06); }
.cert-stack-card__preview img { width: 100%; height: 100%; object-fit: contain; padding: 12px; pointer-events: none; }
.cert-stack-card__meta { min-height: 112px; padding: 20px 8px 3px; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.cert-stack-card__meta span { display: block; font-size: .67rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; opacity: .74; }
.cert-stack-card__meta h3 { margin-top: 5px; color: inherit; font-size: clamp(1.45rem, 3vw, 2rem); }
.cert-stack-card__open { flex-shrink: 0; padding-bottom: 6px; }
.cert-stack-stage__hint { position: absolute; bottom: 0; color: var(--muted); font-size: .78rem; letter-spacing: .04em; }

/* Newsletter */
.newsletter { position: relative; margin-bottom: 48px; padding: 36px 38px; border: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: 1fr minmax(360px, .85fr); gap: 28px 48px; align-items: center; }
.newsletter h3 { color: #fff; margin-top: 7px; font-size: 1.8rem; }
.newsletter p { color: #aab0ba; font-size: .92rem; }
.newsletter__form { display: flex; gap: 10px; }
.newsletter__form input { min-width: 0; flex: 1; height: 52px; padding: 0 18px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: #fff; font: inherit; }
.newsletter__form input:focus { outline: 2px solid var(--amber-500); outline-offset: 2px; }
.newsletter__form .btn { padding-block: 12px; }
.newsletter__success { display: none; grid-column: 2; color: var(--amber-400) !important; }
.newsletter__success.show { display: block; }

/* Contact locations */
.ci-card--location { width: 100%; text-align: left; font: inherit; }
.ci-card--location.active { border-color: var(--amber-500); box-shadow: 0 0 0 3px rgba(233,99,10,.1); }
[dir="rtl"] .ci-card--location { text-align: right; }
[dir="rtl"] .munch-callout__content { align-items: flex-end; text-align: right; }
.field:has(input[required], select[required], textarea[required]) label::after { content: " *"; color: var(--amber-600); }

@media (max-width: 1120px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); background: var(--cream); z-index: 100; padding: 100px 28px 40px; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); overflow-y: auto; }
  .main-nav.open { transform: none; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .main-nav a { padding: 14px 18px; font-size: 1.05rem; color: var(--ink) !important; }
  .burger { display: flex; }
  .header-actions .btn--cta { display: none; }
}

@media (max-width: 860px) {
  .hero { height: max(760px, 100svh); min-height: 760px; padding: calc(var(--header-h) + 48px) 0 72px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(18,16,13,.9), rgba(18,16,13,.62)), linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42)); }
  .brand-showcase { grid-template-columns: 1fr; }
  .subbrand, .subbrand--wide { grid-column: auto; min-height: 320px; grid-template-columns: 46% 54%; }
  .subbrand--wide .subbrand__content { padding: 34px 30px 28px 22px; display: flex; }
  .newsletter { grid-template-columns: 1fr; }
  .newsletter__success { grid-column: 1; }
  .munch-callout { grid-template-columns: 1fr; }
  .cert-stack-layout { grid-template-columns: 1fr; gap: 48px; }
  .cert-stack-copy { max-width: 640px; }
  .cert-stack-stage { min-height: min(130vw, 660px); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-contact li > *:last-child { min-width: 0; overflow-wrap: anywhere; }
  .site-header .container { gap: 8px; }
  .brand__logo { height: 23px; }
  .brand__logo--official { height: 31px; }
  .header-actions { gap: 7px; }
  .lang-menu__trigger { min-width: 54px; width: 54px; padding: 0; }
  .lang-menu__trigger > svg:first-child { display: none; }
  .lang-menu__trigger .lang-chevron { width: 11px; }
  .lang-menu__panel { position: fixed; top: calc(var(--header-h) + 8px); right: 16px; left: auto; }
  [dir="rtl"] .lang-menu__panel { right: auto; left: 16px; }
  .burger { width: 42px; height: 42px; }
  .hero__container { width: min(100% - 44px, var(--container)); }
  .hero h1 { font-size: clamp(2.3rem, 10.5vw, 3.15rem); }
  .hero__sub { font-size: 1rem; line-height: 1.55; }
  .hero__cta { display: grid; grid-template-columns: 1fr; }
  .hero__cta .btn { justify-content: center; }
  .hero__video { object-position: 58% center; }
  .hero__rail { display: none; }
  .hero__media-note { left: 18px; bottom: 18px; }
  .brand-band { grid-template-columns: 94px 1fr; min-height: 70px; }
  .brand-band__label { padding: 0 8px; font-size: .54rem; }
  .brand-band__track { gap: 32px; }
  .brand-band__track span { min-width: 100px; font-size: .86rem; }
  .brand-house .section-head h2 { font-size: clamp(2.4rem, 12vw, 3.25rem); }
  .subbrand, .subbrand--wide { min-height: 560px; grid-template-columns: 1fr; grid-template-rows: 245px 1fr; border-radius: 22px; }
  .subbrand__media::after { background: linear-gradient(180deg, transparent 56%, rgba(13,14,13,.9) 100%); }
  .subbrand__content, .subbrand--wide .subbrand__content { padding: 25px 24px 22px; }
  .subbrand h3 { margin-top: 15px; font-size: 2.1rem; }
  .subbrand p { margin-top: 14px; }
  .subbrand__link { padding-top: 18px; }
  .cert-carousel { grid-auto-columns: 86vw; }
  .cert-project { min-height: 370px; }
  .cert-stack-instruction { display: none; }
  .cert-stack-controls { justify-content: space-between; }
  .cert-stack-deck { width: min(82vw, 420px); }
  .cert-stack-stage { min-height: min(125vw, 590px); }
  .cert-stack-card { padding: 13px; border-radius: 22px; }
  .cert-stack-card__preview { border-radius: 14px; }
  .cert-stack-card__meta { min-height: 88px; padding-top: 14px; }
  .cert-stack-stage__hint { bottom: -6px; }
  .newsletter { padding: 28px 22px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { justify-content: center; }
  #cookie-consent { left: 10px; right: 10px; bottom: 10px; padding: 15px; }
  #cookie-consent p { flex-basis: 100%; font-size: 13px; }
  #cookie-consent .cc-actions { width: 100%; }
  #cookie-consent button { flex: 1; }
  .to-top { right: 16px; bottom: 16px; }
  body[data-page="quality"] .doc-grid { grid-auto-columns: 86vw; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-band__track { animation: none; }
  .site-intro { display: none; }
}
