/* ==========================================================================
   AMCO — Alexandria Maritime Consultative Office
   Global stylesheet / design system
   ========================================================================== */

:root {
  /* Brand palette (derived from AMCO corporate identity) */
  --navy-900: #0a1a38;
  --navy-800: #0e2148;
  --navy-700: #12294f;
  --navy-600: #17356a;
  --steel-500: #3f6fb0;
  --steel-400: #5b8fc7;
  --steel-200: #b9d0e8;
  --red-600: #d81f2a;
  --red-500: #e11d29;
  --red-400: #f0434e;

  --ink: #16233f;
  --body: #465571;
  --muted: #7a8aa4;
  --line: #e2e8f2;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-softer: #eef3f9;

  --white: #ffffff;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(14, 33, 72, .06);
  --shadow: 0 10px 30px rgba(14, 33, 72, .10);
  --shadow-lg: 0 24px 60px rgba(10, 26, 56, .18);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-head: "Barlow Condensed", "Inter", sans-serif;

  --t-fast: .18s ease;
  --t: .32s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: uppercase; letter-spacing: 1px; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); text-transform: uppercase; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-800); color: #cdd8ea; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  font-size: .82rem; color: var(--red-500);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--red-500); }
.section--navy .eyebrow { color: var(--steel-400); }
.section--navy .eyebrow::before { background: var(--steel-400); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { font-size: 1.08rem; margin-top: 16px; }

.lead { font-size: 1.18rem; color: var(--ink); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; font-size: 1rem;
  padding: 15px 30px; border-radius: 8px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red-500); color: #fff; box-shadow: 0 10px 24px rgba(216, 31, 42, .28); }
.btn--primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(216, 31, 42, .34); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn--ghost:hover { background: #fff; color: var(--navy-800); border-color: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
  padding: 18px 0;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); padding: 12px 0; }

/* Logo — real AMCO wordmark, recoloured via CSS mask (white on dark, navy on light) */
.logo { display: inline-flex; align-items: center; }
.logo__full { display: block; height: 46px; width: auto; flex-shrink: 0; transition: height var(--t); }
/* transparent hero header → white logo; scrolled/solid header → colored logo */
.site-header:not(.scrolled) .logo--dark { display: none; }
.site-header.scrolled .logo--light { display: none; }
.site-header.scrolled .logo__full { height: 40px; }

.site-header:not(.scrolled) .nav__link { color: rgba(255,255,255,.9); }
.site-header:not(.scrolled) .nav__link:hover,
.site-header:not(.scrolled) .nav__link.active { color: #fff; }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-family: var(--ff-head); font-weight: 500; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--ink); padding: 8px 14px; border-radius: 8px;
  position: relative; transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--red-500); transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav__link:hover, .nav__link.active { color: var(--red-500); }
.nav__link.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { font-size: .95rem; padding: 11px 22px; }

/* Mobile toggle */
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px; z-index: 120; }
.nav-toggle span { display: block; height: 2.5px; background: var(--navy-800); border-radius: 2px; transition: transform var(--t), opacity var(--t-fast); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 82vw);
    background: var(--navy-800); flex-direction: column; align-items: stretch;
    padding: 100px 26px 40px; gap: 4px;
    transform: translateX(100%); transition: transform var(--t); box-shadow: var(--shadow-lg);
  }
  .nav-open .nav { transform: translateX(0); }
  .nav__link { color: #fff !important; font-size: 1.25rem; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__link::after { display: none; }
  .nav__link.active { color: var(--steel-400) !important; }
  .header-actions .nav-cta { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,26,56,.5); opacity: 0; visibility: hidden; transition: var(--t); z-index: 90; }
  .nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,26,56,.94) 0%, rgba(14,33,72,.82) 42%, rgba(18,41,79,.45) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 140px 0 90px; max-width: 820px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px; border-radius: 40px; backdrop-filter: blur(4px);
  font-family: var(--ff-head); letter-spacing: 2px; text-transform: uppercase; font-size: .8rem;
}
.hero__badge b { color: var(--steel-400); font-weight: 700; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--steel-400); display: block; }
.hero__sub { font-size: 1.22rem; color: rgba(255,255,255,.86); max-width: 620px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__pillars {
  position: relative; z-index: 2; margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); overflow: hidden; max-width: 720px;
}
.hero__pillar { background: rgba(10,26,56,.35); backdrop-filter: blur(4px); padding: 22px 24px; }
.hero__pillar b { font-family: var(--ff-head); font-size: 1.3rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; display: block; }
.hero__pillar span { font-size: .86rem; color: rgba(255,255,255,.7); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; font-family: var(--ff-head); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue::after { content: ""; width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: cue 1.8s infinite; }
@keyframes cue { 0% { transform: scaleY(.2); opacity: 0; } 50% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; transform-origin: top; } }

