/* ══════════════════════════════════════════════════════════════
   CREWTRIPS — THE SHARED DESIGN LANGUAGE
   "Things the crew made, laid out in the sun."

   These tokens are DELIBERATELY NOT on :root.

   styles.css already defines tokens under the same names (--ink, --rust)
   and paints the shared header and footer with them. home.css loads after
   styles.css, so declaring these globally silently repainted that shared
   chrome on this page and nowhere else — the footer inherited this file's
   --ink (#173049) instead of the site's (#3a2e22), and the header's
   .btn-coral was dragged from coral to this file's rust.

   So they are scoped to the home page's own container. Inside .ct-root this
   is the design language; outside it, the shared chrome reads styles.css and
   renders exactly as it does on every other page.

   This is a containment patch, not the cure. The site has two competing token
   systems and the real fix is to promote this one into styles.css as the
   single source of truth — tracked separately; do not attempt it from here.
   ══════════════════════════════════════════════════════════════ */
.ct-root{
  --ink:#173049;          /* printed text — the darkest thing on the site */
  --ink-soft:#42586a;     /* secondary ink */
  --paper:#fcf6ec;        /* bright cream paper */
  --manila:#ecdcba;       /* aged paper / a docket */
  --rust:#a8432a;         /* THE mark — the stamp, the primary action, "you are here". one per view. */
  --teal:#0b6e66;         /* the one quiet second accent — the home anchor, the signal. never competes with rust */
  --tape:#e4b93b;         /* masking tape / grease-pencil yellow */
  --teak:#8b5e3c;         /* varnished wood */
  /* sea & sky — low saturation, never carries readable text */
  --sky-hi:#8ec8ee; --sky-lo:#c9e7f7; --sea-hi:#93c1e1; --sea-lo:#5892c1;
}

/* The export declares `a{color:var(--rust)}` globally. Two changes, both load-bearing:
   1. Scoped to this page's root — unscoped it repaints the shared site header and
      footer links rust, blowing the one-rust-per-view rule on every viewport.
   2. Wrapped in :where() so it carries ZERO specificity. A plain `[data-ct-root] a`
      selector outranks a single class, so it would beat .ct-btn-rust and paint the
      hero button's own label rust ON rust — an invisible CTA. As a zero-specificity
      backstop it only ever colours a link that has no class of its own. */
[data-ct-root] :where(a){ color:var(--rust); text-decoration:none; }
[data-ct-root] :where(a:hover){ color:var(--ink); }

/* The header's .btn-coral used to be force-fed teal from here. That override only
   ever existed because the token block leaked onto :root and dragged the shared
   button into this page's rust. With the tokens scoped, the header reads
   styles.css again and is coral (#e8623f) exactly as on every other page — so the
   override is gone. The one-rust-per-view rule governs this page's rust (#a8432a),
   and the header button is no longer painted with it. */

/* ── THE TABLE: a sunlit sea, almost imperceptibly moving ───────────────── */

