/* ============================================================
   Budget Cash & Carry Limited — Site Stylesheet
   ============================================================ */

:root {
  --navy: #202a5d;
  --navy-dark: #131a3f;
  --navy-darker: #0c1130;
  --orange: #f1592a;
  --orange-dark: #d6431a;
  --cream: #f5f1ea;
  --cream-dark: #ece5d8;
  --ink: #181c2e;
  --white: #ffffff;
  --muted: #6b6f85;
  --line: rgba(24, 28, 46, 0.1);
  --line-light: rgba(255, 255, 255, 0.18);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Playfair Display", Georgia, serif;

  --container: 1220px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-md: 0 18px 40px -18px rgba(12, 17, 48, 0.35);
  --shadow-lg: 0 30px 70px -25px rgba(12, 17, 48, 0.45);
  --header-h: 128px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--orange);
}
.eyebrow.on-dark { color: #ffb08e; }

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(241, 89, 42, 0.55);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(32, 42, 93, 0.35);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 75px; width: auto; transition: opacity 0.3s ease; }
.brand .logo-color { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 22px; }
.nav-links .mobile-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1200;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(245, 241, 234, 0.96);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 30px -12px rgba(12, 17, 48, 0.25);
}
.site-header.is-scrolled .logo-white { display: none; }
.site-header.is-scrolled .brand .logo-color { display: block; }
.site-header.is-scrolled .nav-links a { color: var(--navy); }
.site-header.is-scrolled .nav-links a.active { color: var(--orange); }
.site-header.is-scrolled .nav-toggle span { background: var(--navy); }

/* header on non-hero (inner) pages: always solid from the start, but starts un-scrolled state to show white on hero image */
.site-header.has-image-hero:not(.is-scrolled) { background: linear-gradient(180deg, rgba(12,17,48,0.55), rgba(12,17,48,0)); }

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  .brand img { height: 56px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1100;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { color: var(--white); font-size: 18px; }
  .header-actions .btn-primary { display: none; }
  .nav-links .mobile-cta { display: inline-flex; margin-top: 10px; }
  body.nav-open { overflow: hidden; }
  .nav-scrim {
    position: fixed; inset: 0;
    background: rgba(12,17,48,0.5);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1050;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(120deg, var(--navy-darker) 0%, var(--navy) 55%, #3a2350 100%);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(241,89,42,0.35), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0 50px;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-copy h1 span { color: var(--orange); }
.hero-copy p {
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  font-size: 1.08rem;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--white);
  font-weight: 600;
}
.hero-stats .stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-visual img {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-visual .ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}

.trust-bar {
  background: var(--orange);
  color: var(--white);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.trust-bar strong { font-weight: 600; }

/* ---------- Generic inner page hero ---------- */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,17,48,0.55) 0%, rgba(12,17,48,0.78) 60%, var(--navy-darker) 100%);
  z-index: -1;
}
.page-hero .container { padding-bottom: 64px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { max-width: 56ch; color: rgba(255,255,255,0.8); font-size: 1.05rem; }

.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.breadcrumb .container { padding: 16px 28px; }
.breadcrumb nav { font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span.current { color: var(--orange); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-cream { background: var(--cream); }
.section-navy { background: linear-gradient(135deg, var(--navy-darker), var(--navy) 60%, #33205a); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy .lead { color: rgba(255,255,255,0.72); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.split-media .badge-card {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.split-media .badge-card .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; line-height: 1; }
.split-media .badge-card .cap { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }

h2.section-title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
h2.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }

.feature-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 0.98rem; }
.feature-list.on-dark li { color: rgba(255,255,255,0.85); }
.feature-list li .dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.stat-card {
  background: var(--white);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  box-shadow: var(--shadow-md);
}
.stat-card .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); font-weight: 600; }
.stat-card .cap { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ---------- Flagship brand block ---------- */
.flagship {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.flagship-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.flagship-visual::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(241,89,42,0.35), transparent 70%);
  filter: blur(10px);
}
.flagship-visual img { position: relative; max-height: 460px; filter: drop-shadow(0 30px 45px rgba(0,0,0,0.45)); }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 32px; }
.tag-pill {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.9);
}
.tag-pill.on-light { border-color: rgba(32,42,93,0.25); color: var(--navy); }

