/* ==========================================================================
   305 International LLC — Design System
   Palette derived from the logo (azure #0091C0 → ocean #206996 → navy #304073)
   ========================================================================== */

:root {
  /* Brand — pulled directly from the logo gradient */
  --azure:        #0091C0;   /* logo top / accent */
  --azure-light:  #33A9D1;
  --azure-dark:   #0a7ba3;
  --ocean:        #206996;   /* logo mid */
  --navy:         #1B2A4A;   /* primary dark (header) */
  --navy-deep:    #14213D;   /* footer / deepest */
  --navy-700:     #223A63;

  /* Neutrals */
  --ink:          #16233f;   /* headings */
  --body:         #47536b;   /* body text */
  --muted:        #6b7688;
  --line:         #e5e9f0;
  --line-soft:    #eef1f6;
  --bg:           #ffffff;
  --bg-alt:       #f5f7fa;
  --bg-alt-2:     #eef2f7;
  --white:        #ffffff;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Structure */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(20, 33, 61, .06), 0 1px 2px rgba(20, 33, 61, .04);
  --shadow: 0 10px 30px rgba(20, 33, 61, .08);
  --shadow-lg: 0 24px 60px rgba(20, 33, 61, .14);
  --nav-h: 78px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* guard against any horizontal scroll on small screens */
}
img, svg { max-width: 100%; }
* { min-width: 0; } /* allow flex/grid children to shrink instead of overflowing */
img { max-width: 100%; display: block; }
a { color: var(--ocean); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--azure); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

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

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--font-serif); font-weight: 600; letter-spacing: -.01em; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--azure-light); }
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  letter-spacing: -.015em;
  color: var(--ink);
}
.lead { font-size: 1.18rem; color: var(--muted); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--azure);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 145, 192, .28);
}
.btn-primary:hover { background: var(--azure-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 145, 192, .34); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--azure); color: var(--azure); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #fff; color: var(--azure-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ocean); font-size: 1rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--azure); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(10, 20, 40, .28);
  background: rgba(20, 33, 61, .97);
  backdrop-filter: saturate(140%) blur(8px);
}
.nav {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; padding: 6px 0; }
.nav-brand img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 8px;
  position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--azure-light);
  border-radius: 2px;
}
.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 11px 22px; font-size: .92rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.82); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(0,145,192,.30), transparent 60%),
    linear-gradient(168deg, #17385f 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(84px, 12vw, 140px) 0 clamp(96px, 13vw, 150px);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 190px;
  background: url("../assets/logo-white.png") center bottom / 620px auto no-repeat;
  opacity: .05;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 26px;
}
.hero p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 440px at 82% -20%, rgba(0,145,192,.28), transparent 60%),
    linear-gradient(165deg, #17385f 0%, var(--navy) 52%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(76px, 10vw, 118px) 0 clamp(72px, 9vw, 104px);
}
.page-hero::after {
  content: "";
  position: absolute; right: -60px; bottom: -30px;
  width: 520px; height: 180px;
  background: url("../assets/logo-white.png") right bottom / contain no-repeat;
  opacity: .05;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 22px;
}
.page-hero p { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,.82); max-width: 640px; margin: 0; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7deea; }

/* Service card (Home "What We Do") */
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .card-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--azure), var(--ocean));
  color: #fff;
  margin-bottom: 22px;
}
.service-card .card-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.service-card .card-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--azure);
  margin-bottom: 14px;
}
.service-card p { color: var(--body); }
.feature-list { list-style: none; margin: 18px 0 26px; display: grid; gap: 11px; }
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 500;
  font-size: .98rem;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230091C0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.service-card .card-foot { margin-top: auto; padding-top: 6px; }

/* Approach columns */
.approach-col .approach-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azure);
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,145,192,.3);
  margin-bottom: 20px;
}
.approach-col h3 { font-size: 1.25rem; margin-bottom: 10px; }
.approach-col p { color: var(--body); margin: 0; }