@media (max-width: 640px) {
  .hero__pillars { grid-template-columns: 1fr; }
}

/* page hero (inner pages) */
.page-hero { position: relative; padding: 180px 0 80px; color: #fff; overflow: hidden; background: var(--navy-800); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; opacity: .32; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, var(--navy-900), rgba(18,41,79,.6)); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 640px; margin-top: 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 1.5px; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--steel-400); }

/* ==========================================================================
   Generic cards / grids
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.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--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red-500); transition: width var(--t); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__icon {
  width: 58px; height: 58px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--bg-softer); color: var(--steel-500);
  transition: background var(--t), color var(--t);
}
.card:hover .card__icon { background: var(--navy-800); color: #fff; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; color: var(--ink); }
.card p { font-size: .98rem; }

/* Feature list */
.ticklist { display: grid; gap: 14px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; }
.ticklist li svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--red-500); margin-top: 2px; }
.section--navy .ticklist li svg { color: var(--steel-400); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat__num { font-family: var(--ff-head); font-size: clamp(2.8rem, 5vw, 3.8rem); font-weight: 700; color: #fff; line-height: 1; }
.stat__num .plus { color: var(--steel-400); }
.stat__label { text-transform: uppercase; letter-spacing: 1.5px; font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 10px; font-family: var(--ff-head); }

/* ==========================================================================
   About / split media
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split__media .badge-float {
  position: absolute; bottom: -26px; left: -26px; background: var(--red-500); color: #fff;
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.split__media .badge-float b { font-family: var(--ff-head); font-size: 2.4rem; display: block; line-height: 1; }
.split__media .badge-float span { font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 880px) { .split__media .badge-float { left: 20px; } }

/* ==========================================================================
   Timeline (offices / history)
   ========================================================================== */
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .offices { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .offices { grid-template-columns: 1fr; } }
.office {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform var(--t), box-shadow var(--t);
}
.office:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.office__flag { font-family: var(--ff-head); font-size: 1.35rem; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.office__flag::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--steel-500); }
.office--hq .office__flag::before { background: var(--red-500); }
.office p { font-size: .95rem; margin-top: 8px; }
.office .tag { display: inline-block; margin-top: 12px; font-size: .72rem; font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 1.5px; color: var(--red-500); }

/* ==========================================================================
   Brands (products principals)
   ========================================================================== */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.brand-card::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: linear-gradient(90deg, var(--steel-500), var(--red-500)); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.brand-card:hover::after { transform: scaleX(1); }
.brand-card__name { font-family: var(--ff-head); font-size: 1.5rem; color: var(--navy-800); letter-spacing: .5px; }
.brand-card__logo { height: 60px; display: flex; align-items: center; margin-bottom: 16px; }
.brand-card__logo img { max-height: 56px; max-width: 170px; width: auto; object-fit: contain; }
.brand-card__cat { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red-500); font-family: var(--ff-head); margin-bottom: 12px; display: block; }
.brand-card p { font-size: .92rem; margin: 0; }

/* Category filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 1px; font-size: .9rem;
  padding: 9px 18px; border-radius: 40px; border: 1.5px solid var(--line); color: var(--body);
  transition: var(--t-fast);
}
.chip:hover { border-color: var(--steel-400); color: var(--navy-800); }
.chip.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

/* ==========================================================================
   Services accordion / list
   ========================================================================== */
