/* ═══════════════════════════════════════════════════
   DAIKOKUTEN GENERAL TRADING
   Premium Light Corporate — 2026 Redesign
   Fonts: Playfair Display (display) · Plus Jakarta Sans (body)
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ─── Tokens ─── */
:root {
  --white:      #ffffff;
  --canvas:     #fafaf8;
  --sand:       #f3f1ec;
  --sand-2:     #ebe8e0;
  --ink:        #111110;
  --ink-2:      #3a3830;
  --ink-3:      #7a7668;
  --ink-4:      #b0ab9e;
  --navy:       #1b2d4f;
  --navy-lt:    #253d6b;
  --accent:     #4f3d1b;      /* warm gold */
  --accent-lt:  #7a5e2a;
  --accent-pale:#f5ede0;
  --blue:       #2460c8;
  --border:     #e8e4dc;
  --border-2:   #d4cfc4;
  --sh-xs:      0 1px 4px rgba(17,17,16,.05);
  --sh-sm:      0 2px 16px rgba(17,17,16,.07);
  --sh-md:      0 8px 40px rgba(17,17,16,.10);
  --sh-lg:      0 20px 72px rgba(17,17,16,.13);
  --sh-xl:      0 40px 120px rgba(17,17,16,.16);
  --fd:         'Playfair Display', Georgia, serif;
  --fb:         'Plus Jakarta Sans', system-ui, sans-serif;
  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(0,0,.2,1);
  --t:          .35s;
  --radius:     4px;
  --radius-lg:  12px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { flex-shrink: 0; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.s120 { padding: 100px 0; }
.s100 { padding: 80px 0; }
.s80  { padding:  60px 0; }

/* ─── Type ─── */
.display-xl {
  font-family: var(--fd);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--ink);
}
.display-xl em { font-style: italic; color: var(--navy); }

.display-lg {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.display-lg em { font-style: italic; font-family: var(--fd); }

.display-md {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink);
}
.display-md em { font-style: italic; font-family: var(--fd); color: var(--navy); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}

.body-lg { font-size: 17px; color: var(--ink); line-height: 1.85; font-weight: 300; }
.body-md { font-size: 15px; color: var(--ink-2); line-height: 1.85; font-weight: 300; }

/* ─── Rule ─── */
.rule {
  display: block;
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-lt));
  border-radius: 2px;
  margin: 18px 0 28px;
}
.rule-center { margin: 18px auto 28px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--t) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover {
  background: var(--navy-lt);
  border-color: var(--navy-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(27,45,79,.28);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-accent:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(79,61,27,.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-white-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn-sm { padding: 10px 24px; font-size: 12px; }

/* ─── Arrow link ─── */
.arr-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap var(--t), color var(--t);
}
.arr-link:hover { gap: 14px; color: var(--accent); }
.arr-link svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--t);
}
.arr-link:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════
   NAVBAR — glass white, sticky
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* background: rgba(255,255,255,1); */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
  background: rgba(247,247,247,1)
}
.navbar.stuck {
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}
.navbar__logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
  /* subtle glow matching logo colours */
  filter: drop-shadow(0 0 8px rgba(77,146,255,0.4)) drop-shadow(0 0 20px rgba(31,65,114,0.3));
  transition: filter 0.3s;
}
.navbar__logo-img:hover {
  filter: drop-shadow(0 0 12px rgba(77,146,255,0.65)) drop-shadow(0 0 30px rgba(31,65,114,0.45));
}
.nb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px;
}
.nb-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
}
.nb-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--t);
}
.nb-logo:hover .nb-mark { background: var(--accent); }

.nb-links { display: flex; align-items: center; gap: 2px; }
.nb-link {
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.nb-link:hover { color: var(--ink); background: var(--sand); }
.nb-link.on { color: var(--navy); font-weight: 700; }

.nb-cta {
  padding: 10px 26px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #234b85;
  color: var(--white);
  border-radius: var(--radius);
  border: 2px solid #234b85;
  transition: all var(--t);
}
.nb-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(79,61,27,.28);
}
.nb-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}
.nb-ham span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.nb-mob {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px 24px;
  gap: 2px;
  box-shadow: var(--sh-md);
}
.nb-mob a {
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nb-mob a:last-child { border-bottom: none; margin-top: 10px; }
.nb-mob .nb-cta { display: block; text-align: center; border-radius: var(--radius); }


/* ══════════════════════════════════
   HERO — full-bleed split screen
══════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: clip;              /* clips bg decorations but NOT positioned children */
  padding-top: 78px;
}

