/* ==========================================================================
   Nautilions Maritime — Design System (simplified pass)
   Palette: navy / steel / gold, used sparingly. Display: Manrope. Body: Inter.
   Mono (IBM Plex Mono) reserved for small labels only — not overused.
   ========================================================================== */

:root{
  --navy:        #071A2D;
  --navy-2:      #0B2239;
  --navy-3:      #102C46;
  --steel:       #2F5D7C;
  --steel-soft:  #4A7793;
  --mist:        #D7E1E8;
  --white:       #FFFFFF;
  --off-white:   #F6F8FA;
  --gold:        #C8A45D;
  --gold-dim:    #a8863f;
  --ink:         #0E1E2C;
  --muted:       #55697A;
  --muted-on-dark: #9FB3C4;
  --line-on-dark: rgba(215,225,232,0.14);
  --line-on-light: rgba(11,34,57,0.10);

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 22px;
  --ease-smooth: cubic-bezier(.22,1,.36,1);

  --shadow-card: 0 1px 2px rgba(7,26,45,0.06), 0 12px 32px -16px rgba(7,26,45,0.18);
  --shadow-deep: 0 30px 80px -30px rgba(7,26,45,0.55);

  --ff-display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-y:scroll; scrollbar-gutter:stable; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  width:100%;
  overflow-x:hidden;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:inherit; }

h1,h2,h3,h4{
  font-family:var(--ff-display);
  color:var(--navy);
  margin:0;
  letter-spacing:-0.01em;
  line-height:1.14;
}
h1{ font-weight:800; }
h2{ font-weight:700; }
h3{ font-weight:700; }

p{ margin:0; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding-left:var(--gutter);
  padding-right:var(--gutter);
}

.vh{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

/* ==========================================================================
   Eyebrow / kicker label — quiet, small, not gold-heavy
   ========================================================================== */
.kicker{
  font-family:var(--ff-mono);
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--steel);
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.kicker::before{
  content:"";
  width:18px;
  height:1px;
  background:var(--steel);
  display:inline-block;
}
.kicker.on-dark{ color:var(--muted-on-dark); }
.kicker.on-dark::before{ background:var(--muted-on-dark); }

/* ==========================================================================
   Header — single, clean logo mark, no secondary line
   ========================================================================== */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:200;
  padding:22px 0;
  transition:background .45s var(--ease-smooth), padding .45s var(--ease-smooth), box-shadow .45s var(--ease-smooth), border-color .45s var(--ease-smooth);
  border-bottom:1px solid transparent;
}
.site-header.is-solid{
  background:rgba(7,26,45,0.97);
  backdrop-filter:blur(10px);
  padding:14px 0;
  border-bottom:1px solid var(--line-on-dark);
  box-shadow:0 12px 30px -22px rgba(0,0,0,0.5);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--white);
  font-family:var(--ff-display);
  transition:opacity .2s ease;
}
.brand:hover{ opacity:0.88; }
.brand-mark{
  width:64px; height:46px;
  background:var(--off-white);
  border-radius:9px;
  border:1px solid rgba(200,164,93,0.55);
  display:flex; align-items:center; justify-content:center;
  flex:none;
  padding:6px 9px;
  box-shadow:0 6px 18px -8px rgba(0,0,0,0.45);
}
.brand-mark img{
  width:100%; height:100%;
  object-fit:contain;
}
.brand-name{
  font-weight:800;
  font-size:18.5px;
  letter-spacing:0.01em;
}
.nav-desktop{
  display:flex;
  align-items:center;
  gap:0;
}
.nav-desktop a{
  color:var(--mist);
  font-size:13.5px;
  font-weight:500;
  padding:9px 11px;
  border-radius:var(--radius-s);
  transition:color .2s ease, background .2s ease;
  white-space:nowrap;
}
.nav-desktop a:hover{ color:var(--white); background:rgba(255,255,255,0.06); }
.nav-desktop a.active{ color:var(--gold); }
.header-actions{ display:flex; align-items:center; gap:14px; }
.lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
  font-family:var(--ff-mono);
  font-size:12.5px;
  color:var(--muted-on-dark);
}
.lang-switch a{ color:var(--muted-on-dark); padding:4px 2px; }
.lang-switch a.active{ color:var(--gold); font-weight:600; }
.lang-switch a:hover{ color:var(--white); }
.lang-sep{ color:var(--line-on-dark); }
.lang-switch-mobile{ margin-top:24px; font-size:15px; gap:10px; }
.lang-switch-mobile a{ color:var(--mist); }
.lang-switch-mobile a.active{ color:var(--gold); }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--ff-body);
  font-weight:600;
  font-size:14px;
  padding:13px 24px;
  border-radius:8px;
  border:1px solid transparent;
  transition:transform .35s var(--ease-smooth), background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }
.btn-gold{ background:var(--gold); color:var(--navy); }
.btn-gold:hover{ background:#d8b671; box-shadow:0 8px 20px -8px rgba(200,164,93,0.55); }
.btn-outline-dark{ border-color:rgba(255,255,255,0.28); color:var(--white); }
.btn-outline-dark:hover{ border-color:var(--white); background:rgba(255,255,255,0.06); }
.btn-outline-navy{ border-color:rgba(7,26,45,0.25); color:var(--navy); }
.btn-outline-navy:hover{ border-color:var(--navy); background:rgba(7,26,45,0.04); }
.btn-navy{ background:var(--navy); color:var(--white); }
.btn-navy:hover{ background:var(--navy-2); }
.btn-block{ width:100%; }

.menu-toggle{
  display:none;
  background:none;
  border:1px solid rgba(255,255,255,0.25);
  width:42px; height:42px;
  border-radius:2px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}
.menu-toggle span{ width:18px; height:1.5px; background:var(--white); display:block; transition:transform .25s ease, opacity .25s ease; }
.menu-toggle.is-open span:nth-child(1){ transform:translateY(5.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity:0; }
.menu-toggle.is-open span:nth-child(3){ transform:translateY(-5.5px) rotate(-45deg); }

.mobile-nav{
  position:fixed;
  inset:0;
  top:0;
  background:var(--navy);
  z-index:190;
  padding:110px 28px 40px;
  display:none;
  overflow-y:auto;
}
.mobile-nav.is-open{ display:block; }
.mobile-nav a{
  display:block;
  color:var(--white);
  font-family:var(--ff-display);
  font-weight:700;
  font-size:22px;
  padding:15px 0;
  border-bottom:1px solid var(--line-on-dark);
}
.mobile-nav a.active{ color:var(--gold); }
.mobile-nav .btn{ margin-top:26px; }

.site-header .container{ gap:16px; }
.site-header .brand-name{ font-size:16.5px; }

@media (max-width:1280px){
  .nav-desktop{ display:none; }
  .header-actions .btn-gold{ display:none; }
  .header-actions .lang-switch{ display:none; }
  .menu-toggle{ display:flex; }
}

/* ==========================================================================
   Hero — clean, restrained
   ========================================================================== */
.hero{
  position:relative;
  background:linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color:var(--white);
  overflow:hidden;
  padding:168px 0 88px;
}
.hero-media{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  z-index:0;
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(7,26,45,0.86) 0%, rgba(11,34,57,0.92) 100%);
  z-index:1;
}
.hero-home{ min-height:82vh; display:flex; align-items:center; padding-top:150px; padding-bottom:72px; }
.chart-lines{
  position:absolute; inset:0;
  opacity:0.35;
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:56px;
  align-items:center;
  position:relative;
  z-index:2;
}
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; gap:44px; }
}
.hero h1{
  color:var(--white);
  font-size:clamp(32px, 4.6vw, 54px);
  max-width:16ch;
}
.hero-sub{
  margin-top:20px;
  font-size:17px;
  line-height:1.7;
  color:var(--mist);
  max-width:52ch;
}
.hero-page h1{ max-width:22ch; font-size:clamp(28px,4vw,42px); }
.hero-page .hero-sub{ max-width:60ch; }
.hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero-badges{
  margin-top:48px;
  display:flex;
  flex-wrap:wrap;
  gap:10px 28px;
  border-top:1px solid var(--line-on-dark);
  padding-top:22px;
}
.hero-badges span{
  font-size:13px;
  color:var(--muted-on-dark);
}
.hero-badges span strong{ color:var(--mist); font-weight:600; }

