
:root{
  --abyss:#020A14; --cream:#F5EDDF; --cream-deep:#EFE5D2; --cream-light:#FBF6EC;
  --cyan:#22D3EE; --teal:#0E7490; --foam:#A5F3FC; --mint:#2DD4BF;
  --coral:#F97066; --sunset:#FBBF24; --sand:#DFE3E8;
  --ink-soft:#2A3447; --ink-mute:rgba(2,10,20,0.55); --rule:rgba(2,10,20,0.12);
  --serif:'Fraunces','Times New Roman',serif;
  --sans:'Outfit',system-ui,sans-serif;
  --hand:'Shadows Into Light Two',cursive;
  --r-sm:8px; --r-md:12px; --r-lg:16px; --r-pill:999px;
  --sh-sm:0 1px 2px rgba(2,10,20,.06),0 1px 1px rgba(2,10,20,.04);
  --sh-md:0 4px 12px rgba(2,10,20,.08),0 2px 4px rgba(2,10,20,.05);
  --sh-lg:0 16px 40px rgba(2,10,20,.12),0 4px 12px rgba(2,10,20,.06);
  --sh-postcard:0 18px 40px rgba(14,116,144,.18),0 6px 14px rgba(2,10,20,.10),0 1px 0 rgba(255,255,255,.5) inset;
}
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--sans); font-weight:400; font-size:16px;
  line-height:1.6; color:var(--abyss); background:var(--cream);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility; overflow-x:hidden;
}
h1,h2,h3,h4,h5{ font-family:var(--serif); font-weight:300; letter-spacing:-0.02em; margin:0; line-height:1.1; }
p{ margin:0 0 16px; text-wrap:pretty; }
a{ color:var(--teal); text-decoration:none; }
a:hover{ text-decoration:underline; text-decoration-thickness:1.5px; text-underline-offset:3px; }
button{ font-family:inherit; cursor:pointer; }
img,svg{ display:block; max-width:100%; }
em{ color:var(--teal); }

/* paper grain — fixed overlay, very low cost */
body::before{
  content:''; position:fixed; inset:0; pointer-events:none; z-index:1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(14,116,144,.025), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249,112,102,.02), transparent 50%);
}
body::after{
  content:''; position:fixed; inset:0; pointer-events:none; z-index:2;
  opacity:.30;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* airmail border stripe */
.airmail{
  height:6px; width:100%;
  background-image:repeating-linear-gradient(-45deg,
    var(--coral) 0 8px,
    var(--cream) 8px 16px,
    var(--teal) 16px 24px,
    var(--cream) 24px 32px);
}
.airmail-top{ position:fixed; top:0; left:0; right:0; z-index:80; }

/* shell */
.shell{ position:relative; z-index:3; max-width:1280px; margin:0 auto; padding:0 clamp(20px,4vw,48px); }

/* nav */
.nav{
  position:sticky; top:6px; z-index:60;
  background:rgba(245,237,223,.86);
  backdrop-filter:saturate(140%) blur(12px);
  -webkit-backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--rule);
  margin-top:6px;
}
.nav-inner{ max-width:1280px; margin:0 auto; display:flex; align-items:center; gap:24px; padding:14px clamp(16px,3vw,40px); }
.brand{ font-family:var(--serif); font-style:italic; font-weight:300; font-size:22px; letter-spacing:-.01em; display:inline-flex; align-items:center; gap:8px; color:var(--abyss); text-decoration:none; }
.brand:hover{ text-decoration:none; }
.brand .dot{ width:8px; height:8px; border-radius:50%; background:var(--coral); display:inline-block; }
.brand .period{ color:var(--coral); font-style:italic; }
.nav-links{ display:flex; gap:2px; margin-left:auto; flex-wrap:wrap; align-items:center; }
.nav-links a{ font-size:12px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--ink-soft); padding:8px 14px; border-radius:var(--r-pill); transition:background 160ms ease; }
.nav-links a:hover{ background:rgba(2,10,20,.06); color:var(--abyss); text-decoration:none; }
.nav-cta{ display:inline-flex; align-items:center; gap:6px; padding:10px 18px; border-radius:var(--r-pill);
  background:var(--coral); color:var(--cream-light); font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  box-shadow:0 6px 16px rgba(249,112,102,.35); }
