/* ==========================================================================
   PLATINUM ENERGY STORAGE — production stylesheet
   Converted from the original framework build to plain, editable CSS.

   Contents
   01. Fonts
   02. Design tokens
   03. Base / reset
   04. Layout helpers
   05. Buttons
   06. Header & navigation
   07. Hero slider
   08. Page hero & breadcrumbs
   09. Sections & headings
   10. Cards, icon boxes, grids
   11. Media frames & images
   12. Stats band
   13. Product list
   14. Contact page & forms
   15. Legal pages
   16. Footer
   17. Cookie banner & back-to-top
   18. Responsive
   ========================================================================== */


/* 01. Fonts ================================================================
   Self-hosted font files. If the .woff2 files are present in /fonts/ they are
   used; if not, the browser falls back to the system stack in --font-sans.
   No external font service is required for the site to work.             */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/manrope-variable.woff2") format("woff2");
}


/* 02. Design tokens ======================================================== */

:root {
  /* Brand — signature red */
  --brand: #de0a26;
  --brand-dark: #b3081f;
  --brand-tint: rgba(222, 10, 38, 0.1);

  /* Neutrals */
  --white: #ffffff;
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --muted-bg: #f4f6f8;
  --panel-bg: #f7fafc;
  --plain-hero-bg: #eef2f5;

  --border: #e2e8f0;
  --radius: 0.375rem;
  --radius-sm: 0.125rem;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px -10px rgba(15, 23, 42, 0.22);
  --shadow-menu: 0 12px 28px -8px rgba(0, 0, 0, 0.28);

  --container: 72rem;
  --container-wide: 94rem;

  --font-sans: "Manrope", "Segoe UI", ui-sans-serif, system-ui, -apple-system,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}


/* 03. Base / reset ========================================================= */

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

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-900);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; border-style: none; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background-color: var(--brand); color: #fff; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

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

.site-main { position: relative; z-index: 0; }

.icon { width: 1.25rem; height: 1.25rem; flex: none; }
.icon-sm { width: 1rem; height: 1rem; flex: none; }
.icon-xs { width: 0.875rem; height: 0.875rem; flex: none; }
.icon-lg { width: 1.5rem; height: 1.5rem; flex: none; }


/* 04. Layout helpers ======================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-top: 3rem;
}

.split--center { align-items: center; }

.prose {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--slate-700);
}

.prose--narrow { max-width: 48rem; margin-left: auto; margin-right: auto; }

.note {
  margin-top: 2.5rem;
  max-width: 48rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate-600);
}


/* 05. Buttons ============================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.8125rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease,
    border-color 180ms ease, transform 120ms ease;
}

.btn:active { transform: scale(0.98); }

.btn--primary { background-color: var(--brand); color: #fff; }
.btn--primary:hover { background-color: var(--brand-dark); }

.btn--white { background-color: #fff; color: var(--brand); height: 3rem; padding: 0 1.75rem; }
.btn--white:hover { background-color: var(--slate-100); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  height: 3rem;
  padding: 0 1.75rem;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background-color: #fff; color: var(--brand); }

.btn--lg { height: 3rem; padding: 0 1.75rem; }
.btn--block { width: 100%; height: 3rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  transition: color 180ms ease;
}
.link-arrow:hover { color: var(--brand-dark); }
.link-arrow--tight { margin-top: 0.5rem; }


/* 06. Header & navigation ================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo { display: flex; align-items: center; flex: none; padding: 0.75rem 0; }

.site-logo img {
  height: 4rem;
  width: auto;
  max-width: 23rem;
  object-fit: contain;
  padding: 0.25rem 0;
}

.nav-desktop { display: none; align-items: center; }

.nav-list { display: flex; align-items: stretch; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  padding: 1rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-900);
  transition: background-color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active { background-color: var(--slate-100); }

.nav-link .icon-xs { opacity: 0.8; transition: transform 200ms ease; }
.nav-item.is-open > .nav-link .icon-xs { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 200;
  min-width: 14.5rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, visibility 150ms ease;
}

.nav-item.is-open .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 0.25rem 0;
  box-shadow: var(--shadow-menu);
}

.dropdown-list a {
  display: block;
  border-bottom: 1px solid var(--slate-100);
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--slate-800);
  transition: background-color 150ms ease, color 150ms ease;
}

.dropdown-list li:last-child a { border-bottom: 0; }
.dropdown-list a:hover { background-color: var(--brand); color: #fff; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border: 0;
  background: none;
  color: var(--slate-900);
  cursor: pointer;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-open { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

/* Mobile navigation */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--slate-200);
  background-color: #fff;
}