.svc { display: grid; gap: 18px; }
.svc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--t); }
.svc-item.open { box-shadow: var(--shadow); }
.svc-head { display: flex; align-items: center; gap: 20px; padding: 26px 28px; width: 100%; text-align: left; }
.svc-head__num { font-family: var(--ff-head); font-size: 1.1rem; color: var(--red-500); font-weight: 700; }
.svc-head h3 { flex: 1; color: var(--ink); font-size: 1.35rem; }
.svc-head__toggle { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-softer); display: grid; place-items: center; flex-shrink: 0; transition: var(--t); color: var(--navy-800); }
.svc-item.open .svc-head__toggle { background: var(--red-500); color: #fff; transform: rotate(45deg); }
.svc-head__toggle svg { width: 18px; height: 18px; }
.svc-body { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.svc-body__inner { padding: 0 28px 28px 66px; }
.svc-body__inner p { color: var(--body); }
@media (max-width: 560px) { .svc-body__inner { padding-left: 28px; } }

/* ==========================================================================
   Projects
   ========================================================================== */
.project { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.project--reverse .project__media { order: 2; }
@media (max-width: 820px) { .project { grid-template-columns: 1fr; } .project--reverse .project__media { order: 0; } }
.project__media { position: relative; min-height: 300px; overflow: hidden; }
.project__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.project:hover .project__media img { transform: scale(1.06); }
.project__tag { position: absolute; top: 18px; left: 18px; background: var(--red-500); color: #fff; font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; padding: 6px 14px; border-radius: 6px; z-index: 2; }
.project__body { padding: clamp(30px, 4vw, 50px); }
.project__client { font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; color: var(--steel-500); margin-bottom: 8px; }
.project__body h3 { font-size: 1.8rem; margin-bottom: 16px; }
.project__metrics { display: flex; gap: 30px; margin-top: 22px; flex-wrap: wrap; }
.project__metric b { font-family: var(--ff-head); font-size: 2rem; color: var(--red-500); display: block; line-height: 1; }
.project__metric span { font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery a { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3/4; display: block; }
.gallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(10,26,56,.5)); opacity: 0; transition: var(--t); }
.gallery a:hover::after { opacity: 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a.wide { aspect-ratio: 16/10; grid-column: span 2; }
@media (max-width: 880px) { .gallery a.wide { grid-column: span 2; } }

/* ==========================================================================
   References / logo wall
   ========================================================================== */
.refs { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.ref {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 18px; display: flex; align-items: center; gap: 12px; min-height: 78px;
  transition: transform var(--t), box-shadow var(--t);
}
.ref:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.ref__mark { width: 40px; height: 40px; border-radius: 8px; background: var(--bg-softer); color: var(--steel-500); display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; flex-shrink: 0; }
.ref b { font-size: .95rem; color: var(--ink); line-height: 1.25; font-weight: 600; }

/* Logos banner (references wall image) */
.logo-wall { max-width: 1000px; margin: 0 auto; }
.logo-wall img { width: 100%; height: auto; border-radius: var(--radius); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--navy-800); color: #fff; text-align: center; padding: clamp(60px, 8vw, 96px) 0; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: url("../img/hero/hero-panorama.jpg") center/cover; opacity: .16; }
.cta-band__inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 32px; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 18px; }
.contact-card { display: flex; gap: 18px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card__icon { width: 48px; height: 48px; border-radius: 10px; background: var(--navy-800); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 1.2rem; color: var(--ink); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: .96rem; color: var(--body); }
.contact-card a:hover { color: var(--red-500); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--bg-soft); transition: var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--steel-500); background: #fff; box-shadow: 0 0 0 4px rgba(63,111,176,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .86rem; color: var(--muted); margin-top: 14px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-size: .95rem; display: none; }
.form-status.ok { display: block; background: #e8f5ee; color: #1c7a45; border: 1px solid #b8e2c9; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; min-height: 320px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: #9fb0cc; padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo__full { height: 54px; }
.footer-brand p { margin-top: 18px; font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .95rem; transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; font-size: .95rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--steel-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; flex-wrap: wrap; font-size: .88rem; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: var(--t-fast); }
.footer-bottom .socials a:hover { background: var(--red-500); color: #fff; }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

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

/* Back to top */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 12px; background: var(--red-500); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: var(--t); z-index: 80; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--red-600); }
.to-top svg { width: 22px; height: 22px; }

/* intro-strip */
.intro-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
@media (max-width: 780px){ .intro-strip{ grid-template-columns:1fr; } }
.intro-strip .mini { display:flex; gap:16px; align-items:flex-start; }
.intro-strip .mini svg { width: 40px; height:40px; color: var(--red-500); flex-shrink:0; }
.intro-strip .mini h4 { font-size:1.2rem; color:var(--ink); margin-bottom:6px; }
.intro-strip .mini p { font-size:.94rem; margin:0; }

/* value pill list */
.values { display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
@media (max-width:720px){ .values{ grid-template-columns:1fr; } }
.value { display:flex; gap:18px; }
.value__n { font-family:var(--ff-head); font-size:2.2rem; color:var(--steel-400); font-weight:700; line-height:1; opacity:.55; }
.value h4 { color:#fff; font-size:1.2rem; margin-bottom:6px; }
.value p { font-size:.95rem; color:#b9c6dc; margin:0; }