/* ---------- Quote ---------- */
.quote-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}
.quote-block blockquote em { color: var(--orange); font-style: normal; }
.quote-block .quote-note { color: var(--muted); }
.quote-block .quote-note strong { display: block; color: var(--navy); margin-top: 10px; font-family: var(--font-display); text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.03em; }

/* ---------- Quick links / cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.link-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.link-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.link-card .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--cream-dark); font-weight: 600; float: right; }
.link-card h3 { font-size: 1.15rem; margin: 30px 0 10px; }
.link-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.link-card .go { color: var(--orange); font-family: var(--font-display); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.link-card .go::after { content: " →"; }

/* ---------- Principles / value cards ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
}
.value-card .idx { font-family: var(--font-display); color: var(--orange); font-size: 1.4rem; font-weight: 600; }
.value-card h4 { font-size: 1.02rem; margin: 16px 0 10px; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Leadership ---------- */
.leader-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.leader-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.leader-card .ghost {
  position: absolute;
  top: -0.15em; right: -0.05em;
  font-family: var(--font-display);
  font-size: 8.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  user-select: none;
}
.leader-card .name { color: var(--white); font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase; }
.leader-card .role { color: var(--orange); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }

/* ---------- Brand product cards (Brands page) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media {
  height: 250px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-media img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-media.photo img { height: 100%; width: 100%; object-fit: cover; }
.product-media .badge-circ {
  position: absolute;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.product-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.product-body p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.product-body .warn { color: var(--orange-dark); font-size: 0.78rem; margin-top: 10px; }
.product-tags {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.trust-item .idx { font-family: var(--font-display); font-size: 2rem; color: var(--orange); font-weight: 600; }
.trust-item p { color: var(--muted); font-size: 0.92rem; margin-top: 12px; }

/* ---------- Contact page ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -128px;
  position: relative;
  z-index: 5;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--orange);
  padding: 30px 28px;
  box-shadow: var(--shadow-lg);
}
.info-card .eyebrow { margin-bottom: 10px; }
.info-card .big { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); }
.info-card .sub { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }

.map-section { padding: 0; }
.map-full { position: relative; width: 100%; }
.map-embed-full {
  width: 100%;
  height: clamp(420px, 62vh, 620px);
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}
.map-overlay-card {
  position: absolute;
  left: 40px; bottom: 40px;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--orange);
  padding: 30px 32px;
  box-shadow: var(--shadow-lg);
}
.map-overlay-card .eyebrow { margin-bottom: 10px; }
.map-overlay-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.map-overlay-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 22px; }
@media (max-width: 700px) {
  .map-embed-full { height: 340px; }
  .map-overlay-card {
    position: static;
    max-width: none;
    margin: -48px 20px 0;
  }
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.three-col h3 { font-size: 1.05rem; margin-bottom: 10px; }
.three-col p { color: var(--muted); font-size: 0.92rem; }
.three-col .phone-list { margin-top: 12px; display: flex; flex-direction: column; gap: 4px; font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.social-row a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.social-row a svg { width: 16px; height: 16px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
}
.cta-banner-copy { padding: 60px 56px; color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.cta-banner-copy h2 { color: var(--white); }
.cta-banner-copy p { color: rgba(255,255,255,0.75); margin: 18px 0 30px; max-width: 46ch; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-banner-media { position: relative; min-height: 320px; }
.cta-banner-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cta-banner-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 30%);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-darker);
  color: rgba(255,255,255,0.7);
  padding: 76px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 32ch; }
.footer-col h4 {
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--orange); }
.footer-col p strong { display: block; color: rgba(255,255,255,0.85); font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; margin-top: 14px; }
.footer-col p:first-child strong:first-child { margin-top: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 900;
  font-size: 18px;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .hero-visual img { max-height: 340px; }
  .split, .flagship, .leader-grid { grid-template-columns: 1fr; }
  .split-media { order: -1 !important; }
  .flagship-visual { order: -1; }
  .quote-block { grid-template-columns: 1fr; gap: 30px; }
  .card-grid, .value-grid, .product-grid, .trust-list, .location-grid, .three-col { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-media { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 88px; }
  .brand img { height: 46px; }
  .nav-links { gap: 40px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .card-grid, .value-grid, .product-grid, .trust-list, .location-grid, .three-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-copy { padding: 44px 28px; }
  .leader-card .ghost { font-size: 6rem; }
  .quote-block { padding: 50px 0; }
}