/* Left panel */
.hero-left {
  background: var(--canvas);
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 80px;
  background: var(--canvas);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 3;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--navy);
}

.hero-desc {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.9;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats row inside hero */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat__val {
  font-family: var(--fd);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Right panel — parallax image */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--sand-2);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  transition: transform 8s linear;
}
.hero-right.loaded img { transform: scale(1); }
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,250,248,.2) 0%, transparent 30%);
}


.hero__visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;           /* let chips breathe outside the circle */
  padding: 0 80px;             /* horizontal buffer so left/right chips aren't clipped by .hero edge */
  box-sizing: border-box;
}
/* outer ambient glow ring */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,65,114,0.4) 0%, transparent 70%);
  animation: pulse-ring 4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(0.95); opacity: 0.6; }
  50%       { transform: scale(1.05); opacity: 1; }
}
.hero__badge-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
/* Six-sided metallic prism/hex frame */
.hero__badge {
  width: 300px; height: 300px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* Outer hex ring — CSS clip-path */
.hero__badge::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(77,146,255,0.25) 0%, rgba(31,65,114,0.15) 50%, rgba(77,146,255,0.1) 100%);
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  border: 1px solid rgba(77,146,255,0.3);
  animation: spin-slow 18s linear infinite;
}
/* Inner hex */
.hero__badge::after {
  content: '';
  position: absolute; inset: 18px;
  /* background: linear-gradient(160deg, #1a2d4a 0%, #0d1422 50%, #080e1c 100%); */
  /* clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%); */
  border: 1px solid rgba(77,146,255,0.15);
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero__badge-logo {
  position: relative; z-index: 3;
  width: 190px; height: auto;
  filter: drop-shadow(0 0 14px rgba(77,146,255,0.6)) drop-shadow(0 0 40px rgba(31,65,114,0.5));
  animation: logo-glow 3.5s ease-in-out infinite;
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(77,146,255,0.5)) drop-shadow(0 0 30px rgba(31,65,114,0.4)); }
  50%       { filter: drop-shadow(0 0 20px rgba(77,146,255,0.85)) drop-shadow(0 0 55px rgba(31,65,114,0.65)); }
}
/* Orbiting dots */
.hero__orbit {
  position: absolute; width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px dashed rgba(77,146,255,0.15);
  animation: spin-slow 22s linear infinite reverse;
}
.hero__orbit::before, .hero__orbit::after {
  content: ''; position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  top: -4px; left: 50%; transform: translateX(-50%);
}
.hero__orbit::after {
  top: auto; bottom: -4px;
  background: rgba(77,146,255,0.5);
  width: 5px; height: 5px;
}
/* Data chips floating around */
.hero__chip {
  position: absolute;
  /* background: rgba(10,18,32,0.92); */
  background: var(--navy);
  border: 1px solid var(--border-shine);
  backdrop-filter: blur(12px);
  padding: 9px 15px; border-radius: 8px;
  font-family: var(--font-head); font-size: 11px;
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white);
  white-space: nowrap; box-shadow: var(--shadow-sm);
}
.hero__chip span { color: var(--sand); margin-right: 6px; }
.hero__chip:nth-child(3) { top: 12%;    right: 66px;  }
.hero__chip:nth-child(4) { top: 47%;    right: 70px;   }
.hero__chip:nth-child(5) { bottom: 15%; right: 10%;    }
.hero__chip:nth-child(6) { top: 26%;    left: 60px;   }
.hero__chip:nth-child(7) { top: 60%;    left: 6px;   }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-4);
  z-index: 10;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll svg {
  width: 18px; height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ══════════════════════════════════
   SECTOR STRIP — marquee
══════════════════════════════════ */
.sector-strip {
  background: var(--navy);
  overflow: hidden;
  padding: 18px 0;
}
.sector-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.sector-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 32px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  flex-shrink: 0;
}
.sector-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--canvas);
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ══════════════════════════════════
   FULL-BLEED IMAGE SECTION
══════════════════════════════════ */
.fullbleed {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform .1s linear;
}
.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(27,45,79,.82) 0%,
    rgba(27,45,79,.4) 50%,
    transparent 100%);
}
.fullbleed-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.fullbleed-content .display-lg {
  color: var(--white);
  max-width: 600px;
}
.fullbleed-content .display-lg em { color: var(--accent-lt); }
.fullbleed-content .body-lg {
  color: rgba(255,255,255,.65);
  margin-top: 16px;
  max-width: 480px;
}
.fullbleed-content .btn { margin-top: 36px; }


