/* AGLog Cargo — Global Logistics — Main Stylesheet */
/* Palette: Deep Espresso · Rich Gold · Warm Cream · White */

:root {
  --gold:        #C9A227;   /* primary warm gold */
  --gold-light:  #E8C060;   /* highlight / gradient */
  --gold-dark:   #A07B10;   /* hover / pressed */
  --gold-pale:   #FDF3DC;   /* very pale gold tint */
  --brown-dark:  #1A0D02;   /* deep espresso — navbar, footer, dark sections */
  --brown-mid:   #3D2408;   /* mid espresso */
  --brown:       #6B4811;   /* golden brown accent */
  --cream:       #FFF8ED;   /* warm off-white section bg */
  --white:       #FFFFFF;
  --text:        #1A0D02;   /* near-black warm body text */
  --text-muted:  #7A5C2E;   /* muted warm text */
  --gray-100:    #F5EFE6;
  --gray-200:    #E8DDD0;   /* warm borders */
  --gray-400:    #A89070;
  --gray-600:    #5C4025;
  --gray-800:    #2D1A08;
  /* legacy aliases kept so inner-page inline styles still resolve */
  --navy:        #1A0D02;
  --navy-mid:    #3D2408;
  --navy-light:  #5A3610;
  --off-white:   #FFF8ED;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --radius:    8px;
  --shadow-sm: 0 1px 3px rgba(26,13,2,.08);
  --shadow-md: 0 4px 16px rgba(26,13,2,.14);
  --shadow-lg: 0 12px 40px rgba(26,13,2,.20);
  --transition: all .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--gray-600); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--gray-600); line-height: 1.75; }

/* ── Layout ── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg   { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container-sm   { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 80px 0; }
.section-sm     { padding: 48px 0; }
.section-lg     { padding: 120px 0; }
.section--dark  { background: var(--brown-dark); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p  { color: var(--gray-400); }
.section--gray    { background: var(--cream); }
.section--navy-mid{ background: var(--brown-mid); }

.grid-2   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }

.flex           { display: flex; }
.flex-col       { flex-direction: column; }
.items-center   { align-items: center; }
.justify-between{ justify-content: space-between; }
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-gray   { color: var(--gray-400) !important; }
.mt-2  { margin-top: 8px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-2  { margin-bottom: 8px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--brown-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,162,39,.35);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-navy {
  background: transparent; color: var(--brown-dark);
  border-color: var(--brown-dark);
}
.btn-outline-navy:hover { background: var(--brown-dark); color: var(--white); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--brown-dark); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 13, 2, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,.2);
  transition: var(--transition);
  --logo-blue: #7BA3D4;
  --logo-bg: #1A0D02;
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.navbar__logo {
  display: flex; align-items: center; line-height: 1; flex-shrink: 0;
}
.navbar__logo-img {
  height: 46px; width: auto; display: block; object-fit: contain;
}
svg.navbar__logo-img {
  height: 46px; width: auto; overflow: visible;
}
.footer__logo-img {
  height: 52px; width: auto; display: block;
  margin-bottom: 14px; object-fit: contain;
}
svg.footer__logo-img {
  height: 52px; width: auto; display: block;
  margin-bottom: 14px; overflow: visible;
}
.navbar__nav { display: flex; align-items: center; gap: 8px; }
.navbar__nav a {
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; transition: var(--transition);
}
.navbar__nav a:hover { color: var(--gold-light); background: rgba(201,162,39,.1); }
.navbar__nav .dropdown { position: relative; }
.navbar__nav .dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--brown-mid); border: 1px solid rgba(201,162,39,.15);
  border-radius: var(--radius); padding: 8px; min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.navbar__nav .dropdown:hover .dropdown-menu { display: block; }
.navbar__nav .dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 6px;
  color: rgba(255,255,255,.8); font-size: .875rem;
}
.navbar__nav .dropdown-menu a:hover { background: rgba(201,162,39,.12); color: var(--gold-light); }
.navbar__cta { display: flex; align-items: center; gap: 12px; }
.navbar__menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── Hero — animated terminal background ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--brown-dark);
}
/* Ken Burns animated background photo */
.hero__bg {
  position: absolute;
  inset: -6%;
  background-image: url('/images/hero-terminal.jpg');
  background-size: cover;
  background-position: center 35%;
  animation: hero-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-drift {
  from { transform: scale(1)    translate(0,    0);    }
  to   { transform: scale(1.08) translate(-2%, -1.5%); }
}
/* Dark gradient overlay — left heavy so text stays readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 13, 2, 0.90) 0%,
    rgba(26, 13, 2, 0.75) 50%,
    rgba(107, 72, 17, 0.38) 100%
  );
}
/* Gold shimmer line at bottom of hero */
.hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 160px 0 100px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.15); border: 1px solid rgba(201,162,39,.4);
  color: var(--gold-light); padding: 7px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold-light); }
