/* ==========================================================================
   Seba Trade — design system
   Written for this site only. No framework, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand navy, sampled from the logo */
  --navy-900: #021C33;
  --navy-800: #032B4D;
  --navy-700: #043966;   /* primary */
  --navy-600: #084C85;
  --navy-500: #0B62A9;
  --navy-100: #E6EEF5;
  --navy-050: #F2F6FA;

  /* Warm brass accent, used sparingly */
  --brass-600: #A87C24;
  --brass-500: #C89B3C;
  --brass-100: #F6ECD8;

  --ink:        #11202D;
  --ink-soft:   #3D5162;
  --muted:      #64798A;
  --line:       #E1E8EE;
  --line-soft:  #EFF3F6;
  --sand:       #F7F5F0;
  --white:      #FFFFFF;

  --success-bg: #E7F6EE;
  --success-fg: #14663C;
  --error-bg:   #FDECEC;
  --error-fg:   #99201C;

  --font-display: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --wrap-narrow: 820px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(4, 57, 102, .06), 0 2px 8px rgba(4, 57, 102, .05);
  --shadow:    0 4px 12px rgba(4, 57, 102, .08), 0 12px 32px rgba(4, 57, 102, .07);
  --shadow-lg: 0 12px 28px rgba(4, 57, 102, .12), 0 32px 64px rgba(4, 57, 102, .10);

  --ease: cubic-bezier(.22, .61, .36, 1);

  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); }
h4 { font-size: 1.125rem; font-weight: 700; letter-spacing: -.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-500); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