/* ══════════════════════════════════
   SPLIT SECTIONS
══════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 560px;
}
.split.rev .split-img { order: -1; }

.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.split-img:hover img { transform: scale(1.04); }
.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,45,79,.15) 0%, transparent 50%);
}

.split-body {
  display: flex;
  /* align-items: center; */
  padding: 40px 72px;
  background: var(--canvas);
}
.split-body.white { background: var(--white); }
.split-body.sand  { background: var(--sand); }
.split-inner { max-width: 480px; }


/* ══════════════════════════════════
   STATS — light full-width band
══════════════════════════════════ */
.stats-band {
  background: var(--navy);
  padding: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 20px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .4s var(--ease);
}
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-item:hover::after { width: 56px; }
.stat-val {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}


/* ══════════════════════════════════
   FEATURE STRIP — horizontal scroll
══════════════════════════════════ */
.feature-strip { 
	background: var(--white); 
	margin-top: 50px;
}
.feature-strip-head {
  padding: 60px 40px 56px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.feature-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width .35s var(--ease);
}
.feature-item:hover { background: var(--canvas); }
.feature-item:hover::before { width: 3px; }
.feature-num {
  font-family: var(--fd);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--sand-2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--t);
}
.feature-item:hover .feature-num { color: rgba(79,61,27,.18); }
.feature-name {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.feature-desc { font-size: 14px; color: var(--ink); line-height: 1.8; font-weight: 400; }


/* ══════════════════════════════════
   MOSAIC / SHOWCASE GRID
   (replaces card grid — image-first)
══════════════════════════════════ */
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  background: var(--border);
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.mosaic-item:first-child {
  grid-row: span 2;
}
.mosaic-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .65s var(--ease-out);
  filter: brightness(.88);
}
.mosaic-item:hover .mosaic-img {
  transform: scale(1.04);
  filter: brightness(1);
}
.mosaic-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 26px;
  background: linear-gradient(to top, rgba(27,45,79,.85) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: .9;
  transition: transform var(--t), opacity var(--t);
}
.mosaic-item:hover .mosaic-body { transform: translateY(0); opacity: 1; }
.mosaic-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 5px;
}
.mosaic-name {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.mosaic-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t), gap var(--t);
}
.mosaic-item:hover .mosaic-link { color: var(--white); gap: 10px; }
.mosaic-link svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}


/* ══════════════════════════════════
   LARGE QUOTE / PULL SECTION
══════════════════════════════════ */
.quote-section {
  background: var(--sand);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 40px;
  font-family: var(--fd);
  font-size: 20rem;
  color: var(--sand-2);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.quote-text {
  font-family: var(--fd);
  font-size: clamp(1.2rem, 2.4vw, 1.92rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 32px;
}
.quote-text strong { font-style: normal; color: var(--navy); }
.quote-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}


/* ══════════════════════════════════
   CTA FULL-BLEED
══════════════════════════════════ */
.cta-section {
  background: var(--navy);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(79,61,27,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-copy h2 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 12px;
}
.cta-copy p { font-size: 15px; color: rgba(255,255,255,.55); max-width: 520px; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }


/* ══════════════════════════════════
   PAGE HERO — editorial strip
══════════════════════════════════ */
.pg-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--canvas);
}
.pg-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-2), transparent);
}
.pg-hero-inner { max-width: 800px; }
.pg-hero h1 {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
/* .pg-hero h1 em { font-style: italic; color: var(--navy); } */
.pg-hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.85;
  font-weight: 400;
  max-width: 620px;
}

/* Decorative large bg text */
.pg-hero-bg-text {
  position: absolute;
  top: 40px; right: -10px;
  font-family: var(--fd);
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 700;
  color: var(--sand-2);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}


