/* ============================================================
   COASTAL CYBER — style.css
   Mobile-first. Outfit (Google Fonts). Brand tokens as CSS vars.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --cc-deep-ocean:    #0D2B3E;
  --cc-teal-current:  #0A7A8A;
  --cc-reef-blue:     #2ABFBF;
  --cc-sea-mist:      #B8D8E4;
  --cc-salt-white:    #F4F9FC;
  --cc-sand-gold:     #E8A838;
  --cc-tide-green:    #1A8C4E;
  --cc-rip-red:       #C0392B;
  --cc-text-sec:      #3A5A70;

  --section-pad: 56px;
  --container:   1200px;
  --radius:      8px;
  --radius-lg:   14px;
}
@media (min-width: 768px) {
  :root { --section-pad: 88px; }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--cc-deep-ocean);
  background: #fff;
}
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
a  { color: var(--cc-teal-current); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 2.5rem);   font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 1.75rem); font-weight: 600; line-height: 1.3; }
h3 { font-size: 1.375rem;  font-weight: 600; line-height: 1.35; color: var(--cc-teal-current); }

.text-white  { color: #fff; }
.text-sec    { color: var(--cc-text-sec); font-size: .8125rem; }
.text-teal   { color: var(--cc-teal-current); }
.text-reef   { color: var(--cc-reef-blue); }
.text-gold   { color: var(--cc-sand-gold); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 40px; } }

section { padding-block: var(--section-pad); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 6px;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .15s, background-color .15s, border-color .15s, color .15s;
}
.btn:hover { text-decoration: none; }

.btn-primary  { background: var(--cc-sand-gold); color: var(--cc-deep-ocean); border-color: var(--cc-sand-gold); }
.btn-primary:hover  { filter: brightness(.9); color: var(--cc-deep-ocean); }

.btn-secondary { background: transparent; color: var(--cc-teal-current); border-color: var(--cc-teal-current); }
.btn-secondary:hover { border-color: var(--cc-deep-ocean); color: var(--cc-deep-ocean); }

.btn-secondary-light {
  background: transparent;
  color: var(--cc-sea-mist);
  border-color: var(--cc-sea-mist);
}
.btn-secondary-light:hover { border-color: #fff; color: #fff; }

.btn-group { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cc-deep-ocean);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
  height: 64px;
  gap: 8px;
}
@media (min-width: 768px) { .nav-wrap { padding-inline: 40px; } }

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo svg { height: 34px; width: auto; }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
@media (min-width: 920px) { .nav-links { display: flex; } }

.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 11px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .015em;
  color: var(--cc-sea-mist);
  border-radius: 4px;
  transition: color .15s;
}
.nav-links > li > a:hover,
.nav-links > li > a[aria-current] { color: #fff; text-decoration: none; }

/* Dropdown chevron */
.nav-links .has-dd > a::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: 2px;
}

/* Dropdown panel */
.nav-links .dd {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--cc-deep-ocean);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
  z-index: 300;
}
/* Transparent bridge fills the 6px gap so the dropdown stays open as the mouse moves down */
.nav-links .dd::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
}
.nav-links .has-dd:hover .dd,
.nav-links .has-dd:focus-within .dd { display: block; }
.nav-links .dd li a {
  display: block;
  padding: 10px 16px;
  font-size: .8125rem;
  color: var(--cc-sea-mist);
  transition: color .12s, background .12s;
}
.nav-links .dd li a:hover { color: #fff; background: rgba(255,255,255,.06); text-decoration: none; }

.nav-cta { display: none; margin-left: 12px; flex-shrink: 0; padding: 10px 20px; }
@media (min-width: 920px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
@media (min-width: 920px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cc-sea-mist);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: var(--cc-deep-ocean);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 20px 28px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cc-sea-mist);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .12s;
}
.mobile-menu a:hover { color: #fff; text-decoration: none; }
.mobile-menu .mm-sub a {
  padding-left: 18px;
  font-weight: 400;
  font-size: .9375rem;
  color: var(--cc-text-sec);
}
.mobile-menu .mm-cta { margin-top: 22px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--cc-deep-ocean);
  overflow: hidden;
  padding-block: 80px 100px;
}
@media (min-width: 768px) { .hero { min-height: 82vh; display: flex; align-items: center; } }

.hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .07;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-hl {
  font-size: clamp(2.75rem, 9vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero-hl .gold { color: var(--cc-sand-gold); }

.hero-sub {
  margin-bottom: 40px;
  max-width: 56ch;
}
.hero-sub p { color: var(--cc-sea-mist); font-size: 1.0625rem; line-height: 1.72; }
.hero-sub p + p { margin-top: 12px; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: var(--cc-deep-ocean);
  padding-block: 64px 52px;
}
.page-hero h1  { color: #fff; margin-bottom: 14px; }
.page-hero .sub {
  font-size: 1.125rem;
  color: var(--cc-sea-mist);
  max-width: 58ch;
  line-height: 1.6;
}

/* ---- Section variants ---- */
.section-light  { background: var(--cc-salt-white); }
.section-dark   { background: var(--cc-deep-ocean); }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { margin-bottom: 48px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p  { color: var(--cc-text-sec); font-size: 1.0625rem; max-width: 62ch; }

/* ---- Two-column text layout ---- */
.two-col {
  display: grid;
  gap: 36px;
}
@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
  }
}
.two-col .col-hl h2 { font-size: clamp(1.5rem, 3.5vw, 2.125rem); }
.two-col .col-body p + p { margin-top: 16px; }
.two-col .col-body p { color: var(--cc-text-sec); }

/* ---- Card grids ---- */
.card-grid   { display: grid; gap: 24px; }
@media (min-width: 600px)  { .card-grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .card-grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 640px)  { .card-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4,1fr); } }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(13,43,62,.09);
}
.card.on-light { background: var(--cc-salt-white); }
.card h3 { margin-bottom: 12px; }
.card p  { font-size: .9375rem; color: var(--cc-text-sec); max-width: 100%; }

.card-icon { margin-bottom: 20px; }
.card-cta-link {
  display: inline-block;
  margin-top: 20px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--cc-teal-current);
}
.card-cta-link:hover { text-decoration: underline; }

/* ---- Service tier cards ---- */
.tier-card {
  border: 1.5px solid rgba(10,122,138,.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
}
.tier-card h3 { color: var(--cc-deep-ocean); font-size: 1.25rem; margin-bottom: 10px; }
.tier-card p  { color: var(--cc-text-sec); font-size: .9375rem; max-width: 100%; }
.tier-card.featured {
  border-color: var(--cc-teal-current);
  border-width: 2px;
  background: linear-gradient(150deg, var(--cc-salt-white) 0%, #ddf0f2 100%);
}

/* ---- Credentials bar ---- */
.creds {
  background: var(--cc-deep-ocean);
  padding-block: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.creds-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cred-item {
  padding: 10px 22px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--cc-sea-mist);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}
.cred-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .creds-inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-inline: 20px;
    scrollbar-width: none;
  }
  .creds-inner::-webkit-scrollbar { display: none; }
}

/* ---- Bottom CTA strip ---- */
.cta-strip {
  background: var(--cc-deep-ocean);
  text-align: center;
  padding-block: 80px;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 34ch;
  margin-inline: auto;
  margin-bottom: 20px;
}
.cta-strip p {
  color: var(--cc-sea-mist);
  font-size: 1.0625rem;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 40px;
}

/* ---- Sector teaser cards ---- */
.sector-card {
  background: var(--cc-salt-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(13,43,62,.09);
  transition: border-color .2s, box-shadow .2s;
}
.sector-card:hover {
  border-color: var(--cc-teal-current);
  box-shadow: 0 4px 20px rgba(10,122,138,.12);
}
.sector-card .s-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.sector-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.sector-card p  { font-size: .9375rem; color: var(--cc-text-sec); max-width: 100%; margin-bottom: 20px; }

/* ---- Service bullet list ---- */
.svc-list { display: grid; gap: 10px; }
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  color: var(--cc-text-sec);
}
.svc-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cc-reef-blue);
  margin-top: 7px;
}

