/* ==========================================================================
   Batho Bothle Trading and Projects 33 CC
   Brand palette derived from the company logo (orange + steel blue).
   All colours, spacing and typography tokens live here. Do not hard-code
   colour values inside components.
   ========================================================================== */

:root {
  --brand-orange: #c8781e;
  --brand-orange-dark: #a55f12;
  --brand-orange-soft: #f6e6d2;
  --brand-gold: #d9a520;
  --brand-gold-dark: #b8860b;
  --brand-gold-soft: #f2d98a;
  --brand-blue: #4b7fbf;
  --brand-blue-dark: #2f5c93;
  --ink: #16222f;
  --ink-soft: #3d4e5f;
  --muted: #6b7b8c;
  --line: #dfe5ec;
  --surface: #ffffff;
  --surface-alt: #f4f6f9;
  --surface-dark: #12202e;
  --white: #ffffff;

  --font-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;

  --container: 1240px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(18, 32, 46, 0.08);
  --shadow: 0 12px 30px rgba(18, 32, 46, 0.12);
  --shadow-lg: 0 22px 60px rgba(18, 32, 46, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --topbar-h: 42px;
  --nav-h: 86px;
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--surface);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1.1em; }

a { color: var(--brand-blue-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brand-orange); }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0 0 1.1em; padding-left: 1.15rem; }
li { margin-bottom: .4rem; }

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

.section { padding: 92px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { background: var(--surface-dark); color: #c9d6e2; }
.section-dark h2, .section-dark h3 { color: var(--white); }

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 720px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: clamp(.95rem, .9rem + .2vw, 1.05rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
  min-height: 50px;
  max-width: 100%;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; transition: transform .25s var(--ease); }
.btn:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 3px; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--brand-orange); color: var(--white); }
.btn-primary:hover { background: var(--brand-orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-secondary { background: var(--brand-blue); color: var(--white); }
.btn-secondary:hover { background: var(--brand-blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.btn-ghost:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--brand-orange); color: var(--brand-orange); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--brand-orange); z-index: 1200; transition: width .1s linear;
}

/* ---------- Top information bar ---------- */
.topbar {
  background: var(--surface-dark);
  color: #b9c8d6;
  font-size: .92rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { color: #d8e3ed; display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: var(--brand-orange); }
.topbar svg { width: 16px; height: 16px; flex: none; }
.topbar-right a { width: 32px; height: 32px; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); transition: background .25s var(--ease), transform .25s var(--ease); }
.topbar-right a:hover { background: var(--brand-orange); transform: translateY(-2px) scale(1.06); color: var(--white); }
.topbar-label { display: inline; }

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: #fff; }

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--nav-h);
}

.logo, .nav-brand img, .footer-brand img, .site-logo {
  border-radius: 16px;
  background: #fff;
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.site-header.scrolled .logo { border-radius: 12px; }
.nav-brand { display: inline-flex; align-items: center; }
.nav-brand img { width: 210px; }

.main-nav { justify-self: center; }
.main-nav ul {
  display: flex; align-items: center; gap: clamp(14px, 2.1vw, 34px);
  list-style: none; margin: 0; padding: 0;
}
.main-nav li { margin: 0; }
.main-nav a {
  position: relative;
  font-family: var(--font-head);
  font-size: 1.08rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 2px;
  display: inline-block;
  white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--brand-orange); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--brand-orange); }

.has-drop { position: relative; }
.has-drop > a svg { width: 14px; height: 14px; margin-left: 4px; transition: transform .3s var(--ease); vertical-align: -2px; }
.has-drop:hover > a svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 10px);
  min-width: 290px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 10px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 8px; font-size: .96rem;
  text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 600;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--brand-orange-soft); color: var(--brand-orange-dark); }