.mobile-nav.is-open { display: block; }

.mobile-nav nav {
  max-height: calc(100dvh - 5rem);
  overflow-y: auto;
  padding: 0.5rem 0.75rem;
}

.mobile-item { border-bottom: 1px solid var(--slate-200); }

.mobile-row { display: flex; align-items: center; }

.mobile-row > a {
  flex: 1;
  padding: 0.875rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-900);
}

.mobile-sub-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border: 0;
  background: none;
  color: var(--slate-900);
  cursor: pointer;
}

.mobile-sub-toggle .icon-sm { transition: transform 200ms ease; }
.mobile-sub-toggle[aria-expanded="true"] .icon-sm { transform: rotate(180deg); }

.mobile-sub {
  display: none;
  flex-direction: column;
  margin: 0 0 0.5rem 0.25rem;
  border-left: 2px solid var(--brand);
  background-color: var(--slate-50);
}

.mobile-sub.is-open { display: flex; }

.mobile-sub a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-800);
  transition: background-color 150ms ease, color 150ms ease;
}

.mobile-sub a:hover { background-color: var(--brand); color: #fff; }


/* 07. Hero slider ========================================================== */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--slate-900);
}

.hero-track {
  position: relative;
  height: min(78vh, 46rem);
  min-height: 30rem;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1100ms ease-out;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide img { height: 100%; width: 100%; object-fit: cover; object-position: center; }

.hero-wash-a,
.hero-wash-b { position: absolute; inset: 0; }

.hero-wash-a {
  background-image: linear-gradient(to right,
    rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.55) 50%, rgba(2, 6, 23, 0.2));
}

.hero-wash-b {
  background-image: linear-gradient(to top,
    rgba(2, 6, 23, 0.8), transparent 50%, rgba(2, 6, 23, 0.3));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-copy { max-width: 42rem; }

.hero-eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-intro {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  pointer-events: auto;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.35);
  color: #fff;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background-color 180ms ease;
}

.hero-arrow:hover { background-color: rgba(0, 0, 0, 0.55); }
.hero-arrow--prev { left: 0.75rem; }
.hero-arrow--next { right: 0.75rem; }

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hero-dot {
  height: 0.375rem;
  width: 0.625rem;
  border: 0;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 300ms ease, background-color 300ms ease;
}

.hero-dot:hover { background-color: rgba(255, 255, 255, 0.7); }
.hero-dot.is-active { width: 2rem; background-color: #fff; }

.hero-rule {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}


/* 08. Page hero & breadcrumbs ============================================= */

.page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--slate-900);
}

.page-hero > img {
  display: block;
  height: min(52vh, 30rem);
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-wash-a {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right,
    rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.55) 50%, rgba(2, 6, 23, 0.25));
}

.page-hero-wash-b {
  position: absolute; inset: 0;
  background-image: linear-gradient(to top,
    rgba(2, 6, 23, 0.7), transparent 50%, rgba(2, 6, 23, 0.3));
}

.page-hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}

.page-hero-body > .container { padding-bottom: 2.5rem; }

.page-hero-title {
  max-width: 48rem;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}

.page-hero-eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero-intro {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Plain (image-free) page hero */
.page-hero--plain {
  border-bottom: 1px solid var(--slate-200);
  background-color: var(--plain-hero-bg);
  padding: 2rem 0;
}

.page-hero--plain .page-hero-eyebrow {
  color: var(--brand);
  letter-spacing: 0.16em;
}

.page-hero--plain .page-hero-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate-900);
}