strong, b { font-weight: 700; color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

:focus-visible {
  outline: 3px solid var(--brass-500);
  outline-offset: 2px;
  border-radius: 3px;
}

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

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--navy-700); color: #fff;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--sand { background: var(--sand); }
.section--tint { background: var(--navy-050); }
.section--navy { background: var(--navy-700); color: rgba(255,255,255,.82); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy strong { color: #fff; }

.grid { display: grid; gap: clamp(1.25rem, .8rem + 1.6vw, 2.25rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--wide-text { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 900px) {
  .split, .split--wide-text { grid-template-columns: 1fr; }
}

.stack > * + * { margin-top: 1.1rem; }
.text-center { text-align: center; }
.mt-3 { margin-top: 2rem; }

/* --------------------------------------------------------------------------
   4. Type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--brass-500);
  flex: none;
}
.section--navy .eyebrow { color: var(--brass-500); }
.eyebrow--center { justify-content: center; }

.lead {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  line-height: 1.72;
  color: var(--ink-soft);
}
.section--navy .lead { color: rgba(255,255,255,.85); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1rem + 3vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  --btn-border: var(--navy-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  padding: .95rem 1.6rem;
  border: 1.5px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-700);
  --btn-border: rgba(4, 57, 102, .28);
}
.btn--ghost:hover { --btn-bg: var(--navy-700); --btn-fg: #fff; --btn-border: var(--navy-700); }

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--navy-700);
  --btn-border: #fff;
}
.btn--on-dark {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-border: rgba(255,255,255,.45);
}
.btn--on-dark:hover { --btn-bg: #fff; --btn-fg: var(--navy-700); --btn-border: #fff; }

.btn--sm { padding: .65rem 1.15rem; font-size: .85rem; }
.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy-700);
  text-decoration: none;
}
.link-arrow svg { width: .95em; height: .95em; transition: transform .18s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-800);
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 40px;
  padding-block: .35rem;
}
.topbar__list { display: flex; flex-wrap: wrap; gap: 1.4rem; margin: 0; padding: 0; list-style: none; }
.topbar__list li { display: flex; align-items: center; gap: .45rem; margin: 0; }
.topbar__list svg { width: 14px; height: 14px; opacity: .7; flex: none; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar__social { display: flex; gap: .35rem; }
.topbar__social a {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.topbar__social a:hover { background: var(--brass-500); color: var(--navy-900); }
.topbar__social svg { width: 14px; height: 14px; }

@media (max-width: 860px) {
  .topbar__inner { justify-content: center; }
  .topbar__hours { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(4,57,102,.09); }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { flex: none; display: inline-block; line-height: 0; }
.brand img { width: 190px; height: auto; }
@media (max-width: 420px) { .brand img { width: 152px; } }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin: 0; padding: 0;
  list-style: none;
}
.nav__list li { margin: 0; }
.nav__link {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: .9rem; right: .9rem; bottom: .3rem;
  height: 2px;
  background: var(--brass-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav__link:hover { color: var(--navy-700); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--navy-700); }

.header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }

/* Dropdowns (Shop, Language) */
.menu { position: relative; }
.menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  background: none;
  border: 0;
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.menu__toggle:hover { color: var(--navy-700); }
.menu__toggle .chevron { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.menu__toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.menu__panel {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .4rem;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 30;
}
.menu__toggle[aria-expanded="true"] + .menu__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.menu__panel li { margin: 0; }
.menu__panel a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.menu__panel a:hover { background: var(--navy-050); color: var(--navy-700); }
.menu__panel a[aria-current="true"] { color: var(--navy-700); background: var(--navy-050); }
.menu__panel .ext { margin-left: auto; width: 12px; height: 12px; opacity: .4; }

.lang-toggle {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: .5rem .8rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .06em;
}
.lang-toggle:hover { border-color: var(--navy-700); }
.lang-toggle .globe { width: 15px; height: 15px; }
.lang-code { font-weight: 800; }
.lang-flag { font-size: .95rem; line-height: 1; }

@media (max-width: 720px) { .header__cta { display: none; } }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  place-items: center;
}
.nav-toggle span {
  display: block; width: 19px; height: 2px;
  background: var(--ink); border-radius: 2px;
  position: relative;
  transition: background .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    background: #fff;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    overflow-y: auto;
    z-index: 90;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav__link { padding: .85rem .5rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] { color: var(--navy-700); }
  .nav .menu { width: 100%; }
  .nav .menu__toggle { width: 100%; justify-content: space-between; padding: .85rem .5rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav .menu__panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: .25rem 0 .5rem .75rem;
    display: none; min-width: 0;
  }
  .nav .menu__toggle[aria-expanded="true"] + .menu__panel { display: block; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(2, 28, 51, .45);
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
    z-index: 80;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   7. Hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 58vh, 620px);
  display: grid;
  background: var(--navy-800);
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, rgba(2,28,51,.92) 0%, rgba(3,43,77,.80) 42%, rgba(4,57,102,.42) 72%, rgba(4,57,102,.22) 100%);
}
@media (max-width: 760px) {
  .hero::after { background: linear-gradient(180deg, rgba(2,28,51,.85) 0%, rgba(3,43,77,.78) 100%); }
}

.hero__inner {
  display: flex;
  align-items: center;
  padding-block: clamp(3.5rem, 2rem + 7vw, 6rem);
}
.hero__content { max-width: 640px; color: #fff; }
.hero__content h1 { color: #fff; margin-bottom: .5em; }
.hero__content .eyebrow { color: var(--brass-500); }
.hero__content .eyebrow::before { background: var(--brass-500); }
.hero__text {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  color: rgba(255,255,255,.86);
  margin-bottom: 2rem;
  max-width: 52ch;
}
.hero .btn-group { margin-bottom: 2.25rem; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.hero__fact span {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.hero__dots {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex; gap: .5rem;
  z-index: 3;
}
.hero__dots button {
  width: 32px; height: 4px;
  border: 0; border-radius: 2px;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  padding: 0;
  transition: background .25s var(--ease);
}
.hero__dots button.is-active { background: var(--brass-500); }

/* --------------------------------------------------------------------------
   8. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-800);
  color: #fff;
  padding-block: clamp(3rem, 2rem + 5vw, 5.5rem);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: .30;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(2,28,51,.94) 0%, rgba(4,57,102,.72) 100%);
}
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 62ch; font-size: 1.08rem; }
.page-hero .eyebrow { color: var(--brass-500); }
.page-hero .eyebrow::before { background: var(--brass-500); }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  list-style: none; margin: 1.75rem 0 0; padding: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .5rem; }
.breadcrumb li + li::before { content: '/'; opacity: .45; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--navy-100); }
.card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--navy-050); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .35rem; }
.card__body h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.card__body p { font-size: .95rem; color: var(--muted); }
.card__body .link-arrow { margin-top: auto; padding-top: 1rem; }

.card__icon {
  position: absolute;
  left: 1rem; bottom: 1rem;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}
.card__icon svg { width: 22px; height: 22px; }

/* Shop cards */
.shop-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.shop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--navy-100); color: var(--ink); }
.shop-card__icon {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--navy-050);
  color: var(--navy-700);
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.shop-card__icon svg { width: 23px; height: 23px; }
.shop-card:hover .shop-card__icon { background: var(--navy-700); color: #fff; }
.shop-card__text { display: flex; flex-direction: column; }
.shop-card__text strong { font-family: var(--font-display); font-size: .98rem; }
.shop-card__text span { font-size: .84rem; color: var(--muted); }
.shop-card .ext { margin-left: auto; width: 16px; height: 16px; color: var(--muted); flex: none; }

/* Location cards */
.site-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  height: 100%;
}
.site-card__flag {
  flex: none;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--navy-700);
  color: #fff;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.site-card h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.site-card__role {
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--brass-600);
  font-weight: 700;
  margin-bottom: .8rem;
}
.site-card address { font-style: normal; font-size: .96rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 460px) { .site-card { flex-direction: column; gap: 1rem; } }

/* Feature / value tiles */
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
}
.tile__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--navy-050);
  color: var(--navy-700);
  margin-bottom: 1.1rem;
}
.tile__icon svg { width: 24px; height: 24px; }
.tile h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.tile p { font-size: .94rem; color: var(--muted); margin: 0; }