.nav-cta { justify-self: end; display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile navigation ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--surface-dark);
  padding: 22px 22px 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .38s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-nav-head img { width: 180px; border-radius: 14px; background: #fff; padding: 6px 10px; }
.mobile-close {
  width: 46px; height: 46px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav a {
  display: block; padding: 15px 4px; color: #e6eef6;
  font-family: var(--font-head); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .05em;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--brand-orange); }
.mobile-sub { padding-left: 14px !important; }
.mobile-sub a { font-size: 1rem; text-transform: none; font-family: var(--font-body); color: #aebecd; padding: 10px 4px; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 22px; }
@media (max-width: 380px) { .btn { padding: 11px 16px; font-size: .86rem; } }

/* ---------- Hero slider ---------- */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h) - var(--topbar-h));
  background: var(--surface-dark); overflow: hidden; display: flex; align-items: center;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform 8s linear;
}
.hero-slide.active img { transform: scale(1.16); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,20,30,.72) 0%, rgba(10,20,30,.45) 55%, rgba(200,120,30,.32) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0; width: 100%; }
.hero-copy { max-width: 860px; }
.hero h1 {
  color: var(--white);
  text-shadow: 0 3px 22px rgba(0,0,0,.55);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  margin-bottom: .25em;
}
.hero h2 {
  color: #f3e6d5; font-family: var(--font-body); font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.5rem); line-height: 1.5; max-width: 760px;
  text-shadow: 0 2px 14px rgba(0,0,0,.5); margin-bottom: 1.5em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 34px; margin-top: 46px;
  color: #e5eef6; font-family: var(--font-head); letter-spacing: .06em; text-transform: uppercase;
}
.hero-trust strong { display: block; font-size: 2rem; color: var(--brand-orange); }
.hero-dots { position: absolute; bottom: 30px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hero-dots button {
  width: 34px; height: 4px; border: 0; border-radius: 3px; background: rgba(255,255,255,.4);
  cursor: pointer; transition: background .3s var(--ease), width .3s var(--ease);
}
.hero-dots button.active { background: var(--brand-orange); width: 54px; }

/* ---------- Internal page banner ---------- */
.page-banner {
  position: relative; min-height: 420px; display: flex; align-items: center;
  background: var(--surface-dark); overflow: hidden;
}
.page-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,22,32,.7), rgba(12,22,32,.42) 60%, rgba(75,127,191,.35));
}
.page-banner .container { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.page-banner h1 { color: var(--white); text-shadow: 0 3px 20px rgba(0,0,0,.55); margin-bottom: .2em; }
.page-banner p { color: #e7eef5; max-width: 640px; text-shadow: 0 2px 12px rgba(0,0,0,.5); font-size: 1.1rem; }
.breadcrumb { color: #c8d6e3; font-size: .92rem; margin-top: 14px; }
.breadcrumb a { color: #f0d3af; }
.breadcrumb span { opacity: .7; padding: 0 6px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand-orange); }
.card-media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .4em; }
.card-body p { color: var(--muted); font-size: .98rem; }
.card-link {
  margin-top: auto; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .05em; color: var(--brand-orange-dark); display: inline-flex; gap: .4rem; align-items: center;
}
.card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card-link:hover svg { transform: translateX(5px); }

.tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-alt); }
.tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.08); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px;
  background: linear-gradient(transparent, rgba(10,20,30,.85));
  color: #fff; font-family: var(--font-head); letter-spacing: .04em; font-size: 1.05rem;
  transform: translateY(6px); opacity: .9; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.tile:hover figcaption { transform: translateY(0); opacity: 1; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 46px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.6rem; color: var(--brand-orange); line-height: 1; }
.stat span { font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; }

.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .7rem; }
.check-list svg { width: 20px; height: 20px; flex: none; color: var(--brand-orange); margin-top: 4px; }