.nav-cta:hover{ background:#f6584b; color:var(--cream-light); text-decoration:none; }
@media (max-width:780px){ .nav-links{ display:none; } }

/* breadcrumbs */
.breadcrumbs{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-mute); margin:24px 0 8px; }
.breadcrumbs a{ color:var(--ink-soft); }
.breadcrumbs span{ margin:0 8px; opacity:.4; }

/* kicker */
.kicker{ font-family:var(--sans); color:var(--coral); font-size:12px; font-weight:600; letter-spacing:.18em;
  text-transform:uppercase; display:inline-flex; align-items:center; gap:8px; }
.kicker::before,.kicker::after{ content:''; width:18px; height:1px; background:var(--coral); opacity:.6; }

/* postcard surface */
.paper{ background:var(--cream-light); border-radius:var(--r-md); box-shadow:var(--sh-postcard); position:relative; }
.paper::before{ content:''; position:absolute; inset:0; border-radius:inherit; border:1px solid rgba(2,10,20,.08); pointer-events:none; }

/* citation-fact */
.citation-fact{ background:var(--cream-light); border-left:3px solid var(--coral);
  padding:14px 18px; margin:24px 0; border-radius:0 var(--r-sm) var(--r-sm) 0; box-shadow:var(--sh-sm); }
.citation-fact .label{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--coral); font-weight:700; margin-bottom:6px; }
.citation-fact p{ margin:0; }

/* pills */
.pill{ display:inline-flex; align-items:center; gap:6px; padding:5px 11px; border-radius:var(--r-pill);
  font-size:11px; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  background:rgba(14,116,144,.12); color:var(--teal); }

/* btns */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:13px 24px;
  border-radius:var(--r-pill); font-family:var(--sans); font-weight:600; font-size:13px; letter-spacing:.06em;
  text-transform:uppercase; border:1px solid transparent; text-decoration:none; cursor:pointer;
  transition:transform 140ms ease, box-shadow 140ms ease, background 140ms ease; white-space:nowrap; }
.btn:hover{ text-decoration:none; }
.btn-primary{ background:var(--coral); color:var(--cream-light); box-shadow:0 6px 16px rgba(249,112,102,.35); }
.btn-primary:hover{ background:#f6584b; transform:translateY(-1px); box-shadow:0 12px 28px rgba(249,112,102,.45); color:var(--cream-light); }
.btn-wa{ background:#25D366; color:#fff; box-shadow:0 6px 16px rgba(37,211,102,.35); }
.btn-wa:hover{ background:#1ebe57; color:#fff; }
.btn-ghost{ background:transparent; color:var(--abyss); border-color:var(--abyss); }
.btn-ghost:hover{ background:var(--abyss); color:var(--cream); }

/* faq accordion */
.faq-list{ display:flex; flex-direction:column; gap:10px; max-width:880px; }
.faq-item{ background:var(--cream-light); border:1px solid var(--rule); border-radius:var(--r-md); padding:18px 22px; }
.faq-q{ display:flex; justify-content:space-between; gap:12px; cursor:pointer; user-select:none; align-items:center; }
.faq-q h4{ font-family:var(--serif); font-style:italic; font-size:18px; font-weight:300; line-height:1.3; }
.faq-toggle{ font-family:var(--serif); font-size:24px; color:var(--coral); transition:transform 240ms; line-height:1; }
.faq-item.is-open .faq-toggle{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height 320ms ease; color:var(--ink-soft); font-size:15px; line-height:1.6; }
.faq-item.is-open .faq-a{ max-height:600px; padding-top:10px; }

/* related links */
.related{ margin:64px 0 24px; padding:24px; background:var(--cream-deep); border-radius:var(--r-md); }
.related h3{ font-style:italic; font-size:24px; margin-bottom:14px; color:var(--teal); }
.related-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:12px; }
.related a{ display:block; padding:12px 14px; background:var(--cream-light); border-radius:var(--r-sm);
  color:var(--abyss); border:1px solid var(--rule); }
.related a:hover{ border-color:var(--coral); transform:translateY(-2px); text-decoration:none; }

/* footer */
.foot{ background:var(--abyss); color:var(--cream); padding:64px clamp(20px,4vw,64px) 24px;
  position:relative; z-index:3; margin-top:80px; }
.foot::before{ content:''; position:absolute; top:0; left:0; right:0; height:6px;
  background-image:repeating-linear-gradient(-45deg, var(--coral) 0 8px, var(--abyss) 8px 16px, var(--teal) 16px 24px, var(--abyss) 24px 32px); }
.foot-inner{ max-width:1280px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; }
.foot .wordmark{ font-family:var(--serif); font-style:italic; font-size:40px; line-height:1; color:var(--cream); }
.foot .wordmark .period{ color:var(--coral); }
.foot .tagline{ font-family:var(--hand); color:var(--foam); font-size:22px; transform:rotate(-1.5deg); display:inline-block; margin-top:14px; }
.foot h4{ font-family:var(--sans); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--foam); margin-bottom:12px; font-weight:700; }
.foot ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.foot a{ color:rgba(245,237,223,.85); font-size:14px; }
.foot a:hover{ color:var(--cyan); text-decoration:none; }
.foot .legal{ border-top:1px solid rgba(245,237,223,.12); margin-top:48px; padding-top:24px;
  font-size:12px; color:rgba(245,237,223,.55); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  max-width:1280px; margin-left:auto; margin-right:auto; }
@media (max-width:780px){ .foot-inner{ grid-template-columns:1fr; } }

/* postcard placeholder card */
.placeholder-card{ background:var(--cream-light); border-radius:var(--r-md); aspect-ratio:5/3.4;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--sh-postcard); position:relative; overflow:hidden; }
.placeholder-card .pc-mark{ font-family:var(--serif); font-style:italic; font-size:24px; color:var(--coral); }
.placeholder-card .pc-sub{ position:absolute; bottom:12px; left:0; right:0; text-align:center; font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-mute); }

