/* ==========================================================================
   CDG (Lao) Sole Co., Ltd — brand stylesheet

   Content alignment follows esrith.com/la (client instruction, 2026-08-14): centred
   hero / section heads / forms, left-aligned card and footer text.

   Theme colours started from that site's #0079c1 / #ffca04, then were SOFTENED at the
   client's request — same hue family, saturation pulled back, dark bands lifted. Every
   colour is a token below; nothing downstream hard-codes a hex. Translucent scrims use
   rgba(var(--deep-rgb), a) so they track --brand-950 automatically.

   The company logo is navy #323376 and is deliberately NOT used as a UI colour —
   it appears only in the header and footer lockups.
   ========================================================================== */

:root {
  /* --- brand ------------------------------------------------------------ */
  --brand:       #3b89ba;   /* primary: buttons, links, active nav          */
  --brand-700:   #326c8f;   /* primary hover / mid tone                     */
  --brand-900:   #26495e;   /* deep band background                         */
  --brand-950:   #1f3847;   /* deepest, gradient anchor                     */
  --brand-100:   #edf4f8;   /* light tint: icon plates, table heads         */
  --brand-soft:  #97bfd8;   /* soft blue on dark                            */
  /* rgb triplet of --brand-950, for the translucent scrims below */
  --deep-rgb:    31, 56, 71;

  --accent:      #f2c636;   /* accent yellow                                */
  --accent-600:  #d2a81e;
  --on-accent:   #4a3d0a;   /* text on an accent fill                       */

  /* --- neutrals --------------------------------------------------------- */
  --ink:         #37424a;
  --body:        #5f6b73;
  --muted:       #808a92;
  --line:        #e4e8ec;
  --bg:          #ffffff;
  --bg-alt:      #f7f9fb;
  --bg-alt2:     #eef2f5;

  --wrap: 1240px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.18);

  --ff-display: 'Poppins', 'Noto Sans Lao', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-body:    'Poppins', 'Noto Sans Lao', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --header-h: 96px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-700); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .55em;
  font-weight: 700;
  letter-spacing: -.022em;
}
h1 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.12rem, 1.8vw, 1.32rem); }
p  { margin: 0 0 1em; }

.wrap { width: min(var(--wrap), calc(100% - 52px)); margin-inline: auto; }

/* ---------- shared bits ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--accent); border-radius: 2px;
}
.eyebrow.on-dark { color: var(--accent); }

.lede { font-size: 1.1rem; color: var(--body); max-width: 58ch; }

.section { padding: clamp(60px, 7vw, 104px) 0; }
.section--alt  { background: var(--bg-alt); }
.section--tint { background: var(--bg); border-block: 1px solid var(--line); }
.section--deep { background: var(--brand-900); color: #c9dced; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--tight { padding: clamp(40px, 4.5vw, 64px) 0; }

/* Section heads are CENTRED by default — the reference site centres every
   section introduction and only left-aligns text inside cards. Use
   .section-head--left for the rare band that needs to hug the left edge. */
