/* ============================================================
   Tasman Maritime Consulting — design system
   System fonts only (zero font-loading network requests = fast).
   Palette: navy base, steady-blue accent, warm cream surfaces.
   ============================================================ */

:root {
  --navy:        #042C53;
  --navy-deep:   #021B33;
  --blue:        #378ADD;
  --blue-deep:   #185FA5;
  --cream:       #F7F5EF;
  --white:       #FFFFFF;
  --ink:         #16222E;
  --slate:       #5F5E5A;
  --line:        #DEDBD0;

  --font-display: ui-serif, Georgia, "Times New Roman", serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

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

/* ---------- Header top row: logo + quick action boxes ---------- */
.site-header { border-bottom: 1px solid var(--line); background: var(--white); position: relative; z-index: 50; }
.header-top {
  max-width: var(--max); margin: 0 auto; padding: 16px 24px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

/* Map + large logo composition (desktop) */
.header-hero {
  position: relative; flex: 1 1 600px; min-width: 0;
  aspect-ratio: 1300 / 673; max-height: 460px;
  border-radius: 14px; overflow: hidden; background: #021B33;
}
.header-hero__map { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.header-hero__logo {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%); z-index: 2;
  display: block; text-decoration: none;
  background: rgba(247,245,239,0.88);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(2,27,51,0.28), 0 0 0 1px rgba(4,44,83,0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.header-hero__logo-img {
  display: block; width: 200px; height: auto;
}

/* Compact fallback brand (mobile only) */
.brand--compact { display: none; }
.brand__logo-img { display: block; width: 160px; height: auto; }

@media (max-width: 880px) {
  .header-hero { display: none; }
  .brand--compact { display: flex; }
  .header-top { justify-content: space-between; }
}

/* Quick-action buttons: floating overlay on desktop (inside header-hero), full stack on mobile */
.quick-actions { display: flex; flex-direction: column; gap: 8px; }
.quick-action { position: relative; }
.quick-action__btn {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  width: 100%; padding: 13px 20px; border-radius: 9px; border: none; cursor: pointer;
  font-size: 14.5px; font-weight: 500; font-family: var(--font-body); color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.quick-action--emergency .quick-action__btn { background: #A32D2D; }
.quick-action--emergency .quick-action__btn:hover { background: #791F1F; }
.quick-action--portal .quick-action__btn { background: #0F6E56; }
.quick-action--portal .quick-action__btn:hover { background: #085041; }
.quick-action--consult .quick-action__btn { background: #378ADD; }
.quick-action--consult .quick-action__btn:hover { background: #185FA5; }

.quick-action__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #F0997B; display: inline-block; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(240,153,123,0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(240,153,123,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(240,153,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,153,123,0); }
}

.quick-action__panel {
  position: absolute; top: calc(100% + 6px); right: 0; width: 230px; background: var(--white);
  border: 1px solid var(--line); border-radius: 10px; padding: 14px; box-shadow: 0 10px 28px rgba(4,44,83,0.16);
  z-index: 60;
}
.quick-action__panel-label { font-size: 12.5px; color: var(--slate); margin: 0 0 8px; }
.quick-action__panel-phone { display: block; font-size: 19px; font-weight: 500; color: var(--navy); }
.quick-action--portal .quick-action__panel a {
  display: block; padding: 8px 10px; border-radius: 6px; font-size: 14px; color: var(--ink);
}
.quick-action--portal .quick-action__panel a:hover { background: var(--cream); text-decoration: none; }

/* Desktop: buttons float bottom-right inside the map image */
.quick-actions--overlay {
  position: absolute; bottom: 18px; right: 18px; z-index: 2; width: 270px;
}
.quick-actions--overlay .quick-action__panel { top: auto; bottom: calc(100% + 6px); }
/* Mobile: full-width duplicate set, hidden on desktop */
.quick-actions--mobile { display: none; }

@media (max-width: 880px) {
  .header-top { flex-direction: column; align-items: stretch; }
  .quick-actions--mobile { display: flex; }
  .quick-action__panel { width: 100%; left: 0; right: 0; }
}

/* ---------- Modal (Book a consultation) ---------- */
.modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(2,27,51,0.55); }
.modal__dialog {
  position: relative; background: var(--white); border-radius: 14px; padding: 32px;
  max-width: 460px; width: calc(100% - 32px); max-height: 88vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.modal__dialog h2 { font-family: var(--font-display); color: var(--navy); margin: 0 0 6px; font-size: 24px; }
.modal__sub { color: var(--slate); font-size: 14px; margin: 0 0 20px; }
.modal__close {
  position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 26px;
  line-height: 1; color: var(--slate); cursor: pointer; padding: 4px 8px;
}

.field { display: block; margin-bottom: 14px; font-size: 13.5px; color: var(--ink); }
.field span { display: block; margin-bottom: 5px; font-weight: 500; }
.field input, .field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.form__status { margin-top: 12px; font-size: 14px; min-height: 1.4em; }
.form__status[data-state="success"] { color: #27500A; }
.form__status[data-state="error"] { color: #A32D2D; }

/* ---------- Site nav (second header row) ---------- */
.site-nav__inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; }

.site-nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.site-nav__toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; }

.site-nav__list { display: flex; align-items: center; gap: 26px; }
.site-nav__list > li { position: relative; font-size: 14.5px; margin-right: 26px; }
.site-nav__list > li:last-child { margin-right: 0; }
.site-nav__list > li > a { color: var(--ink); }
.has-children > a::after { content: " \25BE"; font-size: 10px; color: var(--slate); }
.has-children ul {
  position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white);
  border: 1px solid var(--line); border-radius: 8px; padding: 8px; box-shadow: 0 8px 24px rgba(4,44,83,0.08);
  opacity: 0; visibility: hidden; transform: translateY(4px); transition: all 0.15s ease;
}
.has-children:hover ul, .has-children:focus-within ul { opacity: 1; visibility: visible; transform: translateY(0); }
.has-children ul li a { display: block; padding: 8px 10px; border-radius: 6px; font-size: 14px; }
.has-children ul li a:hover { background: var(--cream); text-decoration: none; }

.site-nav__cta {
  background: var(--navy); color: var(--white) !important; padding: 9px 16px;
  border-radius: 24px; font-weight: 500;
}
.site-nav__cta:hover { background: var(--blue-deep); text-decoration: none; }

@media (max-width: 880px) {
  .site-nav__toggle { display: block; }
  .site-nav__list {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
  }
  .site-nav__list.is-open { display: flex; }
  .site-nav__list > li { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .has-children ul { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 12px; display: none; }
  .has-children.is-open ul { display: block; }
  .site-nav__cta { display: inline-block; margin-top: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
}
.hero__chart {
  position: absolute; right: 10px; top: -20px; width: 460px; height: 460px;
  opacity: 0.16; pointer-events: none;
}
.hero__inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; }
.hero__eyebrow {
  display: inline-block; font-size: 13px; font-weight: 500; color: var(--blue-deep);
  background: #E6F1FB; padding: 5px 12px; border-radius: 20px; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4.4vw, 48px); line-height: 1.12;
  color: var(--navy); max-width: 760px; margin: 0 0 18px;
}
.hero p.lead { font-size: 18px; color: var(--slate); max-width: 620px; margin: 0 0 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 26px; font-weight: 500; font-size: 15px;
  border: 1.5px solid transparent;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--blue-deep); text-decoration: none; }
.btn--ghost { border-color: var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); text-decoration: none; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip__inner {
  max-width: var(--max); margin: 0 auto; padding: 22px 24px;
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: space-between;
}
.trust-item { font-size: 14px; color: var(--slate); display: flex; align-items: center; gap: 10px; }
.trust-item strong { color: var(--navy); font-weight: 500; }

/* ---------- Section basics ---------- */
.section { padding: 72px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--cream); }
.section__head { max-width: 680px; margin: 0 0 40px; }
.section__eyebrow { font-size: 13px; font-weight: 500; color: var(--blue-deep); letter-spacing: 0.4px; text-transform: uppercase; }
.section h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); color: var(--navy); margin: 8px 0 12px; }
.section p.sub { color: var(--slate); font-size: 16px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line); border-radius: 12px; padding: 26px; background: var(--white);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--blue); transform: translateY(-2px); }
.card__icon {
  width: 42px; height: 42px; border-radius: 10px; background: #E6F1FB; color: var(--blue-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px;
}
.card h3 { font-size: 17px; color: var(--navy); margin: 0 0 8px; }
.card p { font-size: 14.5px; color: var(--slate); margin: 0 0 14px; }
.card a.card__link { font-size: 14px; font-weight: 500; }

.region-card { position: relative; }
.region-card__badge {
  position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 12px; background: #EAF3DE; color: #27500A;
}
.region-card__badge--soon { background: #F1EFE8; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--white); padding: 56px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: 28px; margin: 0 0 10px; }
.cta-band p { color: #B5D4F4; margin: 0 0 24px; }
.cta-band .btn--primary { background: var(--white); color: var(--navy); }
.cta-band .btn--primary:hover { background: var(--cream); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #cfd8e3; padding: 56px 0 0; }
.site-footer__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
}
@media (max-width: 780px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
.site-footer__logo-link { display: inline-block; text-decoration: none; margin-bottom: 12px; }
.site-footer__logo { display: block; width: 200px; height: auto; }
.site-footer__brand { font-family: var(--font-display); color: var(--white); font-size: 18px; margin: 0 0 10px; }
.site-footer__tagline { font-size: 13.5px; color: #9fb0c2; max-width: 320px; }
.site-footer__heading { color: var(--white); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 14px; }
.site-footer__col ul li { margin-bottom: 10px; font-size: 14px; }
.site-footer__col ul li a { color: #cfd8e3; }
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding: 20px 24px;
  max-width: var(--max); margin-left: auto; margin-right: auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #9fb0c2;
}
.site-footer__legal ul { display: flex; gap: 18px; }
.site-footer__legal a { color: #9fb0c2; }

/* ---------- Breadcrumb (regional/service pages) ---------- */
.breadcrumb { font-size: 13px; color: var(--slate); padding: 16px 0; }
.breadcrumb a { color: var(--slate); }
.breadcrumb__sep { margin: 0 6px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .emergency-bar__dot { animation: none; }
  html { scroll-behavior: auto; }
  .card { transition: none; }
}

/* ---------- About page profile ---------- */
.about-profile { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
@media (max-width: 780px) { .about-profile { grid-template-columns: 1fr; } }

.about-profile__photo { position: sticky; top: 24px; }
.about-profile__img {
  width: 100%; height: auto; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(4,44,83,0.12);
}
.about-profile__caption {
  margin-top: 14px; text-align: center;
}
.about-profile__caption strong { display: block; color: var(--navy); font-size: 17px; }
.about-profile__caption span { color: var(--slate); font-size: 13.5px; }

.about-certs { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; }
.about-certs__label { font-size: 12px; font-weight: 500; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 14px; }
.about-certs ul { list-style: none; padding: 0; }
.about-certs ul li {
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.about-certs ul li:last-child { border-bottom: none; }
.about-certs ul li strong { display: block; color: var(--navy); font-weight: 500; }
.about-certs ul li span { color: var(--slate); font-size: 13.5px; }

/* ---------- Blog index ---------- */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }

.blog-posts { display: flex; flex-direction: column; gap: 32px; }

.blog-card { border: 1px solid var(--line); border-radius: 12px; padding: 28px; background: var(--white); transition: border-color 0.15s ease, transform 0.15s ease; }
.blog-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.blog-card__cat { display: inline-block; font-size: 11.5px; font-weight: 500; color: var(--blue-deep); background: #E6F1FB; padding: 3px 10px; border-radius: 12px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.3px; }
.blog-card__title { font-family: var(--font-display); font-size: 20px; margin: 0 0 6px; line-height: 1.3; }
.blog-card__title a { color: var(--navy); }
.blog-card__title a:hover { color: var(--blue-deep); text-decoration: none; }
.blog-card__meta { font-size: 13px; color: var(--slate); margin: 0 0 12px; }
.blog-card__excerpt { font-size: 15px; color: var(--slate); margin: 0 0 14px; line-height: 1.6; }
.blog-card__link { font-size: 14px; font-weight: 500; color: var(--blue-deep); }

.blog-sidebar__block { border: 1px solid var(--line); border-radius: 12px; padding: 20px; margin-bottom: 20px; background: var(--white); }
.blog-sidebar__heading { font-size: 12px; font-weight: 500; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 12px; }
.blog-sidebar__block ul { list-style: none; padding: 0; margin: 0; }
.blog-sidebar__block ul li { margin-bottom: 8px; font-size: 14px; }
.blog-sidebar__block ul li a { color: var(--ink); }
.blog-sidebar__block ul li a.active { color: var(--blue-deep); font-weight: 500; }
.blog-sidebar__block ul li span { color: var(--slate); font-size: 12px; }
.sidebar-article-link { display: block; font-size: 13.5px; color: var(--ink); padding: 8px 0; border-bottom: 1px solid var(--line); line-height: 1.4; }
.sidebar-article-link:last-of-type { border-bottom: none; }
.sidebar-article-link:hover { color: var(--blue-deep); text-decoration: none; }

/* ---------- Article page ---------- */
.article-wrap { padding: 48px 0 64px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }

.article-title { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 38px); color: var(--navy); margin: 0 0 12px; line-height: 1.15; }
.article-meta { font-size: 13.5px; color: var(--slate); margin: 0 0 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.article-content { font-size: 16px; line-height: 1.75; color: var(--ink); }
.article-content h2 { font-family: var(--font-display); color: var(--navy); font-size: clamp(20px, 2.2vw, 24px); margin: 36px 0 12px; }
.article-content h3 { color: var(--navy); font-size: 18px; margin: 28px 0 10px; }
.article-content p { margin: 0 0 18px; }
.article-content ul, .article-content ol { padding-left: 22px; margin: 0 0 18px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--navy); }
.article-content a { color: var(--blue-deep); }
.article-content blockquote { border-left: 3px solid var(--blue); margin: 24px 0; padding: 12px 20px; background: var(--cream); border-radius: 0 8px 8px 0; font-style: italic; color: var(--slate); }

.article-share { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 32px 0; padding: 20px; background: var(--cream); border-radius: 10px; }
.article-share__label { font-size: 13.5px; font-weight: 500; color: var(--navy); margin: 0; }
.article-share__btn { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; padding: 8px 16px; border-radius: 20px; border: 1.5px solid var(--line); color: var(--ink); background: var(--white); }
.article-share__btn--li { background: #0077B5; color: var(--white); border-color: #0077B5; }
.article-share__btn:hover { border-color: var(--navy); text-decoration: none; }

.article-cta { background: var(--navy); color: var(--white); border-radius: 12px; padding: 28px; margin-top: 24px; }
.article-cta h3 { color: var(--white); font-size: 18px; margin: 0 0 8px; }
.article-cta p { color: #B5D4F4; margin: 0 0 16px; font-size: 14.5px; }

/* ---------- LinkedIn icon ---------- */
.nav-linkedin {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  background: #0077B5; color: #fff !important;
  transition: background 0.15s ease;
}
.nav-linkedin:hover { background: #005a8b; text-decoration: none; }
.footer-linkedin { color: #cfd8e3; display: inline-flex; align-items: center; }
.footer-linkedin:hover { color: #9FE1CB; }

/* ---------- Emergency vessel gate ---------- */
.emergency-gate__prompt { font-size: 13px; color: var(--ink); margin: 0 0 8px; font-weight: 500; }
.emergency-gate__input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; margin-bottom: 8px; box-sizing: border-box;
}
.emergency-gate__input:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.emergency-gate__submit {
  width: 100%; padding: 9px; background: #A32D2D; color: #fff; border: none;
  border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 500; font-family: var(--font-body);
}
.emergency-gate__submit:hover { background: #791F1F; }
.emergency-gate__vessel { font-size: 12px; color: var(--slate); margin: 8px 0 0; }

/* ---------- Memberships & accreditations strip ---------- */
.memberships-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); padding: 20px 0; }
.memberships-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.memberships-label { font-size: 12px; font-weight: 500; color: var(--slate); text-transform: uppercase; letter-spacing: 0.5px; margin: 0; white-space: nowrap; }
.memberships-badges { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.membership-badge { display: flex; align-items: center; opacity: 0.75; transition: opacity 0.15s ease; }
.membership-badge:hover { opacity: 1; }
.membership-badge img { height: 48px; width: auto; }
.membership-badge__text { font-size: 13px; font-weight: 600; color: var(--navy); padding: 6px 14px; border: 1.5px solid var(--line); border-radius: 6px; }

/* ---------- Quality & policies page ---------- */
.policy-grid { display: flex; flex-direction: column; gap: 40px; }
.policy-block { border-bottom: 1px solid var(--line); padding-bottom: 36px; }
.policy-block:last-child { border-bottom: none; }
.policy-block h2 { font-family: var(--font-display); color: var(--navy); font-size: 22px; margin: 0 0 14px; }
.policy-block ul { padding-left: 20px; margin: 12px 0; color: var(--slate); line-height: 1.8; font-size: 15px; }
.policy-block li { margin-bottom: 6px; }
.policy-block p { color: var(--slate); font-size: 15px; line-height: 1.7; margin: 0 0 12px; }
.policy-standard { font-size: 13.5px; color: var(--blue-deep); margin-top: 14px; padding: 10px 14px; background: #EEF5FC; border-radius: 8px; }

.policy-tag { display: inline-block; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 12px; margin: 4px 0 12px; text-transform: uppercase; letter-spacing: 0.3px; }
.policy-tag--active { background: #EAF3DE; color: #27500A; }
.policy-tag--working { background: #E6F1FB; color: var(--blue-deep); }

/* ---------- Compact header (all pages except homepage) ---------- */
.header-compact-logo { display: block; text-decoration: none; }
.header-compact-logo img { display: block; width: 160px; height: auto; }