/* tilt utilities */
.tilt-l{ transform:rotate(-2.5deg); }
.tilt-r{ transform:rotate(2deg); }

@media (prefers-reduced-motion:reduce){
  *, *::before, *::after{ animation-duration:.001ms !important; transition-duration:.01ms !important; }
}

.placeholder{ margin:0; }
.placeholder-card{
  position:relative; aspect-ratio:5/3.4; overflow:hidden;
  background:var(--cream-light); border-radius:var(--r-md);
  box-shadow:var(--sh-postcard);
}
.placeholder-card .ph-content{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; }
.placeholder-card .ph-wordmark{ font-family:var(--serif); font-style:italic; font-size:clamp(20px,3.2vw,30px); color:var(--abyss); letter-spacing:-0.01em; }
.placeholder-card .ph-seal{
  width:62px; height:62px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #ff8a7d 0%, #f97066 35%, #c2453c 95%);
  color:#FBF6EC; font-family:var(--serif); font-style:italic; font-size:24px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:inset -6px -8px 14px rgba(0,0,0,.25), inset 4px 4px 10px rgba(255,255,255,.18), 0 8px 18px rgba(2,10,20,.25);
}
.placeholder-atoll svg{ width:100%; height:100%; aspect-ratio:5/3.4; border-radius:var(--r-md); box-shadow:var(--sh-postcard); display:block; }

/* ---------------------------------------------------------------------- */
/*  PREMIUM POSTCARD LAYOUT  —  no images required                        */
/*  Brand motifs (postage stamps, deckled edges, hand-lettered notes,     */
/*  airmail borders) carry the visual rhythm. Big editorial typography    */
/*  does the rest. Designed to feel as polished as the existing landing.  */
/* ---------------------------------------------------------------------- */

.layout{ padding:32px 0 8px; }
.layout > section{ margin:48px 0; }

/* Big editorial title block */
.h1-display{
  font-size:clamp(40px,6vw,88px);
  line-height:0.95;
  margin:18px 0 22px;
  letter-spacing:-0.03em;
  font-weight:300;
}
.h1-display em{ color:var(--teal); font-style:italic; }

/* Drop-cap support for opening paragraphs */
.lede::first-letter{
  font-family:var(--serif); font-style:italic; font-weight:300;
  float:left; font-size:5em; line-height:0.85;
  margin:0.05em 0.12em -0.05em 0; color:var(--coral);
}
.lede{ font-size:clamp(18px,1.5vw,22px); color:var(--ink-soft); max-width:62ch; margin-bottom:30px; line-height:1.6; }
.kicker-row{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; margin-bottom:8px; }
.meta-pills{ display:flex; flex-wrap:wrap; gap:8px; margin:8px 0 18px; }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin:24px 0; }