/* ══════════════════════════════════
   TIMELINE / PROCESS
══════════════════════════════════ */
.timeline {
  position: relative;
  padding: 0 0 0 56px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border-2), var(--border));
}
.tl-item {
  position: relative;
  padding: 0 0 56px 40px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.tl-item.in { opacity: 1; transform: none; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -44px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-2);
  transition: border-color var(--t), background var(--t);
}
.tl-item:hover::before {
  border-color: var(--accent);
  background: var(--accent);
}
.tl-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.tl-title {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.tl-desc { font-size: 14.5px; color: var(--ink-3); line-height: 1.85; font-weight: 300; }


/* ══════════════════════════════════
   REGIONS STRIP — horizontal
══════════════════════════════════ */
.regions-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.regions-row::-webkit-scrollbar { display: none; }
.region-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 120px;
  transition: background var(--t);
  cursor: default;
}
.region-pill:last-child { border-right: none; }
.region-pill:hover { background: var(--sand); }
.region-flag { font-size: 28px; }
.region-name { font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: .04em; text-align: center; }


/* ══════════════════════════════════
   PRINCIPLE LIST — clean accordion-style
══════════════════════════════════ */
.principle-list { border-top: 1px solid var(--border); }
.p-row {
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  cursor: default;
}
.p-row:hover { background: var(--canvas); }
.p-num {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
}
.p-body h4 {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
}
.p-body p { font-size: 14px; color: var(--ink-3); line-height: 1.8; }
.p-arrow { font-size: 16px; color: var(--ink-4); opacity: 0; transition: opacity var(--t), transform var(--t); }
.p-row:hover .p-arrow { opacity: 1; transform: translateX(4px); }


/* ══════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════ */
.prod-layout { display: grid; grid-template-columns: 200px 1fr; gap: 64px; align-items: start; }
.prod-sidebar { position: sticky; top: 110px; }
.prod-sidebar__hd {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.prod-sidebar__a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: all .2s;
  margin-bottom: 2px;
}
.prod-sidebar__a:hover { color: var(--ink); background: var(--sand); }
.prod-sidebar__a.on { color: var(--navy); border-left-color: var(--accent); font-weight: 700; }

.prod-cat { 
	margin-bottom: 38px; 
	padding-bottom: 38px; 
	/* border-bottom: 1px solid var(--border);  */
}
.prod-cat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.prod-cat-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.prod-cat-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.prod-cat-title {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}
.prod-cat-sub { font-size: 14.5px; color: var(--ink-2); line-height: 1.8; font-weight: 400; }