/* ---- Case study cards ---- */
.case-card {
  background: var(--cc-salt-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 4px solid var(--cc-teal-current);
}
.case-sector {
  font-size: .75rem;
  font-weight: 700;
  color: var(--cc-teal-current);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.case-card h3 { font-size: 1.125rem; color: var(--cc-deep-ocean); margin-bottom: 20px; }
.case-field { margin-bottom: 14px; }
.case-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--cc-deep-ocean);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.case-card p { font-size: .9375rem; color: var(--cc-text-sec); max-width: 100%; }
.case-attrib { font-size: .8125rem; color: var(--cc-text-sec); font-style: italic; margin-top: 16px; }

/* ---- Insights cards ---- */
.insight-card {
  background: var(--cc-deep-ocean);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.insight-date { font-size: .8125rem; color: var(--cc-sea-mist); margin-bottom: 10px; }
.insight-card h3 { color: #fff; font-size: 1.125rem; color: #fff; margin-bottom: 10px; }
.insight-card p  { font-size: .9375rem; color: var(--cc-sea-mist); max-width: 100%; margin-bottom: 20px; }
.insight-card a  { font-size: .875rem; font-weight: 600; color: var(--cc-reef-blue); }
.insight-card a:hover { text-decoration: underline; }

/* ---- About founder layout ---- */
.founder-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}
.founder-text p + p { margin-top: 16px; }
.founder-text p { color: var(--cc-text-sec); }

.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cc-sea-mist);
  order: -1;
}
@media (min-width: 768px) { .founder-photo { order: 0; } }
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  gap: 52px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.c-detail { display: flex; align-items: flex-start; gap: 12px; }
.c-detail-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--cc-teal-current); margin-top: 1px; }
.c-detail a, .c-detail span { font-size: .9375rem; color: var(--cc-text-sec); }
.c-detail a:hover { color: var(--cc-teal-current); text-decoration: underline; }

.booking-box {
  background: var(--cc-salt-white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid rgba(13,43,62,.09);
  margin-top: 32px;
}
.booking-box h3 { color: var(--cc-deep-ocean); font-size: 1.125rem; margin-bottom: 8px; }
.booking-box p  { font-size: .9375rem; color: var(--cc-text-sec); margin-bottom: 20px; }

/* Contact form */
.contact-form {
  background: var(--cc-salt-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(13,43,62,.09);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--cc-deep-ocean);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: .9375rem;
  color: var(--cc-deep-ocean);
  background: #fff;
  border: 1.5px solid rgba(13,43,62,.18);
  border-radius: 6px;
  outline: none;
  transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--cc-teal-current); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ---- AI Use Policy content ---- */
.policy-wrap { max-width: 820px; }
.policy-meta {
  background: var(--cc-salt-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
  font-size: .875rem;
}
.policy-meta strong { color: var(--cc-deep-ocean); }
.policy-meta span   { color: var(--cc-text-sec); }
.policy-meta .meta-row { display: flex; gap: 12px; margin-bottom: 6px; }
.policy-meta .meta-row:last-child { margin-bottom: 0; }

.policy-body h2 {
  font-size: 1.375rem;
  color: var(--cc-deep-ocean);
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(13,43,62,.08);
}
.policy-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy-body h3 {
  font-size: 1.0625rem;
  color: var(--cc-teal-current);
  margin-top: 28px;
  margin-bottom: 10px;
}
.policy-body p { color: var(--cc-text-sec); max-width: 72ch; margin-bottom: 14px; }
.policy-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.policy-body ul li {
  color: var(--cc-text-sec);
  font-size: .9375rem;
  margin-bottom: 7px;
}
.policy-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: .875rem;
  overflow-x: auto;
  display: block;
}
.policy-body table th {
  background: var(--cc-deep-ocean);
  color: var(--cc-sea-mist);
  text-align: left;
  padding: 10px 16px;
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .03em;
  white-space: nowrap;
}
.policy-body table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(13,43,62,.08);
  color: var(--cc-text-sec);
  vertical-align: top;
}
.policy-body table tr:last-child td { border-bottom: none; }

.attrib-block {
  background: var(--cc-salt-white);
  border-left: 4px solid var(--cc-teal-current);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.attrib-block h4 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--cc-teal-current);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.attrib-block p {
  font-size: .875rem;
  color: var(--cc-text-sec);
  font-style: italic;
  max-width: 100%;
  margin-bottom: 0;
}

/* Contact page — additional */
.contact-details h2,
.contact-form-wrap h2 { font-size: 1.375rem; color: var(--cc-deep-ocean); margin-bottom: 24px; }