/* Brand motifs — visual anchors that don't depend on photos */
.postage-stamp{
  display:inline-block; padding:14px 18px; transform:rotate(-7deg);
  background:repeating-linear-gradient(
    45deg, transparent, transparent 4px,
    rgba(2,10,20,.04) 4px, rgba(2,10,20,.04) 8px),
    var(--cream-light);
  border:2px dashed var(--coral); border-radius:4px;
  font-family:var(--serif); font-style:italic; color:var(--coral);
  text-align:center; min-width:120px; min-height:80px;
  display:inline-flex; align-items:center; justify-content:center; flex-direction:column;
  box-shadow:0 8px 20px rgba(2,10,20,.08);
  position:relative;
}
.postage-stamp::before, .postage-stamp::after{
  content:''; position:absolute;
  background:radial-gradient(circle at 50% 50%, var(--cream) 30%, transparent 30%);
  background-size:8px 8px;
}
.postage-stamp .pc-num{ font-size:24px; line-height:1; }
.postage-stamp .pc-label{ font-size:9px; letter-spacing:0.16em; text-transform:uppercase; color:var(--abyss); margin-top:4px; }

.hand-note{
  font-family:var(--hand); color:var(--coral); font-size:24px;
  transform:rotate(-2deg); display:inline-block;
}
.hand-note-blue{ color:var(--teal); }

/* Decorative dividers */
.divider-airmail{
  height:8px; margin:48px 0;
  background-image:repeating-linear-gradient(-45deg,
    var(--coral) 0 12px, var(--cream) 12px 24px,
    var(--teal) 24px 36px, var(--cream) 36px 48px);
}
.divider-stamps{
  height:24px; margin:48px 0;
  background-image:radial-gradient(circle at 12px 12px, var(--rule) 4px, transparent 4.5px);
  background-size:24px 24px;
}
.divider-fede{
  text-align:center; font-family:var(--hand); color:var(--coral); font-size:22px;
  margin:48px 0; transform:rotate(-1deg); display:block;
}

/* Pull quote */
.pull-quote{
  font-family:var(--serif); font-style:italic; font-weight:300;
  font-size:clamp(22px,2.4vw,32px); line-height:1.4; color:var(--abyss);
  margin:48px auto; max-width:42rem; padding:24px 32px;
  border-left:3px solid var(--coral);
  background:linear-gradient(90deg, var(--cream-light) 0%, transparent 100%);
}
.pull-quote::before{
  content:'"'; font-size:64px; color:var(--coral); font-style:italic;
  vertical-align:-12px; line-height:0;
}

/* Margin annotations */
.annotation{
  position:relative; padding-left:24px; border-left:2px dashed var(--coral);
  font-family:var(--hand); color:var(--coral); font-size:18px;
  margin:24px 0; max-width:30rem;
}

/* Section heading with postcard accent */
.layout h2{
  font-size:clamp(28px,3.4vw,42px); margin:48px 0 18px;
  font-weight:300; letter-spacing:-0.02em;
  position:relative; padding-bottom:12px;
}
.layout h2::after{
  content:''; position:absolute; bottom:0; left:0;
  width:80px; height:3px; background:var(--coral);
}
.layout h3{ font-size:22px; margin:24px 0 10px; font-weight:400; font-style:italic; color:var(--teal); }
.layout p{ font-size:17px; line-height:1.7; margin-bottom:14px; }
.layout p + p{ text-indent:0; }
.layout ul, .layout ol{ font-size:17px; line-height:1.7; padding-left:24px; }
.layout ul li{ margin-bottom:8px; }
.layout ul li::marker{ color:var(--coral); }

/* T01 — hero postcard (no image) */
.t01-hero{ padding:48px 0 64px; max-width:48rem; }
.t01-hero .h1-display{ font-size:clamp(48px,8vw,112px); }
.t01-hero .lede{ max-width:46rem; }
.t01-hero-stamps{ display:flex; gap:18px; margin-top:32px; flex-wrap:wrap; }
@media (max-width:780px){ .t01-hero{ padding:24px 0 32px; } }

