/* ==========================================================================
   KURIJARA Barbados Marine Services
   Design system + site styles
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-900: #061726;
  --navy-800: #0a2338;
  --navy-700: #0c2b47;
  --navy-600: #123c61;
  --blue-600: #1173a8;
  --blue-500: #1b7fb8;
  --cyan-400: #3fb9e8;
  --gold-500: #f7b733;
  --gold-600: #e09612;
  --gold-100: #fff3d8;

  --ink: #0f2333;
  --body: #46596b;
  --muted: #6b7f90;
  --line: #dde5ec;
  --line-soft: #eaf0f5;
  --surface: #ffffff;
  --surface-alt: #f4f8fb;
  --surface-deep: #eaf1f7;

  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;
  --shadow-s: 0 1px 2px rgba(12, 43, 71, .06), 0 2px 8px rgba(12, 43, 71, .05);
  --shadow: 0 4px 10px rgba(12, 43, 71, .06), 0 14px 40px rgba(12, 43, 71, .09);
  --shadow-l: 0 20px 60px rgba(6, 23, 38, .18);

  --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --gutter: 24px;
}

/* --------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .55em;
  font-weight: 600;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.35rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); }
h3 { font-size: clamp(1.16rem, 1.04rem + .45vw, 1.4rem); }
h4 { font-size: 1.04rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-700); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 820px; }
.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: var(--surface-alt); }
.section--deep { background: var(--navy-700); color: #cfe0ec; }
.section--deep h2, .section--deep h3 { color: #fff; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-600); margin: 0 0 .85rem;
}
.section--deep .eyebrow { color: var(--gold-500); }
.lead { font-size: 1.115rem; color: var(--body); }
.section--deep .lead { color: #b9d1e2; }
.center { text-align: center; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display); font-weight: 600; font-size: .96rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none; line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 6px 18px rgba(224, 150, 18, .28); }
.btn-primary:hover { background: var(--gold-600); color: var(--navy-900); }
.btn-dark { background: var(--navy-700); color: #fff; }
.btn-dark:hover { background: var(--navy-600); color: #fff; }
.btn-ghost { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn-wa { background: #1faa53; color: #fff; }
.btn-wa:hover { background: #179144; color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------- header */
.topbar {
  background: var(--navy-900); color: #9fbdd3;
  font-size: .82rem; letter-spacing: .02em;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; justify-content: space-between; padding-block: 8px; }
.topbar a { color: #cfe2f0; }
.topbar ul { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 0; padding: 0; }
.topbar li { margin: 0; display: flex; align-items: center; gap: .45em; }
.topbar svg { width: 14px; height: 14px; opacity: .8; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  /* NB: no backdrop-filter here — it would create a containing block and break
     the fixed-position mobile nav panel. */
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.brand img { height: 46px; width: auto; }
.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 9px 11px; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav li { margin: 0; position: relative; }
.main-nav > ul > li > a {
  display: block; padding: 10px 13px; border-radius: 9px;
  font-family: var(--font-display); font-weight: 500; font-size: .93rem; color: var(--ink);
}
.main-nav > ul > li > a:hover { background: var(--surface-alt); text-decoration: none; color: var(--blue-600); }
.main-nav a[aria-current="page"] { color: var(--blue-600); background: var(--surface-alt); }
.has-sub > a::after {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .55;
}
.submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 286px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px; display: none; flex-direction: column; gap: 2px;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: flex; }
.submenu a {
  display: block; padding: 9px 12px; border-radius: 8px; font-size: .92rem; color: var(--ink);
  font-family: var(--font-body);
}
.submenu a:hover { background: var(--surface-alt); color: var(--blue-600); text-decoration: none; }
.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .btn { padding: 11px 20px; font-size: .9rem; }

@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; }
  .brand img { height: 40px; }
  .header-cta .btn-outline { display: none; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw);
    background: #fff; border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .25s ease;
    padding: 84px 20px 40px; overflow-y: auto; box-shadow: var(--shadow-l);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav > ul > li > a { padding: 12px 14px; font-size: 1rem; }
  .has-sub > a::after { float: right; margin-top: 8px; }
  .submenu {
    position: static; display: flex; box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 2px 0 8px 14px; padding: 0 0 0 6px; min-width: 0;
  }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(6, 23, 38, .45); z-index: 55;
    opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
  .main-nav { z-index: 70; }
  .nav-close {
    display: inline-flex; position: absolute; top: 20px; right: 20px;
    background: none; border: 1.5px solid var(--line); border-radius: 10px;
    padding: 8px; cursor: pointer; color: var(--ink);
  }
  .nav-close svg { width: 20px; height: 20px; }
}
.nav-close { display: none; }