.page-hero--plain .page-hero-intro { color: var(--slate-600); max-width: 48rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a { transition: color 150ms ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .is-current { font-weight: 500; color: rgba(255, 255, 255, 0.9); }
.breadcrumb svg { width: 0.75rem; height: 0.75rem; opacity: 0.6; }

.page-hero--plain .breadcrumb { color: var(--slate-500); }
.page-hero--plain .breadcrumb a:hover { color: var(--brand); }
.page-hero--plain .breadcrumb .is-current { color: var(--slate-800); }


/* 09. Sections & headings ================================================= */

.section { background-color: #fff; color: var(--slate-900); }
.section--muted { background-color: var(--muted-bg); }
.section--brand { background-color: var(--brand); color: #fff; }

.section > .container { padding-top: 4rem; padding-bottom: 4rem; }
.section--flush > .container { padding-top: 3rem; padding-bottom: 3rem; }

.section-header { max-width: 48rem; }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }

.accent-line {
  display: block;
  height: 3px;
  width: 3rem;
  border-radius: 9999px;
  background-color: var(--brand);
  margin-bottom: 1.25rem;
}

.section-header--center .accent-line { margin-left: auto; margin-right: auto; }
.section--brand .accent-line { background-color: rgba(255, 255, 255, 0.7); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
}

.section--brand .eyebrow { color: rgba(255, 255, 255, 0.8); }

.section-title {
  margin-top: 0.75rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}

.section--brand .section-title { color: #fff; }

.section-intro {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-600);
}

.section--brand .section-intro { color: rgba(255, 255, 255, 0.85); }

.sub-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
}


/* 10. Cards, icon boxes, grids ============================================ */

.grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--tight { gap: 1rem; margin-top: 2rem; }

.icon-circle {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--brand-tint);
  color: var(--brand);
}

.icon-circle--sm { height: 2.5rem; width: 2.5rem; }

.icon-circle--invert {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.icon-box {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background-color: #fff;
  padding: 1.75rem;
  transition: border-color 200ms ease, box-shadow 200ms ease,
    background-color 200ms ease;
}

a.icon-box:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }

.icon-box h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--slate-900);
}

.icon-box p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-600);
}

.icon-box .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

a.icon-box:hover .learn-more svg { transform: translate(2px, -2px); }
.icon-box .learn-more svg { transition: transform 200ms ease; }

/* Brand-filled promo card */
.icon-box--brand {
  justify-content: space-between;
  border-color: var(--brand);
  background-color: var(--brand);
  color: #fff;
}

.icon-box--brand:hover { background-color: var(--brand-dark); border-color: var(--brand-dark); }
.icon-box--brand h3 { color: #fff; }
.icon-box--brand p { color: rgba(255, 255, 255, 0.85); }
.icon-box--brand .learn-more { color: #fff; }

/* Compact feature row (icon left, text right) */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background-color: #fff;
  padding: 1rem;
}

.feature-row .title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
}

.feature-row .body {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--slate-600);
}

/* Stacked mini card (icon on top) */
.mini-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background-color: #fff;
  padding: 1.25rem;
}

.mini-card--panel { background-color: var(--panel-bg); }

.mini-card h3 {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
}

.mini-card p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-600);
}

/* Hairline-joined panel grid */
.panel-grid {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background-color: var(--slate-200);
  grid-template-columns: 1fr;
}

.panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  padding: 2rem;
  transition: background-color 180ms ease;
}

a.panel:hover { background-color: var(--panel-bg); }

.panel h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--slate-900);
}

a.panel:hover h3 { color: var(--brand); }

.panel > h3:first-child { margin-top: 0; }

.panel p {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-600);
}

.panel .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

/* Product capability card with bullet list */
.product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background-color: #fff;
  padding: 1.75rem;
}

.product-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}

.product-card > p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-600);
}

.product-card ul {
  margin-top: 1.25rem;
  border-top: 1px solid var(--slate-200);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Bullet lists */
.bullets {
  display: grid;
  gap: 0.75rem 2.5rem;
  margin: 2rem auto 0;
  max-width: 56rem;
  grid-template-columns: 1fr;
}

.bullets li,
.product-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate-700);
}

.product-card ul li { font-size: 0.8125rem; line-height: 1.45; }

.dot {
  margin-top: 0.5rem;
  height: 0.375rem;
  width: 0.375rem;
  flex: none;
  border-radius: 9999px;
  background-color: var(--brand);
}

.product-card ul li .dot { margin-top: 0.375rem; }

/* Port cards */
.port-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background-color: #fff;
  padding: 1.75rem;
}

.port-card .country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
}

.port-card .country svg { color: var(--brand); width: 1rem; height: 1rem; }

.port-card h3 {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
}

.port-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-600);
}

.hq-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--slate-200);
  padding-top: 2rem;
}

.hq-row .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--slate-500);
}

.hq-row .value {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
}


/* 11. Media frames & images =============================================== */

.media-frame { margin: 0; width: 100%; }

.media-frame .frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background-color: var(--slate-100);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.media-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}

.media-frame:hover img { transform: scale(1.02); }

.media-frame figcaption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-500);
}