.section-head {
  max-width: 720px; margin: 0 auto 2.6rem; text-align: center;
}
.section-head p { margin-bottom: 0; }
.section-head .eyebrow { justify-content: center; }
.section-head .lede { margin-inline: auto; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head--left .eyebrow { justify-content: flex-start; }
.section-head--left .lede { margin-inline: 0; }

/* one-sentence statement band */
.statement {
  text-align: center; max-width: 30ch; margin-inline: auto;
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.35rem, 2.9vw, 2.05rem); line-height: 1.3;
  color: var(--ink); letter-spacing: -.02em;
}
.statement em { font-style: normal; color: var(--brand-700); position: relative; white-space: nowrap; }
.statement em::after {
  content: ""; position: absolute; left: -.06em; right: -.06em; bottom: .04em; height: .38em;
  background: rgba(242,198,54,.5); z-index: -1;
}
.statement span { position: relative; z-index: 1; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.7rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: var(--on-accent); }
.btn--accent:hover { background: var(--accent-600); color: var(--on-accent); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--outline { border-color: var(--line); color: var(--brand); background: #fff; }
.btn--outline:hover { border-color: var(--brand); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* text link with chevron */
.link-more {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .93rem; color: var(--brand);
}
.link-more::after {
  content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor;
  border-top: 2px solid currentColor; transform: rotate(45deg); transition: transform .18s ease;
}
.link-more:hover::after { transform: rotate(45deg) translate(3px, -3px); }
.link-more.on-dark { color: var(--accent); }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { height: 100%; display: flex; align-items: center; gap: 1.6rem; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 72px; width: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: .15rem; }
.nav > a {
  font-family: var(--ff-display); font-weight: 500; font-size: .92rem;
  color: var(--ink); padding: .55rem .85rem; border-radius: 8px;
  position: relative; transition: color .18s ease, background .18s ease;
}
.nav > a:hover { background: var(--brand-100); color: var(--brand); }
.nav > a.is-active { color: var(--brand); font-weight: 600; }
.nav > a.is-active::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .1rem;
  height: 3px; background: var(--accent); border-radius: 2px;
}
.nav a.btn { margin-left: .7rem; padding: .6rem 1.25rem; }
.nav a.btn--primary { background: var(--brand); color: #fff; }
.nav a.btn--primary:hover { background: var(--brand-700); color: #fff; }
.nav a.btn::after { display: none; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

/* ---------- hero slider ---------- */
/* Centred text over a full-bleed visual, as on the reference site. */

.hero {
  position: relative;
  height: clamp(520px, 74vh, 700px);
  background: var(--brand-950);
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .9s ease;
  display: grid; align-items: center;
}
.hero-slide.is-on { opacity: 1; }
/* even scrim, not directional — centred text has to read over the whole frame */
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(var(--deep-rgb),.62) 0%, rgba(var(--deep-rgb),.46) 45%, rgba(var(--deep-rgb),.68) 100%);
}
.hero-slide > .wrap { position: relative; z-index: 2; }
.hero-copy {
  max-width: 780px; margin-inline: auto; text-align: center; color: #dde8ef;
}
.hero-copy .eyebrow { color: var(--accent); justify-content: center; }
.hero-copy h1 { color: #fff; text-transform: uppercase; margin-bottom: .5rem; text-wrap: balance; }
.hero-copy h1 .accent { color: var(--accent); }
.hero-copy p {
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: #cbd9e3;
  max-width: 52ch; margin: 0 auto 1.8rem;
}
.hero-copy .btn-row { justify-content: center; }

/* slider chrome */
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 30px; z-index: 5;
  display: flex; justify-content: center; gap: .6rem;
}
.hero-dots button {
  width: 34px; height: 4px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.35); border-radius: 3px; transition: background .2s ease;
}
.hero-dots button[aria-current="true"] { background: var(--accent); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.34);
  display: grid; place-items: center; transition: background .18s ease;
}
.hero-arrow:hover { background: rgba(255,255,255,.28); }
.hero-arrow svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.2; }
.hero-arrow--prev { left: 22px; } .hero-arrow--next { right: 22px; }
@media (max-width: 900px) { .hero-arrow { display: none; } }

/* ---------- cards ---------- */

.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* image-topped card — text inside stays LEFT aligned */
.mcard {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); text-align: left;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.mcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #c9c9c9; }
.mcard-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--brand-950); }
.mcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mcard:hover .mcard-media img { transform: scale(1.05); }
.mcard-media .badge {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent); color: var(--on-accent); padding: .3rem .7rem; border-radius: 999px;
}
.mcard-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.mcard-body h3 { margin-bottom: .45rem; }
.mcard-body p { font-size: .93rem; color: var(--muted); margin-bottom: 1rem; }
.mcard-body .link-more { margin-top: auto; }