.section--navy .tile {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.14);
}
.section--navy .tile__icon { background: rgba(255,255,255,.1); color: var(--brass-500); }
.section--navy .tile p { color: rgba(255,255,255,.72); }

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { background: #fff; padding: 2rem 1.5rem; text-align: center; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.75rem);
  font-weight: 800;
  color: var(--navy-700);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat__label {
  margin-top: .6rem;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--navy .stats { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.16); }
.section--navy .stat { background: var(--navy-700); }
.section--navy .stat__value { color: #fff; }
.section--navy .stat__label { color: rgba(255,255,255,.62); }

@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   11. Media blocks (services detail, about)
   -------------------------------------------------------------------------- */
.media-block { align-items: center; }
.media-block + .media-block { margin-top: clamp(3rem, 2rem + 4vw, 5.5rem); }
.media-block__figure { position: relative; }
.media-block__figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.media-block__figure::before {
  content: '';
  position: absolute;
  inset: auto -14px -14px auto;
  width: 56%; height: 56%;
  border: 2px solid var(--brass-500);
  border-radius: var(--radius-lg);
  opacity: .5;
  z-index: -1;
}
.media-block--flip .media-block__figure { order: 2; }
.media-block--flip .media-block__figure::before { inset: -14px auto auto -14px; }
@media (max-width: 900px) {
  .media-block--flip .media-block__figure { order: 0; }
}

.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .7rem;
  font-size: .96rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .42em;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--navy-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23043966' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / .7rem no-repeat;
}
.section--navy .check-list li::before {
  background-color: rgba(255,255,255,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C89B3C' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   12. Quote strip
   -------------------------------------------------------------------------- */
.quote-strip { background: var(--navy-700); color: #fff; }
.quote-strip .wrap { padding-block: clamp(2.25rem, 1.5rem + 3vw, 3.5rem); }
.quote-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -.015em;
  color: #fff;
  margin: 0 0 .6rem;
  text-wrap: balance;
}
.quote-strip p { color: rgba(255,255,255,.78); margin: 0; max-width: 78ch; }

/* --------------------------------------------------------------------------
   13. Partner marquee
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex: none;
  display: grid;
  place-items: center;
  width: 150px;
  height: 84px;
}
.marquee__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition: filter .25s var(--ease), opacity .25s var(--ease);
}
.marquee__item:hover img { filter: grayscale(0); opacity: 1; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - clamp(1rem, .5rem + 1.5vw, 2rem))); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* --------------------------------------------------------------------------
   14. Call to action band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--navy-800) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 380px; height: 380px;
  border: 2px solid rgba(255,255,255,.09);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: 30px; bottom: -140px;
  width: 260px; height: 260px;
  border: 2px solid rgba(200,155,60,.22);
  border-radius: 50%;
}
.cta-band .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem);
}
.cta-band h2 { color: #fff; margin: 0 0 .35rem; font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.15rem); }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; max-width: 60ch; }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .87rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}
.field .req { color: var(--brass-600); }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: inherit;
  font-size: .97rem;
  color: var(--ink);
  background: var(--navy-050);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.field input:hover, .field textarea:hover, .field select:hover { background: var(--navy-100); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(11, 98, 169, .14);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #C0392B;
  background: var(--error-bg);
}
.field__error { display: block; margin-top: .35rem; font-size: .84rem; color: var(--error-fg); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .88rem; color: var(--muted); }
.consent input { width: auto; flex: none; margin-top: .25rem; accent-color: var(--navy-700); }

.alert {
  display: flex;
  gap: .8rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .94rem;
}
.alert svg { width: 20px; height: 20px; flex: none; margin-top: .15rem; }
.alert strong { display: block; }
.alert--ok    { background: var(--success-bg); color: var(--success-fg); }
.alert--error { background: var(--error-bg);   color: var(--error-fg); }

/* Contact info panel */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.info-list li:last-child { border-bottom: 0; }
.info-list__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--navy-050);
  color: var(--navy-700);
}
.info-list__icon svg { width: 20px; height: 20px; }
.info-list h4 { margin: 0 0 .2rem; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.info-list p { margin: 0; color: var(--ink); font-size: .97rem; }
.info-list a { color: var(--ink); text-decoration: none; }
.info-list a:hover { color: var(--navy-600); text-decoration: underline; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; }
@media (max-width: 700px) { .map-frame iframe { height: 260px; } }

/* --------------------------------------------------------------------------
   16. Prose (privacy policy)
   -------------------------------------------------------------------------- */
.prose { max-width: 78ch; }
.prose h2 {
  font-size: clamp(1.3rem, 1.1rem + .8vw, 1.6rem);
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.08rem; margin-top: 1.75rem; }
.prose p, .prose li { font-size: .98rem; }
.prose ul { padding-left: 1.15rem; }
.prose .summary {
  background: var(--navy-050);
  border-left: 3px solid var(--navy-600);
  padding: .9rem 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .93rem;
  margin-bottom: 1.25rem;
}
.prose .summary strong { color: var(--navy-700); }

.toc {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.toc h2 { font-size: .82rem !important; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 .9rem !important; padding: 0 !important; border: 0 !important; }
.toc ol { margin: 0; padding-left: 1.15rem; columns: 2; column-gap: 2rem; }
.toc li { font-size: .9rem; break-inside: avoid; }
@media (max-width: 620px) { .toc ol { columns: 1; } }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.66);
  font-size: .93rem;
}
.site-footer a { color: rgba(255,255,255,.66); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem);
}
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { width: 180px; margin-bottom: 1.25rem; opacity: .95; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .55rem; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .85rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; margin-top: .25rem; flex: none; opacity: .55; }
.footer-site {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.footer-social { display: flex; gap: .5rem; margin-top: 1.5rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.footer-social a:hover { background: var(--brass-500); color: var(--navy-900); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .86rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.footer-bottom li { margin: 0; }

.to-top {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: var(--navy-700);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 70;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   18. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .topbar, .site-footer, .cta-band, .to-top, .hero__dots { display: none !important; }
  body { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