.hero .lead { color: rgba(255,255,255,.78); margin-bottom: 36px; font-size: 1.2rem; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.hero__trust-item { text-align: center; }
.hero__trust-item strong {
  display: block; font-size: 1.5rem; font-weight: 800;
  color: var(--gold-light); font-family: var(--font-head);
}
.hero__trust-item span { font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--gray-200);
  padding: 32px; transition: var(--transition);
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(201,162,39,.18);
  transform: translateY(-2px);
}
.card--dark {
  background: var(--brown-mid); border-color: rgba(255,255,255,.06);
}
.card--dark h3, .card--dark h4 { color: var(--white); }
.card--dark p { color: var(--gray-400); }
.card--dark:hover { border-color: var(--gold); }

.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(201,162,39,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.card--dark .service-icon { background: rgba(201,162,39,.1); }

/* ── HK Advantage Strip ── */
.hk-strip {
  background: linear-gradient(90deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  padding: 48px 0;
  border-top: 1px solid rgba(201,162,39,.15);
  border-bottom: 1px solid rgba(201,162,39,.15);
}
.hk-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.hk-strip__stat strong {
  display: block; font-size: 2rem; font-weight: 800;
  color: var(--gold-light); font-family: var(--font-head);
}
.hk-strip__stat span { color: rgba(255,255,255,.6); font-size: .875rem; }

/* ── How It Works ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step  { text-align: center; padding: 24px 16px; }
.step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--brown-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(201,162,39,.35);
}
.step h4 { margin-bottom: 8px; }

/* ── Trade Lanes ── */
.lanes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lane-card {
  background: var(--brown-mid); border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
  padding: 24px; transition: var(--transition);
  display: flex; justify-content: space-between; align-items: center;
}
.lane-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.lane-card__route { color: var(--white); font-weight: 600; font-size: .95rem; }
.lane-card__arrow { color: var(--gold); font-size: 1.25rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #E8A800 50%, var(--gold-dark) 100%);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A0D02' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 { color: var(--brown-dark); position: relative; }
.cta-banner p  { color: rgba(26,13,2,.7); font-size: 1.1rem; margin: 16px 0 32px; position: relative; }

/* ── Footer ── */
.footer {
  background: var(--brown-dark);
  padding: 64px 0 32px;
  border-top: 2px solid rgba(201,162,39,.2);
  --logo-blue: #7BA3D4;
  --logo-bg: var(--brown-dark);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand p { color: rgba(255,255,255,.45); font-size: .875rem; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer h5 {
  color: var(--gold-light);
  font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,.45); font-size: .875rem; transition: var(--transition); }
.footer ul li a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { color: rgba(255,255,255,.25); font-size: .8rem; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .95rem; color: var(--text);
  background: var(--white); transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.14);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 60%, #5A3610 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero .lead { color: rgba(255,255,255,.72); max-width: 600px; margin-top: 16px; position: relative; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; position: relative; }
.breadcrumb a, .breadcrumb span { font-size: .8rem; color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  color: var(--text); transition: var(--transition);
}
.faq-question:hover { color: var(--brown); }
.faq-question .icon { font-size: 1.2rem; transition: var(--transition); color: var(--gold); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding-bottom: 20px; }

/* ── Table ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gray-200); font-size: .9rem; }
th { background: var(--brown-dark); color: var(--white); font-weight: 600; }
tr:hover td { background: var(--gold-pale); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4, .hk-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-2-3, .lanes-grid { grid-template-columns: 1fr; }
  .navbar__nav, .navbar__cta .btn:first-child { display: none; }
  .navbar__menu-toggle { display: block; }
  .hero__content { padding: 130px 0 80px; }
  .hero__trust { gap: 20px; }
  .section { padding: 56px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* ── Mobile nav open panel ── */
  .navbar.nav-open .navbar__nav {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; width: 100%;
    background: rgb(30, 15, 3);
    padding: 10px 20px 20px;
    border-top: 1px solid rgba(201,162,39,.2);
    box-shadow: 0 12px 32px rgba(0,0,0,.5);
    gap: 2px; z-index: 999;
  }
  .navbar.nav-open .navbar__nav > a,
  .navbar.nav-open .navbar__nav .dropdown > a {
    padding: 13px 16px; font-size: .95rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .navbar.nav-open .navbar__nav .dropdown:hover .dropdown-menu { display: none; }
  .navbar.nav-open .navbar__nav .dropdown.dropdown-open .dropdown-menu {
    display: flex; flex-direction: column; position: static;
    background: rgba(201,162,39,.08);
    box-shadow: none; border: 1px solid rgba(201,162,39,.15);
    border-radius: 8px; margin: 4px 0 6px 12px;
    min-width: auto; padding: 6px;
  }
  .navbar.nav-open .navbar__nav .dropdown.dropdown-open .dropdown-menu a {
    padding: 10px 14px; font-size: .875rem; border-bottom: none;
  }
  .navbar.nav-open .navbar__cta {
    position: absolute; display: none;
  }
}
@media (max-width: 480px) {
  .grid-4, .hk-strip__grid, .steps { grid-template-columns: 1fr; }
  .btn-lg { padding: 16px 24px; }
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
  z-index: 900;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
  transform: translateY(100%);
  transition: transform .35s ease;
}
.cookie-banner.shown {
  transform: translateY(0);
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease;
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease;
}
.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,.5);
  color: rgba(255,255,255,.8);
}
@media (max-width: 600px) {
  .cookie-banner { padding: 16px 20px; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