/* compact icon tile — one line of copy only, text left aligned */
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); text-align: left;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c9c9c9; }
.tile h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.tile p { font-size: .9rem; color: var(--muted); margin: 0; }
.tile-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--brand-100); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 1.1rem;
  transition: background .22s ease, color .22s ease;
}
.tile-icon svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.tile:hover .tile-icon { background: var(--accent); color: var(--on-accent); }

/* ---------- feature band: big visual + very short copy ---------- */

.feature {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.feature--flip .feature-media { order: 2; }
/* Grid items default to min-width:auto, so a wide child (the spec table, which
   carries min-width:620px) pushes the whole column past the viewport instead of
   scrolling inside its own .table-wrap. Resetting to 0 lets the wrapper scroll. */
.feature > *, .mapband > * { min-width: 0; }
.feature-media { position: relative; }
.feature-media img, .feature-media .figbox {
  width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg);
}
.feature-media img { aspect-ratio: 16/10; object-fit: cover; }
.feature-media::after {
  content: ""; position: absolute; right: -16px; bottom: -16px;
  width: 118px; height: 118px; border: 4px solid var(--accent);
  border-radius: 18px; z-index: -1;
}
.feature--flip .feature-media::after { right: auto; left: -16px; }
.feature-body h2 { margin-bottom: .7rem; }
.feature-body p { color: var(--body); margin-bottom: 1.4rem; max-width: 46ch; }
.feature-media.plain img { box-shadow: none; border-radius: 0; aspect-ratio: auto; }
.feature-media.plain::after { display: none; }

/* full-bleed visual with centred text over it — the reference site's
   "location intelligence" banner pattern */
.overlay-band {
  position: relative; min-height: clamp(360px, 46vw, 520px);
  display: grid; place-items: center;
  background: var(--brand-950) center/cover no-repeat;
  text-align: center;
}
/* Two layers: a multiply pass pulls the photograph towards the theme blue (the
   LiDAR ramp is rainbow-coloured and fights the palette raw), then a flat scrim
   guarantees text contrast. */
.overlay-band::before {
  content: ""; position: absolute; inset: 0;
  background: var(--brand-900); mix-blend-mode: multiply;
}
.overlay-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(var(--deep-rgb),.50), rgba(var(--deep-rgb),.64));
}
.overlay-band .wrap { position: relative; z-index: 2; max-width: 760px; }
.overlay-band .eyebrow { color: var(--accent); justify-content: center; }
.overlay-band h2 { color: #fff; }
.overlay-band p { color: #cbd9e3; max-width: 48ch; margin: 0 auto 1.6rem; font-size: 1.08rem; }

/* glyph panel — a branded visual for sections that have no photograph */
.glyph {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10; border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-950) 0%, var(--brand-900) 55%, var(--brand-700) 100%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.glyph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
}
/* chevron device — white, not yellow: yellow at low alpha over the deep blue
   goes muddy olive */
.glyph::after {
  content: ""; position: absolute; right: -12%; top: 50%; transform: translateY(-50%);
  width: 46%; aspect-ratio: 3/4; background: #ffffff; opacity: .055;
  clip-path: polygon(100% 0%, 62% 0%, 0% 50%, 62% 100%, 100% 100%, 38% 50%);
}
.glyph svg {
  position: relative; z-index: 2;
  width: 46%; max-width: 200px; height: auto;
  stroke: var(--accent); fill: none; stroke-width: 1.15;
  stroke-linecap: round; stroke-linejoin: round;
}

/* caption chip floated over a visual */
.figcap {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  background: rgba(var(--deep-rgb),.74); color: #fff; backdrop-filter: blur(6px);
  font-size: .78rem; letter-spacing: .04em; padding: .45rem .85rem; border-radius: 999px;
}

/* framed figure — for tall reference graphics that should not be cropped */
.framed {
  margin: 0 auto; max-width: 940px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1rem, 2.5vw, 2rem); box-shadow: var(--shadow-md);
}
.framed img { width: 100%; border-radius: 6px; }
.framed figcaption { margin-top: 1rem; text-align: center; font-size: .85rem; color: var(--muted); }