.ratio-21-9 { aspect-ratio: 21 / 9; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-16-10 { aspect-ratio: 16 / 10; }
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-4-5  { aspect-ratio: 4 / 5; }

.bordered-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.bordered-img--tall { min-height: 22rem; height: 100%; aspect-ratio: 4 / 5; }
.bordered-img--wide { aspect-ratio: 16 / 10; }

.stack-images { display: flex; flex-direction: column; gap: 1.25rem; }

.section-image {
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}


/* 12. Stats band ========================================================== */

.stats-band { background-color: var(--brand); color: #fff; }
.stats-band > .container { padding-top: 3.5rem; padding-bottom: 3.5rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2.5rem;
}

.stat { padding: 0 0.5rem; text-align: center; }

.stat .value {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat h3 {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.stat p {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.stats-note {
  margin-top: 2.5rem;
  max-width: 48rem;
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA band */
.cta-band { background-color: var(--brand); color: #fff; }
.cta-band > .container { padding-top: 4rem; padding-bottom: 4rem; }

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-inner p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
}


/* 13. Product list ======================================================== */

.product-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.product-list li + li { border-top: 1px solid var(--slate-200); }

.product-list a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 0;
}

.product-list .index {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
}

.product-list .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  transition: color 180ms ease;
}

.product-list a:hover .name { color: var(--brand); }

.product-list .meta { display: flex; align-items: baseline; gap: 1rem; }

.product-list .note {
  margin: 0;
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}


/* 14. Contact page & forms ================================================ */

.contact-grid { display: grid; gap: 2.5rem; }

.contact-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }

.contact-list .badge {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: var(--brand-tint);
  color: var(--brand);
}

.contact-list h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-900);
}

.contact-list p,
.contact-list a.value {
  display: block;
  margin-top: 0.25rem;
  white-space: pre-line;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-600);
  transition: color 150ms ease;
}

.contact-list a.value:hover { color: var(--slate-900); }

.map-card {
  margin-top: 2.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: #fff;
  box-shadow: var(--shadow-sm);
}

.map-card .head { border-bottom: 1px solid var(--border); padding: 0.75rem 1rem; }

.map-card .head .kicker {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-500);
}

.map-card .head p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-900);
}

.map-card .frame { position: relative; width: 100%; aspect-ratio: 4 / 3; }
.map-card iframe { position: absolute; inset: 0; height: 100%; width: 100%; border: 0; }

.map-card .foot { border-top: 1px solid var(--border); padding: 0.625rem 1rem; }

.map-card .foot a {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-500);
  transition: color 150ms ease;
}

.map-card .foot a:hover { color: var(--slate-900); }

.form-card {
  border: 1px solid var(--border);
  background-color: #fff;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.form-card h2 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}

.form-card > p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-600);
}

.enquiry-form { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: 0.5rem; }

.field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background-color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--slate-900);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input,
.field select { height: 2.75rem; padding: 0 0.75rem; }

.field textarea { padding: 0.75rem; resize: vertical; }

.field input::placeholder,
.field textarea::placeholder { color: var(--slate-400); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.form-success {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid rgba(222, 10, 38, 0.3);
  background-color: rgba(222, 10, 38, 0.05);
  padding: 1.25rem;
}

.form-success .title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-900);
}

.form-success p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-600);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--slate-500);
}


/* 15. Legal pages ========================================================= */

.legal-updated {
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-500);
}

.legal-layout { display: grid; gap: 2.5rem; }

.legal-toc h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
}

.legal-toc ol {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border-left: 1px solid var(--slate-200);
  padding-left: 1rem;
}

.legal-toc a {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--slate-600);
  transition: color 150ms ease;
}

.legal-toc a:hover { color: var(--brand); }

.legal-body { display: flex; flex-direction: column; gap: 3rem; }

.legal-body section { scroll-margin-top: 7rem; }

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--slate-900);
}

.legal-body .copy {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--slate-700);
}

.legal-body ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.legal-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate-700);
}

.legal-footer {
  margin-top: 3.5rem;
  border-top: 1px solid var(--slate-200);
  padding-top: 2rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-600);
}

.legal-footer a { font-weight: 600; color: var(--brand); text-underline-offset: 4px; }
.legal-footer a:hover { text-decoration: underline; }


/* 16. Footer ============================================================== */