/* ---------- Tags ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  background: rgba(0,145,192,.08);
  color: var(--ocean);
  border: 1px solid rgba(0,145,192,.16);
}
.section-navy .tag { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }

/* ---------- Split highlight ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split-media {
  border-radius: var(--radius);
  min-height: 380px;
  background:
    radial-gradient(600px 300px at 30% 20%, rgba(0,145,192,.35), transparent 60%),
    linear-gradient(155deg, var(--ocean), var(--navy));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/logo-white.png") center center / 300px auto no-repeat;
  opacity: .9;
}

/* ---------- Numbered service blocks (interior pages) ---------- */
.svc-block { padding: 64px 0; border-top: 1px solid var(--line); }
.svc-block:first-of-type { border-top: 0; }
.svc-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; }
.svc-index {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--azure);
  opacity: .9;
}
.svc-block h2 { font-size: 1.75rem; margin: 4px 0 6px; }
.svc-block .svc-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ocean);
  font-size: 1.12rem;
  margin-bottom: 16px;
}
.svc-block .svc-intro { color: var(--body); max-width: 65ch; }
.svc-bullets {
  list-style: none;
  columns: 2;
  column-gap: 40px;
  margin: 22px 0 26px;
}
.svc-bullets li {
  break-inside: avoid;
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: .97rem;
}
.svc-bullets li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--azure);
}
.svc-note {
  margin-top: 6px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-left: 3px solid var(--azure);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--muted);
}
.focus-row { margin: 22px 0 4px; }
.focus-row .focus-label { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(800px 400px at 80% 120%, rgba(0,145,192,.32), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 22px;
  padding: clamp(48px, 7vw, 80px);
  overflow: hidden;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -.02em;
  max-width: 20ch;
}
.cta-band p { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 60ch; margin-bottom: 34px; }

/* Full-bleed CTA (contact prompt) */
.cta-section { padding: 96px 0; }

/* ---------- Steps (About) ---------- */
.steps { counter-reset: step; display: grid; gap: 28px; }
.step { display: flex; gap: 22px; align-items: flex-start; }
.step .step-num {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--azure), var(--ocean));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 4px; }
.step p { margin: 0; color: var(--body); }

/* Values grid */
.value-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.value-card h3 { color: var(--ink); font-size: 1.12rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.value-card h3 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--azure); flex: none; }
.value-card p { margin: 0; color: var(--body); font-size: .97rem; }