/* Full-width product feature banner */
.prod-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}
.prod-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.prod-banner:hover img { transform: scale(1.04); }
.prod-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,45,79,.7) 0%, transparent 55%);
  display: flex;
  align-items: center;
  padding: 0 44px;
}
.prod-banner-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.prod-banner-name {
  font-family: var(--fd);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.prod-banner-desc { font-size: 14px; color: rgba(255,255,255,.9); max-width: 400px; line-height: 1.75; }

/* Product item list — horizontal */
.prod-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.prod-list-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  overflow: hidden;
}
.prod-list-item:last-child { border-bottom: none; }
.prod-list-item:hover { background: var(--canvas); }
.prod-list-img { width: 160px; height: 120px; object-fit: cover; display: block; transition: transform .4s var(--ease-out); }
.prod-list-item:hover .prod-list-img { transform: scale(1.06); }
.prod-list-body { padding: 22px 26px; display: flex; flex-direction: column; justify-content: center; }
.prod-list-tag { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.prod-list-name { font-family: var(--fd); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.prod-list-desc { font-size: 13px; color: var(--ink); line-height: 1.75; font-weight: 300; }


/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: start; }
.contact-form-wrap {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
}
.contact-form-wrap h3 {
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form-wrap > p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 36px; }
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 14.5px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,61,27,.1);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--ink-4); }
.form-row textarea { min-height: 140px; resize: vertical; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.co-name { font-family: var(--fd); font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.co-desc { font-size: 15px; color: var(--ink); line-height: 1.85; margin-bottom: 36px; font-weight: 300; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.cd-icon {
  width: 44px; height: 44px;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cd-lbl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 3px; }
.cd-val { font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.contact-note {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-top: 32px;
}
.contact-note p {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag-pill {
  font-size: 11.5px;
  font-weight: 600;
  background: var(--sand);
  border: 1px solid var(--border);
  color: var(--ink-2);
  padding: 5px 14px;
  border-radius: 50px;
  transition: all .2s;
}
.tag-pill:hover { border-color: var(--navy); color: var(--navy); background: var(--accent-pale); }


/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--border-2);
  padding: 88px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-brand-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.footer-about { font-size: 14.5px; color: var(--navy); line-height: 1.9; font-weight: 500; margin-bottom: 26px; margin-top: 15px; }
.footer-col-hd { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #0a121f; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: var(--navy); transition: color .2s; font-weight: 600;}
.footer-col ul a:hover { color: var(--blue); font-weight: 600;}
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; font-size: 13.5px; color: var(--navy); margin-bottom: 10px; line-height: 1.6; }
.footer-contact-row svg { width: 14px; height: 14px; stroke: var(--navy); opacity: 1; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; margin-top: 3px; }
.footer-btm { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.footer-btm p { font-size: 14px; color: var(--navy); }
.footer-btm-links { display: flex; gap: 24px; }
.footer-btm-links a { font-size: 14px; color: var(--navy); transition: color .2s; }
.footer-btm-links a:hover { color: var(--navy); font-weight: 600;}


/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */

/* Base reveal — fade + rise */
/* .reveal { */
  /* opacity: 0; */
  /* transform: translateY(32px); */
  /* transition: opacity .72s ease, transform .72s ease; */
/* } */
.reveal       { transform: translateY(28px); }
.reveal.in { opacity: 1; transform: none; }

/* From left */
.reveal-l {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.reveal-l.in { opacity: 1; transform: none; }

/* From right */
.reveal-r {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.reveal-r.in { opacity: 1; transform: none; }

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* Delay helpers */
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }
.d5 { transition-delay: .50s; }


/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 40px; }
  .hero-left::after { display: none; }
  .hero-right { height: 460px; }

  /* visual sits below text — needs full width and internal breathing room */
  .hero__visual {
    height: 420px;
    padding: 0 60px;
    width: 100%;
  }
  .hero__orbit { width: 280px; height: 280px; }
  .hero__visual::before { width: 300px; height: 300px; }
  .hero__badge { width: 240px; height: 240px; }
  .hero__badge-logo { width: 150px; }

  .hero__chip:nth-child(3) { top: 10%;    right: 20px;  }
  .hero__chip:nth-child(4) { top: 45%;    right: 12px;  }
  .hero__chip:nth-child(5) { bottom: 12%; right: 8%;    }
  .hero__chip:nth-child(6) { top: 24%;    left: 20px;   }
  .hero__chip:nth-child(7) { top: 64%;    left: 20px;   }

  .split { grid-template-columns: 1fr; }
  .split.rev .split-img { order: 0; }
  .split-img { height: 400px; }
  .split-body { padding: 64px 44px; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-item:first-child { grid-row: span 1; }
  .prod-layout { grid-template-columns: 1fr; }
  .prod-sidebar { position: static; }
  .prod-cat-hd { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .s120 { padding: 80px 0; }
  .s100 { padding: 72px 0; }
  .nb-inner { padding: 0 24px; }
  .nb-links, .nb-cta { display: none; }
  .nb-ham { display: flex; }
  .nb-mob.open { display: flex; }
  .nb-mob { padding: 14px 24px 24px; }
  .hero-left { padding: 64px 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .hero__visual {
    height: 360px;
    padding: 0 40px;
  }
  .hero__orbit { width: 230px; height: 230px; }
  .hero__visual::before { width: 240px; height: 240px; }
  .hero__badge { width: 190px; height: 190px; }
  .hero__badge-logo { width: 120px; }
  .hero__chip { font-size: 10px; padding: 7px 11px; letter-spacing: 1px; }

  .hero__chip:nth-child(3) { top: 8%;    right: 14px; }
  .hero__chip:nth-child(4) { top: 44%;   right: 8px;  }
  .hero__chip:nth-child(5) { bottom: 10%; right: 5%;  }
  .hero__chip:nth-child(6) { top: 22%;   left: 14px;  }
  .hero__chip:nth-child(7) { top: 62%;   left: 14px;  }

  .fullbleed { max-height: 320px; }
  .fullbleed-content { padding: 0 32px; }
  .mosaic { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-strip-head { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 44px 24px; }
  .regions-row { flex-wrap: wrap; }
  .region-pill { flex: 0 0 50%; min-width: 0; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-2 { grid-template-columns: 1fr; }
  .prod-banner { height: 220px; }
  .prod-list-item { grid-template-columns: 120px 1fr; }
  .prod-list-img { width: 120px; height: 100px; }
}
@media (max-width: 520px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1); }

  .hero__visual { height: 300px; padding: 0 24px; }
  .hero__orbit { width: 185px; height: 185px; }
  .hero__visual::before { width: 195px; height: 195px; }
  .hero__badge { width: 155px; height: 155px; }
  .hero__badge-logo { width: 96px; }
  .hero__chip { font-size: 9px; padding: 6px 9px; letter-spacing: 0.7px; }

  /* hide the two most likely to overlap on narrow phones */
  .hero__chip:nth-child(5),
  .hero__chip:nth-child(7) { display: none; }

  .hero__chip:nth-child(3) { top: 6%;  right: 8px; }
  .hero__chip:nth-child(4) { top: 42%; right: 4px; }
  .hero__chip:nth-child(6) { top: 18%; left: 8px;  }
}

/* ─── Eyebrow labels hidden per design revision ─── */
.eyebrow { display: none !important; }
.hero-eyebrow { display: none !important; }
.prod-cat-eyebrow { display: none !important; }
.fullbleed-content .eyebrow { display: none !important; }


.page-hero {
  /* Your gradient as the base, replacing var(--navy) */
  background: linear-gradient(
    to bottom,
    #19c97a,
    #0d9e84,
    #0b7d9d
  ), url('../images/about-us-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 24px 0;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

/* Subtle dark vignette + teal glow on top of the gradient */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid lines — lightened slightly to show on the new coloured bg */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-privacy {
    padding-top: 2rem;
    padding-bottom: 3rem;
}
.privacy-container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.privacy-row {
	display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.privacy-col {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
.privacy-col {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
    }
}
	
.privacy-lead {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-top: 10px;
}
	
.privacy-lead strong { font-size: 15px; color: var(--navy); font-weight: 800; }
	
.privacy-section-block {
    margin-bottom: 3rem;
}
	
.privacy-section-block strong {
    color: var(--navy);
}
	
.privacy-section-block a { color: var(--navy); }

.privacy-section-block h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--navy);
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 0.5rem;
}
.icon-primary {
    color: var(--navy);
}
.icon-mr {
    margin-right: 0.5rem;
}
.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.privacy-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.4rem;
    border-bottom: 1px solid #e8e8e8;
    color: #404040;
    line-height: 1.75;
}
.privacy-list li:last-child { border-bottom: none; }
.privacy-list li::before {
	content: '›';
	position: absolute;
	left: 0;
	top: 0.55rem;
	color: #234f7b;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.75;
}
.privacy-list strong { color: var(--navy); }
.text-subdued { color: #5B6063; margin-top: 15px; }
	
.contact-row span strong {
	color: var(--navy);	
}
	
.contact-box .contact-row-last {
     display: flex;
     align-items: flex-start;
     gap: 0.4rem;
     margin-bottom: 0;
     color: #404040;
     font-size: 0.975rem;
     line-height: 1.6;
   }
	
.contact-row-last span strong {
	color: var(--navy);	
}

.contact-box a { color: #234f7b; text-decoration: none; }
.contact-box a:hover { color: #d4af37; text-decoration: underline; }


.policy-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark);
}

.policy-section h3 {
    font-size: 1.4rem;
    color: var(--primary);
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.75rem;
}

.policy-section p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.75;
}

.policy-list strong {
    color: var(--primary);
}

.policy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--accent);
}

.policy-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }

.policy-meta-tag {
    /* background: var(--teal-light); */
	color: var(--ink);
    font-size: 0.85rem;
    /* padding: 5px 14px; */
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.policy-meta-tag.highlight {
    background: var(--teal-light);
    color: var(--primary-color);
}

.section-terms {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.terms-container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.terms-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.terms-col {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 992px) {
    .terms-col {
      flex: 0 0 83.3333%;
      max-width: 83.3333%;
    }
}
.terms-lead {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
	margin-top: 10px;
}

.terms-lead strong {
	font-size: 15px; 
	color: var(--navy); 
	font-weight: 800; 
}

.terms-section-block {
    margin-bottom: 3rem;
}
.terms-section-block strong {
	color: #234f7b;	
}
.terms-section-block h3 {  
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #234f7b;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 0.5rem;
}
.terms-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.terms-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.4rem;
    border-bottom: 1px solid #e8e8e8;
    color: #404040;
    line-height: 1.75;
}
.terms-list li:last-child { border-bottom: none; }
.terms-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: #234f7b;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.75;
}
.terms-list strong { color: #234f7b; }
.contact-box {
      padding: 1rem 1.5rem;
      background-color: #f8f9fa;
      border-radius: 0.375rem;
      border: 1px solid #e8e8e8;
    }
.contact-box-mb {
      margin-bottom: 1rem;
	  margin-top: 1rem;
    }
.contact-row {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
.contact-row-only {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
.policy-content p { color: #404040; }
