/* ==========================================================================
   Integral Business Mobile — Home Demo
   Design system: navy authority + blue (buy) / green (sell) duality
   ========================================================================== */

:root{
  /* Brand colors (per client brief) */
  --navy:            #0B1220;
  --navy-soft:        #141d31;
  --blue:            #2563EB;
  --blue-dark:       #1D4ED8;
  --blue-tint:       #EFF6FF;
  --green:           #16A34A;
  --green-dark:      #15803D;
  --green-tint:      #ECFDF5;
  --bg:              #F8FAFC;
  --bg-alt:          #F1F5F9;
  --ink:             #111827;
  --ink-soft:        #6B7280;
  --line:            #E5E7EB;
  --white:           #FFFFFF;

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale (desktop / clamps down for mobile) */
  --h1: clamp(2.25rem, 1.4rem + 3.2vw, 3.25rem);
  --h2: clamp(1.75rem, 1.3rem + 1.8vw, 2.375rem);
  --h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 1px 2px rgba(16,24,40,0.04), 0 8px 24px -8px rgba(16,24,40,0.10);
  --shadow-card-hover: 0 4px 10px rgba(16,24,40,0.06), 0 20px 40px -12px rgba(16,24,40,0.18);

  --ease: cubic-bezier(.16,.8,.24,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
section{ position:relative; }

.container{
  width:100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.eyebrow.is-green{ color: var(--green); }
.eyebrow::before{
  content:"";
  width:16px; height:1px;
  background: currentColor;
  display:inline-block;
}

h1,h2,h3{ font-weight:700; line-height:1.12; margin:0; letter-spacing:-0.02em; }
h1{ font-size: var(--h1); }
h2{ font-size: var(--h2); }
h3{ font-size: var(--h3); font-weight:600; letter-spacing:-0.01em; }
p{ margin:0; line-height:1.65; color: var(--ink-soft); font-size:1rem; }

.section-head{
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head.centered{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ margin-top:12px; }
.section-head p{ margin-top:14px; font-size:1.0625rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight:600;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg{ width:16px; height:16px; flex-shrink:0; transition: transform .3s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }

.btn.btn-blue{ background: var(--blue); color:#fff; box-shadow: 0 8px 20px -6px rgba(37,99,235,.55); }
.btn.btn-blue:hover{ background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(37,99,235,.6); }

.btn.btn-green{ background: var(--green); color:#fff; box-shadow: 0 8px 20px -6px rgba(22,163,74,.5); }
.btn.btn-green:hover{ background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(22,163,74,.55); }

.btn.btn-ghost-light{ background: rgba(255,255,255,.06); color:#fff; border-color: rgba(255,255,255,.28); }
.btn.btn-ghost-light:hover{ background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

.btn.btn-outline{ background:transparent; border-color: var(--line); color: var(--ink); }
.btn.btn-outline:hover{ border-color: var(--navy); transform: translateY(-2px); }

.btn.btn-sm{ padding:10px 18px; font-size:14px; }
.btn.btn-block{ width:100%; }

/* ==========================================================================
   Header
   ========================================================================== */
body.admin-bar .site-header{ top: 32px; }
@media (max-width: 782px){
  body.admin-bar .site-header{ top: 46px; }
}

.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(248,250,252,.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled{
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(16,24,40,.35);
}
.site-header .container{
  height: 84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height: 44px; width:auto; }

.main-nav{ display:flex; align-items:center; gap: 2px; flex-shrink:0; }
.main-nav > a{
  padding: 9px 12px;
  font-size: 14px;
  font-weight:500;
  color: var(--ink);
  border-radius: 999px;
  white-space:nowrap;
  transition: background .2s ease, color .2s ease;
  position:relative;
}
.main-nav > a:hover{ background: var(--bg-alt); }

/* Grouped dropdowns — bundle secondary destinations to declutter the bar */
.nav-dropdown{ position:relative; }
.nav-dropdown-trigger{
  display:flex;
  align-items:center;
  gap:5px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight:500;
  color: var(--ink);
  background:none;
  border:none;
  border-radius: 999px;
  white-space:nowrap;
  cursor:pointer;
  transition: background .2s ease;
}
.nav-dropdown-trigger .chev{ width:12px; height:12px; color: var(--ink-soft); transition: transform .25s var(--ease); }
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger{ background: var(--bg-alt); }
.nav-dropdown:hover .chev,
.nav-dropdown:focus-within .chev{ transform: rotate(180deg); }

/* Buy/Sell — the two core pillars get their own tint so they read
   instantly against the neutral text links either side of them. */
.nav-dropdown-trigger.pill-blue{ background: var(--blue-tint); color: var(--blue-dark); font-weight:600; }
.nav-dropdown-trigger.pill-blue .chev{ color: var(--blue); }
.nav-dropdown:hover .nav-dropdown-trigger.pill-blue,
.nav-dropdown:focus-within .nav-dropdown-trigger.pill-blue{ background: var(--blue); color:#fff; }
.nav-dropdown:hover .nav-dropdown-trigger.pill-blue .chev,
.nav-dropdown:focus-within .nav-dropdown-trigger.pill-blue .chev{ color:#fff; }

.nav-dropdown-trigger.pill-green{ background: var(--green-tint); color: var(--green-dark); font-weight:600; }
.nav-dropdown-trigger.pill-green .chev{ color: var(--green); }
.nav-dropdown:hover .nav-dropdown-trigger.pill-green,
.nav-dropdown:focus-within .nav-dropdown-trigger.pill-green{ background: var(--green); color:#fff; }
.nav-dropdown:hover .nav-dropdown-trigger.pill-green .chev,
.nav-dropdown:focus-within .nav-dropdown-trigger.pill-green .chev{ color:#fff; }

.nav-dropdown-menu{
  position:absolute;
  top: calc(100% + 10px);
  left:50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 190px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card-hover);
  padding: 8px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index:60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1; visibility:visible; pointer-events:auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a{
  display:block;
  padding: 10px 14px;
  border-radius:8px;
  font-size:14px;
  font-weight:500;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-menu a:hover{ background: var(--blue-tint); color: var(--blue-dark); }
.nav-dropdown-menu.menu-green a:hover{ background: var(--green-tint); color: var(--green-dark); }

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

.lang-switch{
  display:flex;
  align-items:center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.03em;
  border:1px solid var(--line);
  border-radius: 999px;
  overflow:hidden;
}
.lang-switch span,
.lang-switch a{
  padding: 7px 11px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.lang-switch span.active,
.lang-switch a.active{ background: var(--navy); color:#fff; }
.lang-switch span.disabled{ opacity:.55; cursor:not-allowed; }
.lang-switch a:hover:not(.active){ background: var(--bg-alt); }

.header-actions .btn{ padding: 10px 16px; font-size:13.5px; white-space:nowrap; }

.nav-toggle{
  display:none;
  width:42px; height:42px;
  align-items:center; justify-content:center;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:"";
  display:block;
  width:18px; height:2px;
  background: var(--navy);
  border-radius: 2px;
}
.nav-toggle{ flex-direction:column; gap:4px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  background-image:
    radial-gradient(900px 520px at 50% -15%, rgba(37,99,235,.30), transparent 62%),
    radial-gradient(700px 420px at 92% 105%, rgba(22,163,74,.18), transparent 60%),
    linear-gradient(180deg, rgba(8,13,24,.93) 0%, rgba(8,13,24,.8) 45%, rgba(8,13,24,.95) 100%),
    url('../img/warehouse-aisle-real.jpg');
  background-repeat: no-repeat;
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center 25%;
  color:#fff;
  padding: 128px 0 108px;
  overflow:hidden;
}
.hero .container{ position:relative; }
.hero-copy{ max-width: 740px; margin: 0 auto; text-align:center; }
.hero-copy .eyebrow{ color: #93c5fd; justify-content:center; }
.hero-copy .eyebrow::before{ background:#93c5fd; }
.hero-copy h1{ margin-top:18px; color:#fff; }
.hero-copy p.lead{
  margin:20px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 1.125rem;
  max-width: 560px;
  line-height:1.7;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; justify-content:center; }

/* ==========================================================================
   Dual entry — Buy / Sell
   ========================================================================== */
.dual-entry{
  padding: 0 0 96px;
  margin-top: -64px;
  position:relative;
  z-index: 5;
}
.dual-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.entry-card{
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position:relative;
  overflow:hidden;
}
.entry-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.entry-photo{ height: 200px; overflow:hidden; }
.entry-photo img{
  width:100%; height:100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.entry-card:hover .entry-photo img{ transform: scale(1.05); }

.entry-body{ padding: 32px 36px 40px; position:relative; }

.entry-icon{
  width:56px; height:56px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  margin-top:-68px;
  margin-bottom:20px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px -6px rgba(16,24,40,.18);
}
.entry-card.buy .entry-icon{ background: #fff; color: var(--blue); }
.entry-card.sell .entry-icon{ background: #fff; color: var(--green); }
.entry-icon svg{ width:28px; height:28px; }

.entry-card h3{ font-size: 1.5rem; }
.entry-card p{ margin-top:12px; font-size:1.0625rem; max-width: 460px; }
.entry-card .btn{ margin-top:26px; }

/* ==========================================================================
   Trust bar (marquee)
   ========================================================================== */
.trust-bar{
  background: var(--navy);
  padding: 22px 0;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.marquee{
  display:flex;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}
.marquee-track{ display:flex; gap:0; }
.trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 0 36px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing:.03em;
  color: rgba(255,255,255,.75);
  white-space:nowrap;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-item svg{ width:15px; height:15px; color: var(--green); flex-shrink:0; }

@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   Generic section paddings
   ========================================================================== */
.section{ padding: 112px 0; }
.section.alt{ background: var(--bg-alt); }
.section.tight{ padding: 96px 0; }

/* ---------- Categories ---------- */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s var(--ease);
}
.cat-card:hover{ transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow-card-hover); }
.cat-icon{
  width:46px; height:46px;
  border-radius:12px;
  background: var(--blue-tint);
  color: var(--blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.cat-icon svg{ width:24px; height:24px; }
.cat-card h3{ font-size:1.0625rem; }
.cat-card span{
  display:block;
  margin-top:6px;
  font-size:13.5px;
  color: var(--ink-soft);
}

/* ---------- Photo band ---------- */
.photo-band{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}
.photo-band figure{
  position:relative;
  margin:0;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow:hidden;
}
.photo-band img{
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .6s var(--ease);
}
.photo-band figure:hover img{ transform: scale(1.04); }
.photo-band figure::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,18,32,.75) 100%);
}
.photo-band figcaption{
  position:absolute; left:24px; bottom:20px; z-index:1;
  color:#fff;
  font-family: var(--font-mono);
  font-size:13px;
  letter-spacing:.03em;
}

/* ---------- Stock types ---------- */
.stock-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.stock-chip{
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background:#fff;
  padding: 20px 16px;
  text-align:center;
  transition: border-color .3s ease, transform .3s var(--ease);
}
.stock-chip:hover{ border-color: var(--green); border-style:solid; transform: translateY(-3px); }
.stock-chip .tag{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing:.08em;
  color: var(--green-dark);
  background: var(--green-tint);
  padding: 3px 9px;
  border-radius:999px;
  display:inline-block;
  margin-bottom:12px;
}
.stock-chip strong{ display:block; font-size:14.5px; font-weight:600; color: var(--ink); }

/* ---------- Who we work with ---------- */
.who-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.who-card{
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
}
.who-card.buyers{ background: var(--blue-tint); }
.who-card.sellers{ background: var(--green-tint); }
.who-card .eyebrow{ margin-bottom:6px; }
.who-card h3{ font-size:1.375rem; margin-bottom:22px; }
.who-list{ display:flex; flex-direction:column; gap:14px; }
.who-list li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  font-weight:500;
  color: var(--ink);
}
.who-list li svg{ width:18px; height:18px; flex-shrink:0; }
.who-card.buyers li svg{ color: var(--blue); }
.who-card.sellers li svg{ color: var(--green); }

/* ---------- Process ---------- */
.process-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.process-col h3{
  display:flex; align-items:center; gap:10px;
  font-size:1.1875rem;
  margin-bottom:30px;
  padding-bottom:16px;
  border-bottom: 1px solid var(--line);
}
.process-col.buying h3{ color: var(--blue-dark); }
.process-col.selling h3{ color: var(--green-dark); }
.process-col h3 svg{ width:20px; height:20px; }

.step{
  display:flex;
  gap:18px;
  position:relative;
  padding-bottom: 30px;
}
.step:last-child{ padding-bottom:0; }
.step::before{
  content:"";
  position:absolute;
  left:17px; top:38px; bottom:0;
  width:1px;
  background: var(--line);
}
.step:last-child::before{ display:none; }
.step-num{
  width:36px; height:36px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono);
  font-size:13px;
  font-weight:600;
  flex-shrink:0;
  z-index:1;
}
.process-col.buying .step-num{ background: var(--blue); color:#fff; }
.process-col.selling .step-num{ background: var(--green); color:#fff; }
.step-body{ padding-top:6px; }
.step-body strong{ display:block; font-size:15.5px; color: var(--ink); font-weight:600; margin-bottom:3px; }
.step-body span{ font-size:14px; color: var(--ink-soft); }

/* ---------- Europe / Spain-based ---------- */
.europe-section{ background: var(--navy); color:#fff; }
.europe-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items:center;
}
.europe-section .eyebrow{ color:#93c5fd; }
.europe-section .eyebrow::before{ background:#93c5fd; }
.europe-section h2{ color:#fff; margin-top:14px; }
.europe-section p{ color: rgba(255,255,255,.68); margin-top:18px; font-size:1.0625rem; max-width:520px; }
.europe-stats{ display:flex; gap:36px; margin-top:38px; flex-wrap:wrap; }
.europe-stats div strong{
  display:block;
  font-family: var(--font-mono);
  font-size:1.5rem;
  color:#fff;
}
.europe-stats div span{ font-size:13px; color: rgba(255,255,255,.55); }
.europe-map{ position:relative; }
.europe-map svg{ width:100%; height:auto; }

/* ---------- Final CTA ---------- */
.final-cta{
  background:
    radial-gradient(700px 380px at 15% 20%, rgba(37,99,235,.4), transparent 60%),
    radial-gradient(700px 380px at 85% 85%, rgba(22,163,74,.35), transparent 60%),
    var(--navy);
  color:#fff;
  text-align:center;
  padding: 108px 0;
}
.final-cta h2{ color:#fff; max-width:720px; margin:0 auto; }
.final-cta p{ color: rgba(255,255,255,.68); max-width:560px; margin: 18px auto 0; font-size:1.0625rem; }
.final-cta .hero-actions{ justify-content:center; margin-top:36px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: #fff; color: var(--ink-soft); padding: 80px 0 0; border-top: 1px solid var(--line); }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img{ height:30px; margin-bottom:18px; }
.footer-brand p{ color: var(--ink-soft); font-size:14px; max-width:280px; }
.footer-legal{ margin-top:20px; font-size:13px; line-height:1.8; color: var(--ink-soft); font-family: var(--font-mono); }
.footer-col h4{
  font-size:12.5px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color: var(--blue-dark);
  margin-bottom:20px;
  font-weight:600;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; color: var(--ink-soft); transition: color .2s ease; }
.footer-col a:hover{ color: var(--blue); }
.footer-contact div{ font-size:14.5px; margin-bottom:12px; color: var(--ink-soft); }
.footer-contact strong{ color: var(--blue-dark); display:block; font-size:12.5px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:4px; font-weight:600;}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 26px 0;
  font-size:13px;
  color: var(--ink-soft);
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom a{ color: inherit; text-decoration:none; }
.footer-bottom a:hover{ color: var(--blue); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Progressive enhancement: content is visible by default so it never
   depends on JS running. JS opts elements into the reveal animation
   by adding .reveal-ready to <body> before observing them. */
body.reveal-ready [data-reveal]{
  opacity:0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
body.reveal-ready [data-reveal].is-visible{ opacity:1; transform:none; }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Switch to the mobile menu well before the full nav could ever get
   tight — avoids any in-between state where items wrap or overflow. */
@media (max-width: 1240px){
  .main-nav{ display:none; }
  .lang-switch{ display:none; }
  .nav-toggle{ display:flex; }
}

@media (max-width: 1080px){
  .cat-grid{ grid-template-columns: repeat(3, 1fr); }
  .stock-grid{ grid-template-columns: repeat(3, 1fr); }
  .europe-grid{ grid-template-columns: 1fr; }
  .europe-map{ order:-1; max-width:420px; margin:0 auto; }
  .footer-grid{ grid-template-columns: 1fr 1fr; row-gap:40px; }
}

@media (max-width: 860px){
  .photo-band{ grid-template-columns: 1fr; }
  .dual-grid{ grid-template-columns: 1fr; }
  .who-grid{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr; gap:56px; }
  .section{ padding: 80px 0; }
  .dual-entry{ margin-top:-40px; padding-bottom:64px; }
}

@media (max-width: 640px){
  .site-header .container{ height:76px; }
  .brand img{ height:36px; }
  .hero{ padding-top:64px; }
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
  .stock-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; gap:36px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .site-header .header-actions .btn{ display:none; }
  .europe-stats{ gap:24px; }
  .entry-body{ padding:32px 24px 36px; }
}

/* Mobile nav drawer */
.mobile-nav{
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  display:flex;
  flex-direction:column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:40px; }
.mobile-nav-top img{ height:34px; filter: brightness(0) invert(1); }
.mobile-nav-close{ width:40px; height:40px; border-radius:10px; border:1px solid rgba(255,255,255,.2); background:transparent; color:#fff; display:flex; align-items:center; justify-content:center; }
.mobile-nav nav{ display:flex; flex-direction:column; overflow-y:auto; }
.mobile-nav nav > a{ color:#fff; font-size: 1.375rem; font-weight:600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }

.mnav-group{ border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 12px; }
.mnav-group > a{ display:block; font-size: 1.375rem; font-weight:600; padding: 14px 0 8px; }
.mnav-group > a.mnav-blue{ color: #93c5fd; }
.mnav-group > a.mnav-green{ color: #86efac; }
.mnav-sub{ display:flex; flex-direction:column; padding-left: 6px; }
.mnav-sub a{ color: rgba(255,255,255,.6); font-size: 1rem; font-weight:500; padding: 9px 0; }

.mobile-nav .header-actions{ flex-direction:column; margin-top:28px; }
.mobile-nav .btn{ width:100%; }

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner{
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 300;
  max-width: 960px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -12px rgba(11,18,32,.45);
  animation: cookie-in .4s var(--ease);
}
.cookie-banner[hidden]{ display:none; }
@keyframes cookie-in{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform:none; }
}
.cookie-banner-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  padding: 20px 26px;
}
.cookie-banner-inner p{
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height:1.6;
  margin:0;
}
.cookie-banner-inner a{ color:#93c5fd; text-decoration:underline; }
.cookie-banner-actions{ display:flex; gap:10px; flex-shrink:0; }
.cookie-banner .btn-outline{ border-color: rgba(255,255,255,.3); color:#fff; }
.cookie-banner .btn-outline:hover{ border-color:#fff; background: rgba(255,255,255,.08); }

@media (max-width: 640px){
  .cookie-banner-inner{ flex-direction:column; align-items:stretch; text-align:left; }
  .cookie-banner-actions{ justify-content:flex-end; }
}