/* Prose blocks */
.prose-block { max-width: 760px; }
.prose-block h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -.015em; margin-bottom: 16px; }
.prose-block p { font-size: 1.1rem; color: var(--body); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-field { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field label .req { color: var(--azure); }
.form-control {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control::placeholder { color: #9aa4b4; }
.form-control:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 4px rgba(0,145,192,.12);
}
textarea.form-control { min-height: 150px; resize: vertical; }
select.form-control { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2347536b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px;
}
.form-note { font-size: .86rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(0,145,192,.08);
  border: 1px solid rgba(0,145,192,.24);
  border-radius: var(--radius-sm);
  color: var(--ocean);
  font-weight: 500;
  margin-bottom: 20px;
}
.form-success.show { display: block; }

.contact-info { }
.contact-card {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-card h3 { color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-item svg { width: 20px; height: 20px; color: var(--azure-light); flex: none; margin-top: 3px; }
.contact-item .ci-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.contact-item .ci-value { color: #fff; font-weight: 500; }
.contact-map { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }

/* ---------- Placeholder (Opportunities) ---------- */
.placeholder-block { text-align: center; max-width: 640px; margin: 0 auto; padding: 40px 0; }
.placeholder-block .ph-icon {
  width: 76px; height: 76px; margin: 0 auto 28px;
  border-radius: 20px;
  background: linear-gradient(140deg, var(--azure), var(--ocean));
  display: grid; place-items: center; color: #fff;
}
.placeholder-block .ph-icon svg { width: 36px; height: 36px; }
.placeholder-block h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.62); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 46px; margin-bottom: 20px; }
.footer-brand p { font-size: .96rem; color: rgba(255,255,255,.6); max-width: 34ch; margin: 0; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.62); font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { margin-bottom: 12px; font-size: .96rem; color: rgba(255,255,255,.62); }
.footer-contact-item strong { color: #fff; font-weight: 600; display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 28px; font-size: .86rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-disclaimer { max-width: 70ch; margin-top: 8px; font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.6; }

/* ---------- Home service-card number ---------- */
.service-card .card-num {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--azure);
  display: block;
  margin-bottom: 6px;
}

/* ---------- Service lead-in line (e.g. "Services include:") ---------- */
.svc-leadin { font-weight: 600; color: var(--ink); margin: 4px 0 2px; font-size: 1rem; }

/* ---------- Opportunities ---------- */
.opp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.opp-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.opp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7deea; }
.opp-card .opp-media {
  height: 168px;
  background:
    radial-gradient(400px 200px at 30% 20%, rgba(0,145,192,.35), transparent 60%),
    linear-gradient(155deg, var(--ocean), var(--navy));
  position: relative;
}
.opp-card .opp-media::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 18px; height: 60px;
  background: url("../assets/logo-white.png") center / 150px auto no-repeat;
  opacity: .85;
}
.opp-card .opp-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20,33,61,.6);
  backdrop-filter: blur(4px);
  color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.opp-card .opp-body { padding: 22px 24px 26px; }
.opp-card .opp-loc { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.opp-card .opp-loc svg { width: 13px; height: 13px; color: var(--azure); }
.opp-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.opp-card .opp-type { color: var(--body); font-size: .92rem; margin-bottom: 16px; }
.opp-note-band {
  margin-top: 30px; padding: 22px 26px;
  background: var(--bg-alt); border: 1px dashed var(--line); border-radius: var(--radius);
  color: var(--muted); font-size: .96rem; text-align: center;
}
.disclaimer-box {
  margin-top: 10px; padding: 24px 28px;
  background: var(--bg-alt); border-left: 3px solid var(--muted);
  border-radius: 10px; font-size: .88rem; color: var(--muted); line-height: 1.7;
}

/* ---------- Contact closing statement ---------- */
.closing-statement { text-align: center; padding: 8px 0 0; }
.closing-statement h2 {
  font-family: var(--font-serif); font-weight: 600; color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.2; margin-bottom: 18px;
}
.closing-statement .tag-row { justify-content: center; }

/* Two-column feature list (interior prose) */
.check-2col { list-style: none; columns: 2; column-gap: 40px; margin: 16px 0 26px; }
.check-2col li { break-inside: avoid; position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--ink); font-weight: 500; font-size: .97rem; }
.check-2col li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230091C0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { min-height: 300px; order: -1; }
  .svc-grid { grid-template-columns: 1fr; gap: 20px; }
  .svc-index { font-size: 2.6rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .opp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 26px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; visibility: visible; }
  .nav-links a { padding: 14px 12px; border-radius: 8px; font-size: 1rem; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: rgba(255,255,255,.07); }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .card { padding: 30px; }
  .svc-bullets { columns: 1; }
  .check-2col { columns: 1; }
  .opp-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-band { border-radius: 16px; }
}
@media (max-width: 560px) {
  :root { --nav-h: 68px; }
  .nav-brand img { height: 36px; }
  .hero { padding: 64px 0 72px; }
  .page-hero { padding: 56px 0 52px; }
  .section, .cta-section { padding: 52px 0; }
  .section-sm { padding: 40px 0; }
  .svc-block { padding: 40px 0; }
  .svc-index { font-size: 2.2rem; }
  .svc-block h2 { font-size: 1.45rem; }
  .card-icon, .service-card .card-icon { width: 48px; height: 48px; }
  .cta-band { padding: 40px 26px; }
  .contact-card { padding: 30px; }
  .tag { padding: 7px 14px; font-size: .84rem; }
  .hero::after { background-size: 420px auto; height: 120px; }
}
@media (max-width: 420px) {
  .container, .nav { padding-left: 18px; padding-right: 18px; }
  .card { padding: 22px; }
  .btn { padding: 14px 22px; }
}