/* simple, quiet info card in hero — replaces the busier "instrument panel" */
.panel{
  border:1px solid var(--line-on-dark);
  border-radius:var(--radius-m);
  padding:30px 28px;
}
.panel-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:15px 0;
  border-bottom:1px solid var(--line-on-dark);
  gap:16px;
}
.panel-row:last-child{ border-bottom:none; }
.panel-row .label{ font-size:13px; color:var(--muted-on-dark); }
.panel-row .value{ font-size:14.5px; color:var(--white); font-weight:500; text-align:right; }
.panel-title{
  font-family:var(--ff-display);
  font-weight:700;
  font-size:14px;
  color:var(--white);
  margin-bottom:6px;
  padding-bottom:16px;
  border-bottom:1px solid var(--line-on-dark);
}

@keyframes heroIn{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }
.hero .kicker{ animation:heroIn .7s var(--ease-smooth) both; }
.hero h1{ animation:heroIn .7s var(--ease-smooth) .08s both; }
.hero .hero-sub{ animation:heroIn .7s var(--ease-smooth) .16s both; }
.hero .hero-actions{ animation:heroIn .7s var(--ease-smooth) .24s both; }
.hero .hero-badges{ animation:heroIn .7s var(--ease-smooth) .3s both; }
.hero .panel{ animation:heroIn .8s var(--ease-smooth) .2s both; }
.hero .breadcrumb{ animation:heroIn .6s var(--ease-smooth) both; }

.breadcrumb{
  font-size:12.5px;
  color:var(--muted-on-dark);
  margin-bottom:18px;
}
.breadcrumb a{ color:var(--muted-on-dark); }
.breadcrumb a:hover{ color:var(--gold); }

/* ==========================================================================
   Sections
   ========================================================================== */
section{ padding:92px 0; }
.section-tight{ padding:68px 0; }
.section-alt{ background:var(--off-white); }
.section-navy{ background:var(--navy); color:var(--white); }
.section-navy h2, .section-navy h3{ color:var(--white); }

.section-head{ max-width:760px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(25px,3.2vw,36px); }
.section-head p{ margin-top:14px; color:var(--muted); font-size:16px; line-height:1.75; }
.section-navy .section-head p{ color:var(--muted-on-dark); }

.lede{ font-size:18px; line-height:1.75; color:var(--muted); max-width:72ch; }
.lede + .lede{ margin-top:16px; }

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

.card{
  background:var(--white);
  border:1px solid var(--line-on-light);
  border-radius:var(--radius-m);
  padding:30px 26px;
  transition:border-color .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth), transform .35s var(--ease-smooth);
}
.card:hover{ transform:translateY(-3px); }
.card:hover{ border-color:var(--steel); box-shadow:var(--shadow-card); }
.card .idx{
  font-size:12px;
  color:var(--muted);
  letter-spacing:0.04em;
  margin-bottom:14px;
  display:block;
}
.card h3{ font-size:18.5px; margin-bottom:9px; }
.card p{ color:var(--muted); font-size:15px; line-height:1.7; }
.card .card-link{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:16px; font-size:13.5px; font-weight:600; color:var(--steel);
}
.card .card-link:hover{ color:var(--navy); }

.card-dark{ background:var(--navy-2); border:1px solid var(--line-on-dark); }
.card-dark h3{ color:var(--white); }
.card-dark p{ color:var(--muted-on-dark); }
.card-dark:hover{ border-color:var(--gold); }

.icon-card{ padding:24px; border:1px solid var(--line-on-light); border-radius:var(--radius-m); transition:border-color .35s var(--ease-smooth), transform .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth); }
.icon-card:hover{ border-color:var(--steel); transform:translateY(-2px); box-shadow:var(--shadow-card); }
.icon-card .glyph{
  width:34px; height:34px;
  border:1px solid var(--line-on-light);
  border-radius:2px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
  color:var(--steel);
  font-size:12.5px;
  font-weight:600;
}
.icon-card h3{ font-size:15.5px; margin-bottom:4px; }
.icon-card p{ font-size:14px; color:var(--muted); line-height:1.65; }