.site-footer { position: relative; background-color: var(--brand-dark); color: #fff; }

.site-footer > .container { padding-top: 3.5rem; padding-bottom: 2.5rem; }

.footer-grid { display: grid; gap: 2.5rem; }

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-tagline {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a { transition: color 150ms ease; }
.footer-contact a:hover { color: #fff; }

.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 150ms ease;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  padding-right: 3rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 150ms ease;
}

.footer-legal a:hover { color: #fff; }

.back-to-top {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  background: none;
  color: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.back-to-top:hover { background-color: #fff; color: var(--brand); }


/* 17. Cookie banner ======================================================= */

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  padding: 0 1rem 1rem;
}

.cookie-banner[hidden] { display: none; }

.cookie-inner {
  margin: 0 auto;
  max-width: var(--container);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background-color: #fff;
  padding: 1.25rem;
  box-shadow: 0 -8px 30px -8px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-text { display: flex; align-items: flex-start; gap: 0.75rem; }

.cookie-text .badge {
  margin-top: 0.125rem;
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: var(--brand-tint);
  color: var(--brand);
}

.cookie-text p { font-size: 0.875rem; line-height: 1.65; color: var(--slate-700); }

.cookie-text a { font-weight: 600; color: var(--brand); text-underline-offset: 4px; }
.cookie-text a:hover { text-decoration: underline; }

.cookie-actions { display: flex; flex: none; align-items: center; gap: 0.625rem; }

.cookie-actions .btn { height: 2.5rem; padding: 0 1rem; }

.btn--outline {
  border-color: var(--slate-300);
  background-color: #fff;
  color: var(--slate-700);
}

.btn--outline:hover { background-color: var(--slate-50); }


/* 18. Responsive ========================================================== */

@media (min-width: 640px) {
  .grid--2,
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--tight { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bullets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .product-list a { flex-direction: row; align-items: center; justify-content: space-between; }
  .product-list .note { text-align: right; }

  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; }
  .cookie-banner { padding: 0 1.5rem 1.5rem; }

  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }

  .map-card .frame { aspect-ratio: 16 / 10; }
}

@media (min-width: 768px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
  .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; }

  .site-logo img { height: 5rem; max-width: 30rem; }

  .section > .container { padding-top: 5rem; padding-bottom: 5rem; }
  .section--flush > .container { padding-top: 4rem; padding-bottom: 4rem; }

  .hero-track { height: min(86vh, 52rem); }
  .hero-intro { font-size: 1.125rem; }
  .hero-arrow { height: 3rem; width: 3rem; }
  .hero-arrow--prev { left: 1.5rem; }
  .hero-arrow--next { right: 1.5rem; }
  .hero-dots { bottom: 2rem; }

  .page-hero > img { height: min(60vh, 36rem); }
  .page-hero-body > .container { padding-bottom: 3.5rem; }
  .page-hero-intro { font-size: 1.125rem; }
  .page-hero--plain { padding: 2.5rem 0; }

  .section-intro { font-size: 1.0625rem; }
  .prose { font-size: 1rem; }

  .stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .stats-grid .stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.2); }
  .stat .value { font-size: 2.75rem; }

  .stats-band > .container { padding-top: 4rem; padding-bottom: 4rem; }
  .cta-band > .container { padding-top: 5rem; padding-bottom: 5rem; }

  .panel-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .form-card { padding: 2.5rem; }
  .form-card h2 { font-size: 1.875rem; }

  .legal-body h2 { font-size: 1.5rem; }
  .legal-body .copy,
  .legal-body ul li { font-size: 1rem; }

  .back-to-top { bottom: 1.5rem; right: 2rem; }

  .site-footer > .container { padding-top: 4rem; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .panel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .split { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; }
  .col-5 { grid-column: span 5 / span 5; }
  .col-7 { grid-column: span 7 / span 7; }
  .col-3 { grid-column: span 3 / span 3; }
  .col-9 { grid-column: span 9 / span 9; }

  .contact-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; }

  .legal-layout { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; }
  .legal-toc-inner { position: sticky; top: 7rem; }

  .footer-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 2rem; }
  .footer-col--brand { grid-column: span 5 / span 5; }
  .footer-col--company { grid-column: span 3 / span 3; }
  .footer-col--services { grid-column: span 4 / span 4; }

  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }

  .sticky-media { position: sticky; top: 6rem; }

  .bordered-img--tall { min-height: 36rem; }

  .nav-link { padding-left: 0.875rem; padding-right: 0.875rem; font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .media-frame img,
  .hero-slide,
  .btn,
  .icon-box { transition: none !important; }
}