/* --------------------------------------------------------------- hero */
.hero {
  position: relative; background: linear-gradient(155deg, #123c61 0%, var(--navy-700) 45%, var(--navy-900) 100%);
  color: #c7dcea; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 62c180 34 340-32 520-22s280 54 470 34 300-56 450-40v56H0z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
  pointer-events: none;
}
.hero--alt::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 62c180 34 340-32 520-22s280 54 470 34 300-56 450-40v56H0z' fill='%23f4f8fb'/%3E%3C/svg%3E"); }
.hero-glow {
  position: absolute; width: 720px; height: 720px; right: -180px; top: -280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 185, 232, .22), transparent 62%); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; padding-top: clamp(52px, 7vw, 88px); padding-bottom: clamp(96px, 11vw, 148px); }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero p { font-size: 1.13rem; max-width: 60ch; color: #b9d3e5; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 34px; } }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: .5em;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  color: #dcecf7; border-radius: 999px; padding: 7px 15px;
  font-size: .8rem; font-family: var(--font-display); font-weight: 500; letter-spacing: .02em;
}
.pill svg { width: 15px; height: 15px; color: var(--gold-500); }

.hero-card {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-l); padding: 26px; backdrop-filter: blur(6px);
}
.hero-card h2 { font-size: 1.15rem; color: #fff; margin-bottom: 6px; }
.hero-card p { font-size: .95rem; margin-bottom: 18px; }
.hero-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.hero-card li { display: flex; gap: 10px; font-size: .93rem; color: #cfe2f0; align-items: flex-start; }
.hero-card li { margin-bottom: .55em; }

/* page hero (interior) */
.page-hero { background: linear-gradient(150deg, #123c61, var(--navy-700) 55%, var(--navy-900)); color: #b9d3e5; position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(74px, 8vw, 104px); }
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { max-width: 62ch; font-size: 1.08rem; margin-bottom: 0; }
/* .lead carries a dark body colour for light sections — it must be overridden
   on the dark hero or the intro paragraph is unreadable (fails AA contrast). */
.page-hero .lead { color: #eef6fc; }
.page-hero::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 64px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0 44c200 24 380-20 620-12s360 34 560 18 180-24 260-18v36H0z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
}
.page-hero--alt::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0 44c200 24 380-20 620-12s360 34 560 18 180-24 260-18v36H0z' fill='%23f4f8fb'/%3E%3C/svg%3E"); }

.crumbs { font-size: .82rem; color: #b7d2e6; margin-bottom: 14px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li { margin: 0; display: flex; gap: 8px; align-items: center; }
.crumbs li + li::before { content: "/"; opacity: .5; }
.crumbs a { color: #dbeaf5; }

/* --------------------------------------------------------------- cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-s);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column;
}
a.card { color: inherit; }
a.card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c4d8e6; }
.card h3 { margin-bottom: .4em; }
.card p { font-size: .97rem; margin-bottom: 1em; }
.card p:last-child { margin-bottom: 0; }
.card .more { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--blue-600); display: inline-flex; align-items: center; gap: .4em; }
a.card:hover .more { gap: .7em; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, #12456e, var(--navy-700)); margin-bottom: 18px; flex: none;
}
.icon-badge svg { width: 26px; height: 26px; color: var(--gold-500); }

.tick-list { list-style: none; padding: 0; }
.tick-list li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: .7em; }
.tick-list li > svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--gold-600); }
.icon-list li::before { display: none; }
.section--deep .tick-list li > svg, .hero-card .tick-list li > svg { color: var(--gold-500); }
.tick-list li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%;
  background: var(--gold-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b97c05' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--deep .tick-list li > svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--gold-600); }
.icon-list li::before { display: none; }
.section--deep .tick-list li > svg, .hero-card .tick-list li > svg { color: var(--gold-500); }
.tick-list li::before { background-color: rgba(247, 183, 51, .18); }

.stat-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--navy-700); line-height: 1.1; }
.stat .lbl { font-size: .85rem; color: var(--muted); }
.section--deep .stat { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); }
.section--deep .stat .num { color: var(--gold-500); }
.section--deep .stat .lbl { color: #a9c6da; }

.callout {
  border-left: 4px solid var(--gold-500); background: var(--surface-alt);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout h3 { font-size: 1.05rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius-l); box-shadow: var(--shadow); }

.media-frame { position: relative; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-l); }
.media-frame img { width: 100%; }
.media-frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 22px 18px;
  background: linear-gradient(transparent, rgba(6, 23, 38, .88));
  color: #fff; font-size: .88rem; font-family: var(--font-display);
}

/* steps */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps > li {
  counter-increment: step; position: relative; padding-left: 62px; margin-bottom: 26px;
}
.steps > li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-700); color: var(--gold-500);
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.steps h3 { margin-bottom: .25em; }
.steps p { margin-bottom: 0; font-size: .97rem; }

/* faq */
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 4px 22px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 600; color: var(--ink);
  padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; color: var(--blue-600); font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > *:not(summary) { padding-bottom: 6px; }

/* table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; font-size: .95rem; background: #fff; }
th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line-soft); }
th { font-family: var(--font-display); font-weight: 600; color: var(--ink); background: var(--surface-alt); font-size: .88rem; }
tbody tr:last-child td { border-bottom: 0; }

/* cta band */
.cta-band {
  background: linear-gradient(140deg, var(--navy-600), var(--navy-800));
  color: #c3daea; border-radius: var(--radius-l); padding: clamp(32px, 4vw, 52px);
  display: grid; grid-template-columns: 1.4fr auto; gap: 30px; align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { margin-bottom: 0; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-family: var(--font-display); font-weight: 500; font-size: .88rem; color: var(--ink); }
input, select, textarea {
  font: inherit; font-size: .97rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); outline: none; box-shadow: 0 0 0 3px rgba(27, 127, 184, .16); }
textarea { min-height: 140px; resize: vertical; }
.hint { font-size: .8rem; color: var(--muted); }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--navy-900); color: #93b2c8; font-size: .93rem; padding-top: 60px; }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #bcd5e6; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5em; display: flex; gap: .6em; align-items: flex-start; }
.site-footer li svg { width: 16px; height: 16px; flex: none; margin-top: 5px; opacity: .75; }
.site-footer .footer-brand p { margin-bottom: .9em; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 46px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 62px; margin-bottom: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0 96px;
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: .84rem; color: #7fa0b8;
}
@media (min-width: 741px) { .footer-bottom { padding-bottom: 24px; } }

/* mobile sticky action bar */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; grid-template-columns: 1fr 1fr;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(6, 23, 38, .12);
}
.action-bar a {
  display: flex; align-items: center; justify-content: center; gap: .5em;
  padding: 15px 8px; font-family: var(--font-display); font-weight: 600; font-size: .93rem;
  color: var(--navy-700);
}
.action-bar a:hover { text-decoration: none; }
.action-bar a + a { border-left: 1px solid var(--line); color: #1faa53; }
.action-bar svg { width: 18px; height: 18px; }
@media (max-width: 740px) { .action-bar { display: grid; } }

.note-dev {
  background: #fff8e6; border: 1px dashed #e0b64f; border-radius: var(--radius);
  padding: 18px 22px; font-size: .93rem; color: #6b5312;
}

/* prose helper for long-form pages */
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose > *:first-child { margin-top: 0; }

@media (max-width: 460px) {
  .brand img { height: 34px; }
  .header-cta .btn { padding: 10px 15px; font-size: .84rem; }
  .topbar { font-size: .78rem; }
}

/* --------------------------------------------------------- work gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.shot {
  margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--navy-800);
  box-shadow: var(--shadow-s); position: relative;
}
.shot img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.shot figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(6, 23, 38, .9));
  color: #fff; font-size: .84rem; font-family: var(--font-display); font-weight: 500; line-height: 1.35;
}
.shot-inline {
  border-radius: var(--radius); overflow: hidden; margin: 0 0 1.4em; box-shadow: var(--shadow-s);
  position: relative; background: var(--navy-800);
}
.shot-inline img { width: 100%; height: auto; display: block; }
.shot-inline figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(6, 23, 38, .9));
  color: #fff; font-size: .85rem; font-family: var(--font-display); font-weight: 500;
}