/* ---------- number strip ---------- */

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden;
}
.stats div { background: var(--brand-900); padding: 1.9rem 1.5rem; text-align: center; }
.stats b {
  display: block; font-family: var(--ff-display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--accent); line-height: 1.05; letter-spacing: -.02em;
}
.stats span { font-size: .85rem; color: #a9c0ce; }

.stats--light { background: var(--line); border-color: var(--line); box-shadow: var(--shadow-sm); }
.stats--light div { background: #fff; }
.stats--light b { color: var(--brand); }
.stats--light span { color: var(--muted); }

/* ---------- map band ---------- */

.mapband { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.mapband-fig { display: grid; place-items: center; }
.mapband-fig img { width: min(100%, 540px); }
.factlist { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.factlist li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.factlist li:last-child { border-bottom: 0; }
.factlist .n {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent); color: var(--on-accent);
  font-family: var(--ff-display); font-weight: 700; font-size: .92rem;
  display: grid; place-items: center;
}
.factlist b { display: block; color: var(--ink); font-family: var(--ff-display); font-size: 1rem; }
.factlist span { font-size: .9rem; color: var(--muted); }

/* ---------- equipment card ---------- */

.kit {
  display: flex; flex-direction: column; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.kit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c9c9c9; }
/* fixed height, not aspect-ratio: portrait product shots would otherwise stretch the
   box and knock the cards in a row out of alignment */
.kit-media {
  background: #fff; border-bottom: 1px solid var(--line);
  height: 210px; display: grid; place-items: center; padding: 1.1rem; overflow: hidden;
}
.kit-media img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.kit-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; }
.kit-body h3 { margin: 0 0 .8rem; font-size: 1.08rem; }
.kit-spec { list-style: none; margin: 0; padding: 0; }
.kit-spec li {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .86rem;
}
.kit-spec li:last-child { border-bottom: 0; padding-bottom: 0; }
.kit-spec span { color: var(--muted); flex-shrink: 0; }
.kit-spec b { color: var(--ink); font-family: var(--ff-display); font-weight: 600; text-align: right; }

/* ---------- photo grid ---------- */

.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.photo-grid figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.photo-grid figure:hover img { transform: scale(1.06); }
.photo-grid figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  background: linear-gradient(to top, rgba(var(--deep-rgb),.82), rgba(var(--deep-rgb),0));
  color: #fff; font-size: .82rem; padding: 1.6rem .9rem .8rem;
}
@media (max-width: 860px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- spec table ---------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 620px; text-align: left; }
.spec-table th, .spec-table td { padding: .9rem 1.1rem; text-align: left; vertical-align: top; }
.spec-table thead th {
  background: var(--brand-100); color: var(--brand-700);
  font-family: var(--ff-display); font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
}
.spec-table tbody tr { border-top: 1px solid var(--line); }
.spec-table tbody td:first-child { font-weight: 600; color: var(--ink); }
.spec-table tbody td:nth-child(2) { white-space: nowrap; color: var(--brand); font-weight: 600; }
.spec-table tbody tr:hover { background: var(--bg-alt); }

/* ---------- bullet list ---------- */

.ticks { list-style: none; padding: 0; margin: 0 0 1.4rem; text-align: left; }
.ticks li { position: relative; padding-left: 1.9rem; margin-bottom: .65rem; font-size: .95rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 10px; height: 10px; border-radius: 3px; background: var(--accent);
  box-shadow: 0 0 0 3px rgba(242,198,54,.2);
}

/* value chips — centred content, this is an icon row not body copy */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.value {
  text-align: center; padding: 1.8rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value b { display: block; font-family: var(--ff-display); color: var(--brand); font-size: 1.02rem; margin-bottom: .25rem; }
.value span { font-size: .85rem; color: var(--muted); }
.value .dot { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); margin: 0 auto 1rem; display: grid; place-items: center; }
.value .dot svg { width: 20px; height: 20px; stroke: var(--on-accent); fill: none; stroke-width: 2; }

/* ---------- page banner (inner pages) — centred, as the hero is ---------- */

.page-banner {
  position: relative; overflow: hidden;
  min-height: 340px; display: grid; align-items: center;
  background: var(--brand-950) center/cover;
  padding: clamp(52px, 6vw, 78px) 0;
  color: #cbd9e3; text-align: center;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(var(--deep-rgb),.62), rgba(var(--deep-rgb),.72));
}
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: .4rem; text-transform: uppercase; font-size: clamp(1.9rem, 4.2vw, 3rem); }
.page-banner p { color: #cbd9e3; max-width: 52ch; margin: 0 auto; font-size: 1.05rem; }
.page-banner .eyebrow { color: var(--accent); justify-content: center; }
.crumbs { font-size: .84rem; color: #9fb5c4; margin-bottom: .9rem; }
.crumbs a { color: #9fb5c4; } .crumbs a:hover { color: var(--accent); }

/* ---------- tags ---------- */

.tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .75rem; border-radius: 999px;
  background: var(--brand-100); color: var(--brand-700);
}

/* ---------- CTA ---------- */

.cta {
  background: var(--brand); color: #dbe8f0;
  border-radius: 20px; padding: clamp(2.4rem, 5vw, 3.4rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; right: -40px; top: -60px; width: 260px; height: 260px;
  border: 30px solid var(--accent); border-radius: 50%; opacity: .12;
}
.cta > * { position: relative; z-index: 2; }
.cta h2 { color: #fff; margin-bottom: .3rem; }
.cta p { margin: 0; }

/* ---------- contact — centred, contained ---------- */

.contact-narrow { max-width: 780px; margin-inline: auto; }

/* info items sit in a centred row above the form */
.info-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  margin-bottom: 2.6rem; text-align: center;
}
.info-row .info-item { display: block; margin: 0; text-align: center; }
.info-row .ico { margin: 0 auto .8rem; }
.info-row .info-item span { display: block; }

.info-item { display: flex; gap: 1rem; margin-bottom: 1.6rem; text-align: left; }
.info-item .ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-100); color: var(--brand); display: grid; place-items: center;
}
.info-item .ico svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.info-item b { display: block; font-family: var(--ff-display); color: var(--ink); margin-bottom: .1rem; }
.info-item span, .info-item a { font-size: .94rem; color: var(--body); }

form.enquiry {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); text-align: left;
}
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; font-family: var(--ff-display); }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem 1rem; font: inherit; font-size: .94rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(59,137,186,.2);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin: .9rem 0 0; }
.form-status { margin-top: 1rem; padding: .8rem 1rem; border-radius: 10px; font-size: .9rem; display: none; }
.form-status.ok { display: block; background: #e7f8ee; color: #14794a; }
.form-status.err { display: block; background: #fdeaea; color: #a32020; }

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

/* ---------- footer — multi-column, text left aligned ---------- */

.site-footer { background: var(--brand-900); color: #a9c0ce; padding: clamp(48px, 6vw, 72px) 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.6rem; text-align: left; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #a9c0ce; display: block; margin-bottom: .5rem; }
.site-footer a:hover { color: var(--accent); }
.footer-logo { background: #fff; padding: .7rem .9rem; border-radius: 10px; display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 58px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .84rem; color: #93a7b5;
}

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .nav > a { padding: .55rem .6rem; font-size: .88rem; }
  .brand img { height: 62px; }
}

@media (max-width: 980px) {
  :root { --header-h: 86px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .info-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature, .mapband { grid-template-columns: 1fr; }
  .feature--flip .feature-media { order: 0; }
  .feature-media::after { display: none; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 26px 1.6rem; box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .28s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav > a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: .95rem; }
  .nav > a.is-active::after { display: none; }
  .nav .btn { margin: 1rem 0 0; justify-content: center; }
}

@media (max-width: 620px) {
  .wrap { width: calc(100% - 36px); }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .info-row { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero { height: auto; min-height: 560px; }
  .hero-slide { padding: 96px 0 88px; }
}