.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.pill-grid li {
  margin: 0; background: var(--surface-alt); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px; font-size: .93rem;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.pill-grid li:hover { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; }

.quote {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius); padding: 28px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote p { font-size: 1.03rem; color: var(--ink-soft); }
.quote cite { font-style: normal; font-family: var(--font-head); font-size: 1.1rem; color: var(--ink); letter-spacing: .03em; }
.quote small { display: block; color: var(--muted); }

/* ---------- Accordion ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.accordion + .accordion { margin-top: 14px; }
.accordion button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 24px; font-family: var(--font-head); font-size: 1.2rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.accordion button svg { width: 20px; height: 20px; flex: none; transition: transform .3s var(--ease); color: var(--brand-orange); }
.accordion.open button svg { transform: rotate(180deg); }
.accordion .panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.accordion .panel-inner { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 600; color: var(--ink); font-size: .95rem; }
input, select, textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(200,120,30,.16);
}
textarea { min-height: 150px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .9rem; color: var(--muted); }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: 10px; display: none; }
.form-status.show { display: block; animation: fadeUp .4s var(--ease); }
.form-status.ok { background: #e8f5ec; color: #1f6b3b; border: 1px solid #bfe3cb; }
.form-status.err { background: #fdeceb; color: #9b2c23; border: 1px solid #f3c6c2; }
.btn.loading { opacity: .75; pointer-events: none; }
.btn .spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 50%; display: none; animation: spin .7s linear infinite;
}
.btn.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; background: var(--brand-blue-dark); color: #fff; overflow: hidden;
  padding: 76px 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(circle at 15% 30%, rgba(200,120,30,.5), transparent 55%);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate3d(6%, 4%, 0) scale(1.08); } }
.cta-band .container { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; margin-bottom: .2em; }
.cta-band p { color: #dbe7f3; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-dark); color: #a9bbcb; padding: 78px 0 0; }
.site-footer h3 { color: #fff; font-size: 1.25rem; margin-bottom: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { width: 220px; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer a { color: #b9c9d8; }
.site-footer a:hover { color: var(--brand-orange); padding-left: 3px; }
.site-footer li a { transition: color .25s var(--ease), padding-left .25s var(--ease); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand-orange); flex: none; margin-top: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover { background: var(--brand-orange); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 56px; border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .9rem;
}

/* ---------- Floating actions ---------- */
.whatsapp-float, .to-top {
  position: fixed; right: 20px; z-index: 950; width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
  transition: transform .25s var(--ease), opacity .3s var(--ease);
  border: 0; cursor: pointer;
}
.whatsapp-float { bottom: 24px; background: #25a366; color: #fff; }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 28px; height: 28px; }
.to-top { bottom: 90px; background: var(--brand-orange); color: #fff; opacity: 0; pointer-events: none; }
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1000;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px 24px;
  display: none; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; animation: fadeUp .5s var(--ease); }
.cookie-banner p { margin: 0; font-size: .95rem; max-width: 760px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
body { animation: pageIn .45s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Article ---------- */
.article { max-width: 800px; margin: 0 auto; }
.article img { border-radius: var(--radius-lg); margin: 26px 0; }
.article h2 { margin-top: 1.6em; }
.meta { color: var(--muted); font-size: .93rem; margin-bottom: 1.6rem; }
.legal h2 { margin-top: 1.8em; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
th { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .03em; color: var(--ink); }

.map-frame { border: 0; width: 100%; height: 420px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}
@media (max-width: 860px) {
  :root { --nav-h: 74px; }
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .topbar { font-size: .85rem; }
  .topbar-label { display: none; }
  .topbar .container { justify-content: center; gap: 12px; }
  .nav-brand img { width: 165px; border-radius: 12px; }
  .hero { min-height: 88vh; }
  .hero-inner { padding: 90px 0; }
  .hero-trust { gap: 22px; }
  .hero-trust strong { font-size: 1.5rem; }
  .page-banner { min-height: 340px; }
  .split { gap: 30px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .btn { width: auto; max-width: 100%; padding: 12px 20px; font-size: .92rem; letter-spacing: .03em; }
  .btn svg { width: 18px; height: 18px; }
  .hero-actions { width: 100%; }
  .nav-brand img { width: 145px; border-radius: 10px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
}

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


/* Brand boards - logos of the ranges we supply */
.brand-board {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}
.brand-board figure {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.brand-board figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}
.brand-board img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  display: block;
}
.brand-board figcaption {
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 560px) { .brand-board img { height: 88px; } }


/* ---------- Organisations we have supplied (gold theme) ---------- */
.org-grid { display: flex; flex-wrap: wrap; gap: 14px; padding: 0; margin: 0; list-style: none; }
.org-grid.center-grid { justify-content: center; }
.org-grid li {
  margin: 0;
  background: var(--brand-gold);
  border: 1px solid var(--brand-gold-dark);
  color: #000;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.25;
  border-radius: 10px;
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.org-grid li:hover { background: var(--brand-gold-soft); color: #000; transform: translateY(-2px); box-shadow: var(--shadow); }
.org-grid li img { max-height: 42px; width: auto; display: block; }
@media (max-width: 520px) {
  .org-grid { gap: 10px; }
  .org-grid li { font-size: .98rem; padding: 10px 15px; }
}