.ct-root{
  position:relative;
  min-height:100vh;
  overflow-x:hidden;
  background:linear-gradient(180deg,#8ec8ee,#7fb2d9 60%,#5f97c6);
  font-family:'Nunito Sans',system-ui,sans-serif;
}

.ct-sea{ position:fixed; inset:-7%; z-index:0; pointer-events:none; overflow:hidden; }
.ct-sea-water{
  position:absolute; inset:0;
  background:linear-gradient(180deg,#8ec8ee 0,#a9d7f2 20%,#c9e7f7 38%,#bcdbef 50%,#93c1e1 66%,#6fa8d2 84%,#5892c1 100%);
}
.ct-sun{
  position:absolute; top:-6%; left:5%;
  width:46vw; height:46vw; max-width:640px; max-height:640px;
  background:radial-gradient(circle at 34% 34%,rgba(255,247,216,.96),rgba(255,240,200,.32) 46%,transparent 70%);
}
.ct-cloud{ position:absolute; border-radius:40px; background:rgba(255,255,255,.6); filter:blur(12px); }
.ct-cloud-1{ top:11%; right:11%; width:min(24vw,260px); height:44px; }
.ct-cloud-2{ top:20%; left:8%; width:min(16vw,172px); height:32px; background:rgba(255,255,255,.44); filter:blur(9px); animation-delay:-15s; }
.ct-gull{ position:absolute; top:8.5%; left:43%; opacity:.5; }
.ct-horizon{ position:absolute; left:0; right:0; top:46%; height:2px; background:rgba(255,255,255,.36); }
.ct-headland{ position:absolute; left:-2%; top:calc(46% - 26px); opacity:.38; }
.ct-far-boat{ position:absolute; right:17%; top:calc(46% - 15px); opacity:.55; }
.ct-swell{
  position:absolute; left:0; right:0; top:56%; bottom:0;
  background:repeating-linear-gradient(180deg,rgba(255,255,255,.05) 0 1px,transparent 1px 18px);
}
.ct-glint{ position:absolute; height:2px; border-radius:2px; background:rgba(255,255,255,.4); }
.ct-glint-1{ left:14%; top:64%; width:120px; }
.ct-glint-2{ left:57%; top:72%; width:84px; background:rgba(255,255,255,.3); }
.ct-glint-3{ left:33%; top:81%; width:150px; background:rgba(255,255,255,.28); }

/* ── THE CONTENT, laid on the table ─────────────────────────────────────── */

.ct-main{
  position:relative; z-index:1;
  max-width:1120px; margin:0 auto;
  padding:clamp(24px,5vw,64px) clamp(16px,4vw,44px) clamp(60px,8vw,110px);
}
.ct-section{ margin-top:clamp(30px,5vw,60px); }

/* the cards — things laid on a table, each at its own angle */
.ct-card{
  position:relative;
  border-radius:4px;
  overflow:hidden;
}
.ct-card-paper{
  background:var(--paper);
  border:1px solid #b6c6d2;
  box-shadow:0 26px 50px -30px rgba(15,35,60,.55),0 2px 0 rgba(255,255,255,.55) inset;
}
.ct-card-manila{
  background:linear-gradient(158deg,#fcf7ec,#f3ead6 100%);
  border:1px solid rgba(90,66,30,.24);
  box-shadow:0 26px 50px -30px rgba(15,35,60,.55),0 2px 0 rgba(255,255,255,.5) inset;
}
.ct-grain{ position:absolute; inset:0; pointer-events:none; }
.ct-grain-rule{ background-image:repeating-linear-gradient(0deg,rgba(70,100,125,.06) 0 1px,transparent 1px 28px); }
.ct-grain-dot{ background-image:radial-gradient(rgba(90,66,30,.06) 1px,transparent 1px); background-size:22px 22px; }
.ct-inner{ position:relative; }

/* shared type */
.ct-kicker{
  font:700 clamp(10px,1.2vw,12px)/1.3 'Oswald',sans-serif;
  letter-spacing:.24em; text-transform:uppercase; color:var(--ink-soft);
  margin-bottom:9px;
}
.ct-h2{
  font:700 clamp(28px,4.2vw,46px)/1.04 'Oswald',sans-serif;
  letter-spacing:.01em; text-transform:uppercase; color:var(--ink); margin:0;
}
.ct-lead{ font:400 clamp(16px,1.8vw,18.5px)/1.68 'Nunito Sans',sans-serif; color:var(--ink); margin:0 0 16px; text-wrap:pretty; }
.ct-lead:last-child{ margin-bottom:0; }
.ct-hand{ font:600 clamp(19px,2.4vw,25px)/1.35 'Caveat',cursive; color:var(--teak); margin:0; }
.ct-rule{ display:flex; align-items:center; gap:12px; margin:16px 0 20px; }
.ct-rule i{ height:3px; flex:0 0 52px; background:var(--teal); }
.ct-rule b{ height:1.5px; flex:1; background:#c9d5dd; }

/* the buttons. rust is the primary action and NOTHING else. */
.ct-btn{
  display:inline-flex; align-items:center; gap:11px;
  font:800 clamp(13px,1.5vw,15px)/1 'Nunito Sans',sans-serif;
  letter-spacing:.05em; text-transform:uppercase;
  border-radius:3px; padding:17px 26px;
  min-height:44px;
}
.ct-btn-rust{
  color:var(--paper); background:var(--rust);
  border:2px solid var(--ink); box-shadow:4px 4px 0 var(--ink);
}
.ct-btn-rust:hover{ color:var(--paper); }
.ct-btn-outline{
  font-size:13px;
  color:var(--ink); border:2px solid var(--ink); border-radius:3px;
  padding:13px 22px; background:rgba(255,255,255,.4);
}
.ct-link{
  display:inline-flex; align-items:center; gap:8px;
  font:700 15px/1 'Nunito Sans',sans-serif; color:var(--ink);
  border-bottom:2px solid rgba(23,48,73,.35);
  padding-bottom:3px; min-height:44px;
}
.ct-link-sm{ font-size:14px; border-bottom-color:rgba(23,48,73,.3); }

/* ── 1 · HERO ───────────────────────────────────────────────────────────── */

.ct-hero{
  min-height:min(88vh,760px);
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(20px,4vw,40px) 0;
}
.ct-nameboard-wrap{ position:relative; width:100%; max-width:840px; }
.ct-nameboard{
  position:relative;
  background:linear-gradient(158deg,#fcf7ec 0,#f4ebd8 60%,#efe3c8 100%);
  border:1px solid rgba(90,66,30,.22);
  border-radius:4px;
  box-shadow:0 3px 5px -1px rgba(20,45,70,.28),26px 34px 60px -30px rgba(15,35,60,.6),0 2px 0 rgba(255,255,255,.5) inset;
  padding:clamp(26px,4.4vw,52px) clamp(24px,4.6vw,56px) clamp(28px,4.4vw,50px);
  transform:rotate(-.7deg);
  overflow:hidden;
}
.ct-grain-noise{
  background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNjAnIGhlaWdodD0nMTYwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44JyBudW1PY3RhdmVzPScyJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI24pJy8+PC9zdmc+");
  opacity:.05; mix-blend-mode:multiply;
}
.ct-tape{ position:absolute; background:rgba(228,185,59,.62); box-shadow:0 2px 5px rgba(0,0,0,.08); }
.ct-tape-board{ top:-12px; left:34px; width:120px; height:28px; transform:rotate(-4deg); }

.ct-stampline{ display:inline-flex; align-items:center; gap:9px; margin-bottom:clamp(16px,2.4vw,22px); }
.ct-stampline span{
  font:700 clamp(9px,1.1vw,11px)/1 'Oswald',sans-serif;
  letter-spacing:.24em; text-transform:uppercase; color:var(--ink);
}
.ct-stampline .ct-soft{ color:var(--ink-soft); }
.ct-stampline .ct-dot{ width:5px; height:5px; border-radius:50%; background:var(--teal); }

.ct-h1{ margin:0; color:var(--ink); }
.ct-h1-small{
  display:block;
  font:600 clamp(30px,7vw,74px)/.9 'Oswald',sans-serif;
  letter-spacing:.005em; text-transform:uppercase; color:var(--ink-soft);
}
.ct-h1-big{
  display:block; position:relative; width:max-content; max-width:100%;
  font:700 clamp(58px,15.5vw,176px)/.82 'Oswald',sans-serif;
  letter-spacing:-.01em; text-transform:uppercase; color:var(--ink);
  margin-top:.04em;
}
.ct-h1-underline{ position:absolute; left:0; right:0; bottom:-.16em; width:100%; height:.2em; }

.ct-hero-lead{
  font:400 clamp(16px,2vw,21px)/1.6 'Nunito Sans',sans-serif;
  color:var(--ink); margin:clamp(24px,3vw,34px) 0 0; max-width:34ch; text-wrap:pretty;
}
.ct-hero-hand{ margin-top:12px; max-width:26ch; }
.ct-hero-actions{
  display:flex; align-items:center; gap:clamp(16px,2.4vw,26px);
  flex-wrap:wrap; margin-top:clamp(26px,3.4vw,36px);
}
.ct-flag{
  position:absolute; right:clamp(-6px,1vw,18px); top:-16px;
  transform:rotate(3deg);
  background:var(--teal); color:var(--paper);
  font:700 10px/1 'Oswald',sans-serif;
  letter-spacing:.16em; text-transform:uppercase;
  padding:8px 12px;
  box-shadow:3px 3px 0 rgba(15,35,60,.28);
}

/* ── 2 · WHAT THIS ACTUALLY IS ──────────────────────────────────────────── */

.ct-tilt-a{ transform:rotate(.35deg); padding:clamp(26px,4vw,50px) clamp(24px,4.4vw,54px); }
.ct-measure{ max-width:760px; }
.ct-h2-tight{ max-width:16ch; }
.ct-checks{ display:flex; flex-wrap:wrap; gap:14px 30px; margin-top:26px; }
.ct-check{ display:flex; align-items:center; gap:10px; }
.ct-check svg{ flex:none; }
.ct-check span{ font:700 15px/1.3 'Nunito Sans',sans-serif; color:var(--ink); }
.ct-hand-lg{ font:600 clamp(18px,2.2vw,23px)/1.35 'Caveat',cursive; color:var(--teak); margin:24px 0 0; }

/* ── 3 · THE BOAT ───────────────────────────────────────────────────────── */

.ct-tilt-b{ transform:rotate(-.4deg); padding:clamp(24px,3.6vw,44px) clamp(24px,4vw,50px) clamp(28px,4vw,44px); }
.ct-sheet-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap; }
.ct-h2-script{ font:700 clamp(48px,8vw,92px)/.82 'Caveat',cursive; color:var(--teal); margin:0; transform:rotate(-1.2deg); text-transform:none; letter-spacing:0; }
.ct-sheet-note{
  text-align:right;
  font:700 10px/1.5 'Oswald',sans-serif;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft);
  padding-top:6px;
}
.ct-sheet-note span{ color:#9a8867; }
.ct-drawing{ position:relative; margin:clamp(14px,2.2vw,22px) 0 6px; }
.ct-drawing svg{ display:block; max-height:340px; }
.ct-boat-copy{ font:400 clamp(15.5px,1.7vw,18px)/1.68 'Nunito Sans',sans-serif; color:var(--ink); margin:0; max-width:64ch; text-wrap:pretty; }

.ct-doors{ margin-top:24px; }
.ct-doors-label{
  font:700 9.5px/1 'Oswald',sans-serif;
  letter-spacing:.2em; text-transform:uppercase; color:#9a8867; margin-bottom:11px;
}
.ct-doors-row{ display:flex; flex-wrap:wrap; gap:10px; }
.ct-door{
  display:inline-flex; align-items:center; gap:8px;
  font:700 13px/1 'Nunito Sans',sans-serif; color:var(--ink);
  background:rgba(255,255,255,.55);
  border:1.5px solid #cbbb95; border-radius:3px;
  padding:11px 15px; min-height:44px;
}
.ct-door i{ width:7px; height:7px; background:var(--teal); }

/* ── 4 · THE CREW ───────────────────────────────────────────────────────── */

.ct-tilt-c{ transform:rotate(.4deg); padding:clamp(26px,4vw,48px) clamp(20px,4vw,50px) clamp(30px,4vw,46px); }
.ct-centre{ text-align:center; max-width:60ch; margin:0 auto; }
.ct-centre .ct-lead{ font-size:clamp(15px,1.7vw,17px); margin:14px 0 0; }
.ct-crew-row{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:flex-start;
  gap:clamp(20px,3vw,36px); margin-top:clamp(24px,3.4vw,38px);
}
.ct-portrait{ width:clamp(150px,20vw,196px); margin:0; position:relative; }
.ct-portrait:nth-child(1){ transform:rotate(-2.5deg); }
.ct-portrait:nth-child(2){ transform:rotate(2deg); }
.ct-portrait:nth-child(3){ transform:rotate(-1.6deg); }
.ct-portrait:nth-child(4){ transform:rotate(2.6deg); }
.ct-portrait-tape{
  position:absolute; top:-12px; left:50%;
  width:92px; height:24px; z-index:2;
  background:rgba(228,185,59,.62);
  box-shadow:0 2px 5px rgba(0,0,0,.08);
}
.ct-portrait:nth-child(1) .ct-portrait-tape{ transform:translateX(-50%) rotate(-4deg); }
.ct-portrait:nth-child(2) .ct-portrait-tape{ transform:translateX(-50%) rotate(5deg); background:rgba(231,183,163,.7); }
.ct-portrait:nth-child(3) .ct-portrait-tape{ transform:translateX(-50%) rotate(4deg); }
.ct-portrait:nth-child(4) .ct-portrait-tape{ transform:translateX(-50%) rotate(-5deg); background:rgba(231,183,163,.7); }
.ct-portrait-card{ background:#fff; padding:11px 11px 13px; box-shadow:0 16px 32px -18px rgba(15,35,60,.5); }
.ct-portrait-frame{
  position:relative; aspect-ratio:1/1.06;
  border:1px solid #d9e2e7; overflow:hidden;
  background:#eaf1f4;   /* holds the frame's shape before the portrait decodes */
}
/* the portraits are tall (450x800) and the frame is near-square, so they must crop.
   object-position is set per face inline — the crop is biased up the frame, or cover
   would centre on the torso and cut everyone off at the chin. */
.ct-portrait-frame img{
  display:block; width:100%; height:100%;
  object-fit:cover;
}
.ct-portrait figcaption{ text-align:center; margin-top:9px; }
.ct-portrait-name{ font:700 26px/1 'Caveat',cursive; color:var(--ink); }
.ct-portrait-role{
  font:700 9.5px/1.3 'Oswald',sans-serif;
  letter-spacing:.12em; text-transform:uppercase; color:var(--ink-soft); margin-top:3px;
}
.ct-portrait-role.is-skipper{ color:var(--teal); }
.ct-crew-close{ text-align:center; margin-top:clamp(22px,3vw,32px); }
.ct-crew-close .ct-hand{ margin:0 0 18px; }

/* ── 5 · WHERE SHE'S BEEN (the chart lives here; see home-chart.css) ─────── */

.ct-tilt-d{ transform:rotate(-.3deg); padding:clamp(24px,3.6vw,44px) clamp(22px,4vw,48px) clamp(28px,4vw,44px); }
.ct-chart-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:20px; flex-wrap:wrap; margin-bottom:clamp(14px,2vw,20px);
}
.ct-h2-wide{ font-size:clamp(28px,4.4vw,50px); line-height:1; max-width:14ch; }
.ct-tallies{ display:flex; gap:clamp(16px,2.4vw,30px); align-items:flex-end; }
.ct-tally{ text-align:center; }
.ct-tally-n{ font:700 clamp(30px,4.4vw,52px)/.85 'Caveat',cursive; color:var(--teal); }
.ct-tally-l{
  font:700 8.5px/1.2 'Oswald',sans-serif;
  letter-spacing:.12em; text-transform:uppercase; color:var(--ink-soft); margin-top:4px;
}
/* The chart itself is generated and styled in home-chart.css — this only frames it. */
.ct-chart-frame{ border:2px solid #cbbb95; border-radius:4px; overflow:hidden; }
.ct-chart-foot{
  display:flex; justify-content:space-between; align-items:center;
  gap:20px; flex-wrap:wrap; margin-top:20px;
}
.ct-chart-foot p{
  font:400 clamp(15px,1.7vw,17.5px)/1.6 'Nunito Sans',sans-serif;
  color:var(--ink); margin:0; max-width:52ch; text-wrap:pretty;
}
.ct-chart-foot .ct-btn-outline{ flex:none; }

/* ── 6 · NOBODY'S MAKING MONEY + THE LEDGER ─────────────────────────────── */

.ct-tilt-e{ transform:rotate(.3deg); padding:clamp(28px,4vw,52px) clamp(22px,4vw,50px) clamp(30px,4vw,48px); }
.ct-pin{
  position:absolute; top:16px; left:50%; transform:translateX(-50%);
  width:15px; height:15px; border-radius:50%;
  background:radial-gradient(circle at 38% 32%,#f0d488,#b8902f 62%,#8a6a29);
  box-shadow:0 3px 6px rgba(15,35,60,.4),0 0 0 2px rgba(255,255,255,.25) inset;
}
.ct-centre-wide{ text-align:center; max-width:62ch; margin:0 auto; }
/* .ct-h2-wide is a constrained-width block. text-align:center centres the text
   INSIDE that box, but with no auto side margins the box itself sits hard left in
   its parent — which is why "This is a non-profit" hung 105px to the left of centre.
   Scoped to the centring container on purpose: .ct-h2-wide is also used by
   "Twenty-seven years of wake", which is correctly left-aligned beside the chart. */
.ct-centre-wide > .ct-h2{ margin-inline:auto; }
.ct-centre-wide .ct-lead{ font-size:clamp(15.5px,1.8vw,18.5px); margin:14px 0 0; }

/* the running costs, tallied by hand on ruled paper — NOT a chart.
   The proportions are illustrative: four tally-mark groups, no percentages,
   because we do not have audited numbers and will not invent them. */
.ct-ledger{
  max-width:720px; margin:clamp(22px,3vw,30px) auto 0;
  position:relative;
  background:#fbf6ea;
  border:1px solid #d9cdb0; border-radius:3px;
  box-shadow:0 14px 28px -18px rgba(15,35,60,.42);
  overflow:hidden;
}
.ct-ledger-rules{
  position:absolute; inset:0; pointer-events:none;
  background-image:repeating-linear-gradient(180deg,transparent 0 33px,rgba(70,100,125,.13) 33px 34px);
}
.ct-ledger-margin{
  position:absolute; top:0; bottom:0; left:clamp(32px,5.5vw,52px);
  width:1.5px; background:rgba(176,106,84,.4); pointer-events:none;
}
.ct-ledger-body{
  position:relative;
  padding:clamp(16px,2.4vw,22px) clamp(18px,3vw,28px) clamp(18px,2.6vw,24px) clamp(46px,7vw,68px);
}
.ct-ledger-head{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
  border-bottom:2px solid var(--ink); padding-bottom:8px;
}
.ct-ledger-title{
  font:700 12px/1.2 'Oswald',sans-serif;
  letter-spacing:.14em; text-transform:uppercase; color:var(--ink);
}
.ct-ledger-note{ font:600 17px/1 'Caveat',cursive; color:#566573; }
.ct-ledger-intro{ font:600 clamp(16px,1.9vw,19px)/1.2 'Caveat',cursive; color:#566573; margin:9px 0 2px; }
.ct-ledger-row{
  display:flex; align-items:center; gap:10px 16px;
  padding:11px 0 10px;
  border-bottom:1px dashed #cbbd9c;
  flex-wrap:wrap;
}
.ct-ledger-row.is-last{ border-bottom:2px solid var(--ink); }
.ct-ledger-item{
  flex:0 0 auto; min-width:92px;
  font:700 clamp(15px,1.7vw,17px)/1.2 'Nunito Sans',sans-serif; color:var(--ink);
}
.ct-ledger-tally{ flex:0 0 auto; display:inline-flex; }
.ct-ledger-margin-note{ flex:1 1 200px; font:600 16px/1.25 'Caveat',cursive; color:#566573; }
.ct-ledger-total{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:10px; flex-wrap:wrap; padding-top:11px;
}
.ct-ledger-total-l{
  font:700 11px/1.2 'Oswald',sans-serif;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft);
}
.ct-ledger-total-n{ font:700 clamp(24px,3.2vw,32px)/.9 'Caveat',cursive; color:var(--ink); }
.ct-ledger-caveat{ font:600 16px/1.3 'Caveat',cursive; color:#566573; text-align:right; margin-top:2px; }

.ct-fee{
  max-width:720px; margin:15px auto 0;
  display:flex; align-items:flex-start; gap:14px 22px; flex-wrap:wrap;
}
.ct-fee p{
  flex:1 1 320px;
  font:400 clamp(14px,1.6vw,15.5px)/1.65 'Nunito Sans',sans-serif;
  color:var(--ink); margin:0;
}
.ct-fee strong{ font-weight:800; }
.ct-fee .ct-link{ flex:0 0 auto; font-size:13px; }

.ct-kit{
  max-width:720px; margin:clamp(18px,2.4vw,24px) auto 0;
  position:relative;
  background:linear-gradient(155deg,#fcf7ec,#f3ead6);
  border:2px solid var(--ink);
  box-shadow:5px 6px 0 rgba(15,35,60,.2);
  padding:clamp(18px,2.4vw,26px) clamp(18px,2.6vw,28px);
  transform:rotate(-.5deg);
}
.ct-tape-kit{ top:-11px; left:26px; width:80px; height:22px; transform:rotate(-3deg); background:rgba(228,185,59,.6); }
.ct-kit-title{ font:700 clamp(20px,2.4vw,25px)/1.15 'Caveat',cursive; color:var(--teak); margin-bottom:6px; }
.ct-kit p{
  font:400 clamp(14px,1.6vw,15.5px)/1.65 'Nunito Sans',sans-serif;
  color:var(--ink); margin:0 0 16px; max-width:58ch;
}
.ct-kit-actions{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
/* Demoted from rust to teal: this shares a viewport with the close CTA, and
   rust is one-per-view. Teal is the site's second voice — see the token block. */
.ct-btn-teal{
  display:inline-flex; align-items:center; gap:9px;
  font:800 12px/1 'Nunito Sans',sans-serif;
  letter-spacing:.05em; text-transform:uppercase;
  color:var(--paper); background:var(--teal);
  border:2px solid var(--ink); border-radius:3px;
  padding:13px 20px; box-shadow:3px 3px 0 var(--ink);
  min-height:44px;
}
.ct-btn-teal:hover{ color:var(--paper); }
.ct-kit-actions span{
  font:400 13px/1.5 'Nunito Sans',sans-serif; color:var(--ink-soft); max-width:34ch;
}

/* ── 7 · COME WITH US ───────────────────────────────────────────────────── */

.ct-close{
  position:relative;
  background:var(--teal);
  background-image:radial-gradient(rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:18px 18px;
  border-radius:4px;
  box-shadow:0 30px 56px -28px rgba(15,35,60,.6);
  padding:clamp(30px,4.6vw,56px) clamp(24px,4vw,52px);
  transform:rotate(-.4deg);
  overflow:hidden;
  text-align:center;
}
.ct-tape-close{
  top:-15px; left:50%; transform:translateX(-50%) rotate(-2deg);
  width:160px; height:30px; background:rgba(228,185,59,.72);
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}
.ct-stamp{ display:inline-block; transform:rotate(-7deg); margin-bottom:6px; }
.ct-stamp-inner{ border:3px solid #ffd9a0; border-radius:7px; padding:7px 16px 5px; text-align:center; color:#ffd9a0; }
.ct-stamp-top{ font:700 8px/1 'Oswald',sans-serif; letter-spacing:.22em; text-transform:uppercase; }
.ct-stamp-bar{ height:2px; background:#ffd9a0; width:70%; margin:4px auto; }
.ct-stamp-big{ font:700 22px/.95 'Oswald',sans-serif; letter-spacing:.06em; text-transform:uppercase; }
.ct-close-h2{
  font:700 clamp(30px,5vw,52px)/1.04 'Caveat',cursive;
  color:var(--paper); margin:8px auto 0; max-width:20ch;
  text-transform:none; letter-spacing:0; text-wrap:balance;
}
.ct-close-lead{
  font:400 clamp(15px,1.8vw,18px)/1.65 'Nunito Sans',sans-serif;
  color:#e6f3ef; margin:14px auto 0; max-width:52ch; text-wrap:pretty;
}
.ct-close-actions{
  display:flex; align-items:center; justify-content:center;
  gap:clamp(16px,2.4vw,24px); flex-wrap:wrap; margin-top:clamp(24px,3.2vw,34px);
}
.ct-close .ct-btn-rust{ border-color:#06403b; box-shadow:4px 4px 0 #06403b; padding:17px 28px; }
.ct-close-link{
  display:inline-flex; align-items:center; gap:8px;
  font:700 15px/1 'Nunito Sans',sans-serif; color:var(--paper);
  border-bottom:2px solid rgba(252,246,236,.5); padding-bottom:3px; min-height:44px;
}
.ct-close-link:hover{ color:var(--paper); }
.ct-testi{
  margin-top:clamp(26px,3.4vw,36px);
  padding-top:clamp(18px,2.4vw,24px);
  border-top:1.5px dashed rgba(252,246,236,.28);
}
.ct-testi a{
  display:inline-flex; align-items:center; min-height:44px;   /* tap target */
  font:600 clamp(17px,2vw,21px)/1.35 'Caveat',cursive; color:#ffe6ad;
}
.ct-testi a:hover{ color:var(--paper); }

.ct-signoff{ text-align:center; margin-top:clamp(26px,3.4vw,40px); }
.ct-signoff-name{ font:700 clamp(24px,3.4vw,34px)/1 'Caveat',cursive; color:var(--ink); }
.ct-signoff-meta{ font:600 13px/1.5 'Nunito Sans',sans-serif; color:var(--ink-soft); margin-top:4px; }
.ct-signoff-tag{ font:600 clamp(15px,1.8vw,18px)/1.4 'Caveat',cursive; color:var(--teak); margin-top:6px; }

/* ── MOTION PERSONALITY ─────────────────────────────────────────────────────
   unhurried, physical, everything settles. the whole site sways half a degree. */

@keyframes ctSway{0%{transform:rotate(-.22deg) translateY(1px)}50%{transform:rotate(.22deg) translateY(-2px)}100%{transform:rotate(-.22deg) translateY(1px)}}
@keyframes ctCloud{0%{transform:translateX(-26px)}100%{transform:translateX(48px)}}
@keyframes ctGull{0%{transform:translateX(-12px)}100%{transform:translateX(64px)}}

[data-ct-root][data-afloat="on"] [data-sway]{ animation:ctSway 9s ease-in-out infinite; transform-origin:50% 46%; }
[data-ct-root][data-afloat="on"] [data-drift]{ animation:ctCloud 34s ease-in-out infinite alternate; }
[data-ct-root][data-afloat="on"] [data-gull]{ animation:ctGull 42s linear infinite alternate; }

/* reveal-on-scroll — home.js adds .is-in. No JS, no motion: content is simply there. */
[data-reveal]{ opacity:1; }
.js [data-reveal]{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-in{ opacity:1; transform:none; }

/* ── TAPED PRINTS: the five photographs ─────────────────────────────────────
   The only photographs on the page — everything else here is drawn. They are
   amateur family snapshots, and that is the feature: the taped-print framing
   reads them as authentic in a way polished photography would not. So they get
   the same paper treatment as the crew portraits — a white print, a strip of
   tape, a slight tilt — and nothing else. No filters, no glossy hero crop.
   Note there is no rust anywhere in here: the tape carries the warmth, so a
   photograph never spends the page's one rust mark. */

.ct-photo{ position:relative; margin:0; }
.ct-photo-card{
  position:relative; background:#fff;
  padding:10px 10px 12px;
  box-shadow:0 18px 36px -20px rgba(15,35,60,.52);
}
.ct-photo img{
  display:block; width:100%; height:auto;
  border:1px solid #d9e2e7;
  background:#eef2f4;   /* holds the print's shape before the image decodes */
}
.ct-photo figcaption{
  margin-top:9px; text-align:center;
  font:600 19px/1.3 'Caveat',cursive;
  color:var(--ink-soft);
}
.ct-photo-tape{
  position:absolute; top:-11px; left:50%; z-index:2;
  width:104px; height:24px;
  background:rgba(228,185,59,.62);
  box-shadow:0 2px 5px rgba(0,0,0,.08);
}

/* each print sits at its own angle, as if laid down by hand and never squared up */
.ct-photo-a{ transform:rotate(-1.4deg); }
.ct-photo-b{ transform:rotate(1.2deg); }
.ct-photo-c{ transform:rotate(-2deg); }
.ct-photo-d{ transform:rotate(1.6deg); }
.ct-photo-e{ transform:rotate(-1.1deg); }
.ct-photo-a .ct-photo-tape{ transform:translateX(-50%) rotate(-3.5deg); }
.ct-photo-b .ct-photo-tape{ transform:translateX(-50%) rotate(4deg); background:rgba(231,183,163,.7); }
.ct-photo-c .ct-photo-tape{ transform:translateX(-50%) rotate(-4.5deg); }
.ct-photo-d .ct-photo-tape{ transform:translateX(-50%) rotate(3deg); background:rgba(231,183,163,.7); }
.ct-photo-e .ct-photo-tape{ transform:translateX(-50%) rotate(-3deg); }

/* one print, centred in the column of text it belongs to */
.ct-photo-solo{ margin:clamp(26px,3.4vw,38px) auto clamp(6px,1vw,10px); max-width:560px; }

/* the boat: the hull large, the transom a smaller print tucked beside it */
.ct-photo-row{
  display:flex; flex-wrap:wrap; align-items:flex-start; justify-content:center;
  gap:clamp(20px,3vw,34px);
  margin:clamp(26px,3.4vw,38px) 0 clamp(10px,1.4vw,16px);
}
/* both of these are portrait plates — uncapped, the hull print alone runs to 860px
   and swallows the section, so hold it to something a hand could actually lay down */
.ct-photo-row .ct-photo-lg{ flex:1 1 300px; min-width:0; max-width:420px; }
.ct-photo-row .ct-photo-sm{ flex:0 1 240px; min-width:0; max-width:260px; }

@media (prefers-reduced-motion: reduce){
  [data-sway],[data-drift],[data-gull]{ animation:none !important; }
  .js [data-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ── SMALL SCREENS ──────────────────────────────────────────────────────── */

@media (max-width:700px){
  /* the tilts stack up badly at narrow widths — lay everything flat */
  .ct-nameboard,.ct-tilt-a,.ct-tilt-b,.ct-tilt-c,.ct-tilt-d,.ct-tilt-e,.ct-kit,.ct-close{ transform:none; }
  /* the prints tilt into each other once they stack — lay them flat too */
  .ct-photo-a,.ct-photo-b,.ct-photo-c,.ct-photo-d,.ct-photo-e{ transform:none; }
  .ct-photo-row{ flex-direction:column; }
  .ct-photo-row .ct-photo-lg,.ct-photo-row .ct-photo-sm{ flex:1 1 auto; width:100%; }
  .ct-photo-row .ct-photo-sm{ max-width:300px; align-self:center; }
  .ct-hero{ min-height:0; }
  .ct-flag{ position:static; display:inline-block; margin-bottom:10px; transform:rotate(-1.5deg); }
  .ct-chart-head,.ct-sheet-head{ gap:12px; }
  .ct-sheet-note{ text-align:left; }
  .ct-chart-foot .ct-btn-outline{ width:100%; justify-content:center; }
  .ct-ledger-body{ padding-left:clamp(38px,11vw,52px); }
  .ct-fee .ct-link{ flex:1 1 100%; }
}