/* T02 — storytelling longform */
.t02 article{ max-width:680px; margin:0 auto; padding:24px 0; }
.t02 article h2{ font-size:30px; margin:42px 0 14px; line-height:1.15; }
.t02 article p{ font-size:18px; line-height:1.7; }
.t02 .pull{ font-family:var(--serif); font-style:italic; font-size:26px; color:var(--teal); border-left:3px solid var(--coral); padding:8px 0 8px 22px; margin:36px 0; }

/* T03 — magazine grid */
.t03-grid{ display:grid; grid-template-columns:repeat(12,1fr); gap:18px; }
.t03-grid > .span-8{ grid-column:span 8; }
.t03-grid > .span-4{ grid-column:span 4; }
.t03-grid > .span-12{ grid-column:span 12; }
.t03-grid figure{ margin:0; border-radius:var(--r-md); overflow:hidden; box-shadow:var(--sh-md); }
.t03-grid figure img{ width:100%; height:100%; object-fit:cover; aspect-ratio:5/3.4; }
.t03-aside{ background:var(--cream-light); border-radius:var(--r-md); padding:18px; }
@media (max-width:780px){ .t03-grid > *{ grid-column:span 12 !important; } }

/* T04 — comparison split */
.t04-cols{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.t04-col{ background:var(--cream-light); border-radius:var(--r-md); padding:20px; box-shadow:var(--sh-sm); }
.t04-col h3{ font-style:italic; font-size:22px; color:var(--teal); margin-bottom:8px; }
.t04-table{ width:100%; border-collapse:collapse; margin-top:16px; }
.t04-table th, .t04-table td{ text-align:left; padding:10px 8px; border-bottom:1px dashed var(--rule); font-size:14px; }
.t04-sticky{ position:sticky; bottom:0; background:var(--cream); padding:14px 18px;
  border-top:1px solid var(--rule); display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
@media (max-width:780px){ .t04-cols{ grid-template-columns:1fr; } }

/* T05 — itinerary timeline */
.t05-timeline{ position:relative; padding-left:32px; }
.t05-timeline::before{ content:''; position:absolute; top:0; bottom:0; left:8px; width:2px;
  background:repeating-linear-gradient(to bottom, var(--coral) 0 6px, transparent 6px 14px); }
.t05-day{ position:relative; padding:18px 0 18px 18px; border-left:none; }
.t05-day::before{ content:''; position:absolute; left:-32px; top:24px; width:18px; height:18px; border-radius:50%;
  background:var(--coral); box-shadow:0 0 0 4px var(--cream); }
.t05-day h3{ font-style:italic; font-size:24px; color:var(--teal); margin-bottom:6px; }

/* T06 — fact sheet w/ TOC */
.t06{ display:grid; grid-template-columns:240px 1fr; gap:48px; }
.t06 .toc{ position:sticky; top:88px; align-self:start; padding:18px; background:var(--cream-light); border-radius:var(--r-md); font-size:14px; }
.t06 .toc h4{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-mute); margin-bottom:10px; }
.t06 .toc a{ display:block; padding:6px 0; color:var(--ink-soft); border-bottom:1px dashed var(--rule); }
.t06 .toc a:hover{ color:var(--coral); text-decoration:none; }
.t06 .factblock{ background:var(--cream-light); border-left:3px solid var(--teal);
  padding:14px 18px; margin:20px 0; border-radius:0 var(--r-sm) var(--r-sm) 0; }
.t06 .factblock h3{ font-size:18px; margin-bottom:6px; color:var(--teal); }
@media (max-width:780px){ .t06{ grid-template-columns:1fr; } .t06 .toc{ position:static; } }

/* T07 — map-anchored / atoll */
.t07-map{ aspect-ratio:16/9; background:linear-gradient(135deg,#22D3EE,#0E7490);
  border-radius:var(--r-md); position:relative; overflow:hidden; }
.t07-map svg{ position:absolute; inset:0; width:100%; height:100%; }
.t07-hotspots{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:14px; margin-top:24px; }
.t07-hotspot{ background:var(--cream-light); border-radius:var(--r-md); padding:14px; }
.t07-hotspot h4{ font-style:italic; font-size:18px; color:var(--teal); }

/* T08 — Q&A focused */
.t08{ display:grid; grid-template-columns:240px 1fr; gap:48px; }
.t08 .anchor-nav{ position:sticky; top:88px; align-self:start; font-size:13px; padding:18px; background:var(--cream-light); border-radius:var(--r-md); }
.t08 .anchor-nav a{ display:block; padding:5px 0; color:var(--ink-soft); }
.t08 .anchor-nav a:hover{ color:var(--coral); text-decoration:none; }
.t08 .qa-block{ margin-bottom:28px; }
.t08 .qa-block h3{ font-size:22px; margin-bottom:8px; color:var(--teal); font-style:italic; }
@media (max-width:780px){ .t08{ grid-template-columns:1fr; } .t08 .anchor-nav{ display:none; } }

/* T09 — photo essay */
.t09 figure{ margin:24px 0; }
.t09 figcaption{ font-family:var(--hand); color:var(--coral); font-size:22px; transform:rotate(-1.5deg);
  display:inline-block; margin-top:10px; }
.t09 .essay-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.t09 .essay-grid figure:first-child{ grid-column:1/-1; }
.t09 .essay-text{ max-width:680px; margin:32px auto; font-size:18px; line-height:1.7; }
@media (max-width:780px){ .t09 .essay-grid{ grid-template-columns:1fr; } }

/* T10 — listicle countdown */
.t10-item{ display:grid; grid-template-columns:90px 1fr; gap:24px; padding:32px 0; border-bottom:1px solid var(--rule); }
.t10-item .num{ font-family:var(--serif); font-style:italic; font-size:72px; line-height:.85; color:var(--coral); }
.t10-item h3{ font-size:28px; line-height:1.1; margin-bottom:8px; }

/* T11 — quote driven */
.t11{ max-width:760px; margin:32px auto; }
.t11 .quote{ font-family:var(--serif); font-style:italic; font-size:28px; line-height:1.4;
  color:var(--abyss); border-left:3px solid var(--coral); padding-left:24px; margin:32px 0; }
.t11 .source{ font-family:var(--hand); color:var(--coral); font-size:22px; transform:rotate(-1deg); display:inline-block; margin-top:10px; }

/* T12 — filter / dashboard */
.t12-toolbar{ background:var(--cream-light); padding:16px 20px; border-radius:var(--r-md); display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.t12-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:18px; margin-top:18px; }
.t12-card{ background:var(--cream-light); border-radius:var(--r-md); overflow:hidden; box-shadow:var(--sh-postcard); }
.t12-card .cover{ aspect-ratio:5/3.4; }
.t12-card .body{ padding:14px 16px 18px; }
.t12-card h3{ font-style:italic; font-size:20px; margin-bottom:4px; }

/* T13 — hero + tabs */
.t13-tabs{ display:flex; gap:4px; border-bottom:1px solid var(--rule); margin:24px 0 18px; flex-wrap:wrap; }
.t13-tabs button{ background:transparent; border:none; padding:12px 18px; font-size:14px; font-weight:500; color:var(--ink-soft);
  border-bottom:2px solid transparent; cursor:pointer; }
.t13-tabs button.is-active{ color:var(--abyss); border-bottom-color:var(--coral); }
.t13-pane{ display:none; }
.t13-pane.is-active{ display:block; }

/* T14 — scroll narrative */
.t14 section{ padding:64px 0; }
.t14 section:nth-child(odd){ background:var(--cream-deep); }
.t14 .scene{ max-width:680px; margin:0 auto; }
.t14 .scene h2{ font-size:36px; margin-bottom:14px; }

/* T15 — compact info */
.t15{ display:grid; grid-template-columns:1fr 320px; gap:32px; align-items:start; }
.t15 .info-stack{ display:flex; flex-direction:column; gap:14px; }
.t15 .info-row{ background:var(--cream-light); border-radius:var(--r-md); padding:16px 20px; box-shadow:var(--sh-sm); }
.t15 .info-row h3{ font-size:18px; color:var(--teal); margin-bottom:4px; font-style:italic; }
.t15 .quote-card{ position:sticky; top:88px; background:var(--cream-light); padding:20px; border-radius:var(--r-md); box-shadow:var(--sh-sm); }
@media (max-width:780px){ .t15{ grid-template-columns:1fr; } .t15 .quote-card{ position:static; } }

/* T16 — legal */
.t16{ max-width:760px; margin:0 auto; padding:24px 0 64px; }
.t16 h2{ font-size:24px; margin:32px 0 10px; }
.t16 p{ font-size:15px; line-height:1.7; }