.check-list li{
  display:flex;
  gap:12px;
  padding:11px 0;
  border-bottom:1px solid var(--line-on-light);
  font-size:15px;
  color:var(--ink);
}
.section-navy .check-list li{ border-color:var(--line-on-dark); color:var(--mist); }
.check-list li:last-child{ border-bottom:none; }
.check-list li::before{ content:""; flex:none; width:5px; height:5px; margin-top:8px; background:var(--steel); }

.svc-block{ border:1px solid var(--line-on-light); border-radius:var(--radius-m); padding:28px 26px; background:var(--white); transition:border-color .35s var(--ease-smooth), transform .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth); }
.svc-block:hover{ border-color:var(--steel); transform:translateY(-2px); box-shadow:var(--shadow-card); }
.svc-block h3{ font-size:16.5px; padding-bottom:15px; border-bottom:1px solid var(--line-on-light); margin-bottom:4px; }

/* ==========================================================================
   Workflow (crew manning 12 step)
   ========================================================================== */
.workflow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.workflow-step{
  background:var(--white);
  border:1px solid var(--line-on-light);
  border-radius:var(--radius-m);
  padding:26px 22px;
  transition:border-color .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth), transform .35s var(--ease-smooth);
}
.workflow-step:hover{ border-color:var(--steel); box-shadow:var(--shadow-card); transform:translateY(-3px); }
.workflow-step .num{ font-size:12px; color:var(--muted); font-weight:600; }
.workflow-step h4{ font-family:var(--ff-display); font-size:15.5px; color:var(--navy); margin:10px 0 8px; }
.workflow-step p{ font-size:13.5px; color:var(--muted); line-height:1.6; }
@media (max-width:980px){ .workflow{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .workflow{ grid-template-columns:1fr;} }

/* ==========================================================================
   Stats / counters
   ========================================================================== */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.stat{
  padding:32px 26px;
  border:1px solid var(--line-on-light);
  border-radius:var(--radius-m);
  background:var(--white);
  transition:border-color .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth), transform .35s var(--ease-smooth);
}
.stat:hover{ border-color:var(--steel); box-shadow:var(--shadow-card); transform:translateY(-3px); }
.stat .num{ font-family:var(--ff-display); font-weight:800; font-size:clamp(24px,2.8vw,32px); color:var(--navy); display:block; }
.stat .cap{ margin-top:8px; font-size:13.5px; color:var(--muted); line-height:1.5; }
.section-navy .stat{ border-color:var(--line-on-dark); background:rgba(255,255,255,0.03); }
.section-navy .stat:hover{ border-color:var(--gold); }
.section-navy .stat .num{ color:var(--white); }
.section-navy .stat .cap{ color:var(--muted-on-dark); }
@media (max-width:760px){ .stats{ grid-template-columns:repeat(2,1fr);} }

/* ==========================================================================
   Tables
   ========================================================================== */