.contact-list { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-label { font-size: .75rem; font-weight: 700; color: var(--cc-teal-current); text-transform: uppercase; letter-spacing: .07em; }
.contact-list a, .contact-list span { font-size: .9375rem; color: var(--cc-text-sec); }
.contact-list a:hover { color: var(--cc-teal-current); text-decoration: underline; }

/* .form-field is the alias used in contact.html (same rules as .form-group) */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--cc-deep-ocean);
  margin-bottom: 6px;
}
.form-field label span[aria-hidden] { color: var(--cc-rip-red); margin-left: 2px; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: .9375rem;
  color: var(--cc-deep-ocean);
  background: #fff;
  border: 1.5px solid rgba(13,43,62,.18);
  border-radius: 6px;
  outline: none;
  transition: border-color .15s;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--cc-teal-current); }
.form-field textarea { resize: vertical; min-height: 140px; }

/* Policy page — TOC and callout */
.policy-wrap {
  display: grid;
  gap: 48px;
  max-width: 960px;
}
@media (min-width: 920px) {
  .policy-wrap { grid-template-columns: 200px 1fr; align-items: start; }
}

.policy-toc { order: -1; }
@media (min-width: 920px) {
  .policy-toc { position: sticky; top: 88px; }
}
.policy-toc h2 { font-size: .75rem; font-weight: 700; color: var(--cc-deep-ocean); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.policy-toc ol { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.policy-toc ol li { font-size: .8125rem; }
.policy-toc ol li a { color: var(--cc-text-sec); }
.policy-toc ol li a:hover { color: var(--cc-teal-current); text-decoration: underline; }

.policy-body ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.policy-body ol li {
  color: var(--cc-text-sec);
  font-size: .9375rem;
  margin-bottom: 7px;
}
.policy-body address { font-style: normal; color: var(--cc-text-sec); font-size: .9375rem; line-height: 1.8; }
.policy-body address a { color: var(--cc-teal-current); }
.policy-body address a:hover { text-decoration: underline; }

.policy-callout {
  background: var(--cc-salt-white);
  border-left: 4px solid var(--cc-teal-current);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.policy-callout p { font-size: .9375rem; color: var(--cc-text-sec); margin-bottom: 8px; max-width: 100%; }
.policy-callout p:last-child { margin-bottom: 0; }

.policy-table { font-size: .875rem; }

/* ---- Stub page notice ---- */
.stub-notice {
  border-left: 3px solid var(--cc-teal-current);
  background: rgba(10,122,138,.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: .875rem;
  color: var(--cc-text-sec);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: .8125rem;
  color: var(--cc-text-sec);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--cc-sea-mist); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span { color: var(--cc-sea-mist); opacity: .5; margin-inline: 6px; }

/* ---- Insights listing ---- */
.insights-intro {
  font-size: 1.0625rem;
  color: var(--cc-text-sec);
  max-width: 60ch;
  margin-bottom: 48px;
}
.insights-grid { display: grid; gap: 24px; }
@media (min-width: 640px)  { .insights-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .insights-grid { grid-template-columns: repeat(3,1fr); } }

/* ---- Relevant services panel ---- */
.rel-svc {
  background: var(--cc-salt-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
  border: 1px solid rgba(13,43,62,.09);
}
.rel-svc h3 { color: var(--cc-deep-ocean); font-size: 1.125rem; margin-bottom: 20px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--cc-deep-ocean);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 52px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
}
.footer-logo { display: block; margin-bottom: 14px; }
.footer-logo svg { height: 30px; width: auto; }
.footer-tagline { font-size: .875rem; color: var(--cc-text-sec); max-width: 30ch; }

.footer-col h4 {
  font-size: .6875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a,
.footer-col p { font-size: .875rem; color: var(--cc-sea-mist); }
.footer-col ul a:hover { color: var(--cc-reef-blue); text-decoration: none; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p { font-size: .875rem; color: var(--cc-sea-mist); }
.footer-contact a { color: var(--cc-sea-mist); }
.footer-contact a:hover { color: var(--cc-reef-blue); text-decoration: none; }

.footer-li-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  color: var(--cc-sea-mist);
  transition: color .15s;
}
.footer-li-link:hover { color: var(--cc-reef-blue); text-decoration: none; }
.footer-li-link svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .8125rem; color: var(--cc-text-sec); max-width: none; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8125rem; color: var(--cc-text-sec); transition: color .15s; }
.footer-legal a:hover { color: var(--cc-reef-blue); text-decoration: none; }

/* ---- Accessibility ---- */
:focus-visible {
  outline: 3px solid var(--cc-reef-blue);
  outline-offset: 3px;
  border-radius: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* ---- Print ---- */
@media print {
  .site-header, .site-footer, .cta-strip, .creds, .nav-burger { display: none; }
}