.table-wrap{ overflow-x:auto; border:1px solid var(--line-on-light); border-radius:var(--radius-m); }
table{ width:100%; border-collapse:collapse; min-width:640px; }
thead th{
  text-align:left;
  font-size:12px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--muted);
  padding:16px 22px;
  background:var(--off-white);
  border-bottom:1px solid var(--line-on-light);
  font-weight:600;
}
thead th.hl{ color:var(--navy); }
tbody td{ padding:17px 22px; border-bottom:1px solid var(--line-on-light); font-size:14.5px; vertical-align:top; }
tbody tr:last-child td{ border-bottom:none; }
tbody td.row-label{ font-weight:700; color:var(--navy); font-family:var(--ff-display); font-size:14.5px; white-space:nowrap; }
tbody td.hl{ color:var(--ink); background:rgba(200,164,93,0.06); font-weight:500; }
tbody td.dim{ color:var(--muted); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-item{ border-bottom:1px solid var(--line-on-light); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:23px 4px; background:none; border:none; text-align:left;
  font-family:var(--ff-display); font-weight:700; font-size:16px; color:var(--navy);
}
.faq-q .plus{ color:var(--steel); font-size:18px; flex:none; transition:transform .25s ease; font-weight:400; }
.faq-item.is-open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a-inner{ padding:0 4px 23px; color:var(--muted); font-size:15px; line-height:1.75; max-width:70ch; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{ background:var(--navy); color:var(--white); padding:72px 0; }
.cta-band-grid{ display:flex; align-items:center; justify-content:space-between; gap:36px; flex-wrap:wrap; }
.cta-band h2{ color:var(--white); font-size:clamp(23px,2.8vw,30px); max-width:26ch; }
.cta-band p{ margin-top:10px; color:var(--mist); max-width:52ch; }
.cta-band-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:12.5px; font-weight:600; color:var(--navy); letter-spacing:0.02em; }
.field input, .field select, .field textarea{
  padding:13px 14px; border:1px solid var(--line-on-light); border-radius:var(--radius-s);
  background:var(--off-white); color:var(--ink); font-size:14.5px;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--steel); background:var(--white); }
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:12.5px; color:var(--muted); margin-top:6px; }
.form-success{
  display:none; border:1px solid rgba(200,164,93,0.4); background:rgba(200,164,93,0.08);
  padding:18px 20px; border-radius:var(--radius-s); font-size:14.5px; color:var(--navy); margin-bottom:20px;
}
.form-success.is-visible{ display:block; }

.contact-panel{ background:var(--navy); color:var(--white); border-radius:var(--radius-m); padding:36px; }
.contact-panel .panel-row .value a:hover{ color:var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--navy); color:var(--mist); padding:76px 0 0; }
.footer-top{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; padding-bottom:52px; border-bottom:1px solid var(--line-on-dark); }
@media (max-width:860px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } }
.footer-brand p{ margin-top:16px; color:var(--muted-on-dark); font-size:14px; line-height:1.7; max-width:34ch; }
.footer-col h4{ font-family:var(--ff-display); font-weight:700; font-size:13px; color:var(--white); margin-bottom:18px; }
.footer-col a, .footer-col li{ display:block; }
.footer-col a{ color:var(--muted-on-dark); font-size:14.5px; padding:7px 0; }
.footer-col a:hover{ color:var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; padding:24px 0; font-size:13px; color:var(--muted-on-dark); }
.footer-bottom a{ color:var(--muted-on-dark); margin-left:18px; }
.footer-bottom a:hover{ color:var(--gold); }

/* ==========================================================================
   Misc
   ========================================================================== */
.divider{ height:1px; background:var(--line-on-light); border:none; margin:0; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; gap:34px; } }
.tag-row{ display:flex; flex-wrap:wrap; gap:9px; margin-top:18px; }
.tag{ font-size:13px; border:1px solid var(--line-on-light); padding:8px 12px; border-radius:2px; color:var(--steel); }
.section-navy .tag{ border-color:var(--line-on-dark); color:var(--mist); }

.map-frame{ border:1px solid var(--line-on-light); border-radius:var(--radius-m); overflow:hidden; background:var(--navy); aspect-ratio:16/9; position:relative; }
.map-frame svg{ width:100%; height:100%; display:block; }
.map-caption{ position:absolute; bottom:0; left:0; right:0; padding:16px 20px; background:linear-gradient(0deg, rgba(7,26,45,0.9), transparent); font-size:12px; color:var(--muted-on-dark); }

.photo-frame{
  border-radius:var(--radius-m);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  aspect-ratio:4/3;
}
.photo-frame img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s var(--ease-smooth);
}
.photo-frame:hover img{ transform:scale(1.04); }
.photo-frame.wide{ aspect-ratio:16/9; }
.photo-caption{
  margin-top:12px;
  font-size:12.5px;
  color:var(--muted);
}
.section-navy .photo-caption{ color:var(--muted-on-dark); }

/* ==========================================================================
   Scroll reveal — a gentle fade + rise applied to cards and section heads
   so content settles into place instead of appearing abruptly.
   ========================================================================== */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
}
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}
