/* HoloHolo Guide — v2 design system */
:root {
  --deep: #07303a;
  --deep-2: #0a3d49;
  --teal: #0e7c7b;
  --teal-dark: #0a5f5e;
  --gold: #f0a832;
  --coral: #e0603f;
  --coral-dark: #c74e30;
  --sand: #f7f3ea;
  --sand-2: #efe8d8;
  --ink: #233339;
  --muted: #5d6f78;
  --line: #e7e0d2;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(7, 48, 58, .10);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0; font-family: var(--font-body);
  color: var(--ink); background: #fff; line-height: 1.7; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }
body.page-home .wrap, body.page-island .wrap { max-width: 1020px; }
img { max-width: 100%; }

/* ---------- header / footer ---------- */
.site-header { background: var(--deep); color: #fff; position: sticky; top: 0; z-index: 20;
  box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between;
  padding-top: 13px; padding-bottom: 13px; max-width: 1020px; }
.brand { color: #fff; text-decoration: none; font-weight: 800; font-size: 20px;
  font-family: var(--font-display); letter-spacing: .2px; }
.brand-emoji { margin-right: 6px; }
.site-header nav a { color: #cfe3e2; text-decoration: none; margin-left: 18px; font-size: 15px; font-weight: 600; }
.site-header nav a:hover { color: var(--gold); }
.site-footer { background: var(--deep); color: #cfe3e2; padding: 40px 0; font-size: 14px; margin-top: 64px; }
.site-footer a { color: #fff; }
.site-footer .fine { color: #9db8b6; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.18; color: var(--deep); }
h1 { font-size: 38px; margin: 14px 0 10px; letter-spacing: -.5px; font-weight: 900; }
h2 { font-size: 27px; margin: 40px 0 14px; letter-spacing: -.3px; font-weight: 700; }
h3 { font-size: 20px; margin: 26px 0 8px; }
.lede { font-size: 19px; color: var(--muted); }
.lede.light, .light { color: #eaf3f2; }
.meta { color: var(--muted); font-size: 14px; margin-top: 0; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.crumbs a { color: var(--teal); }
.crumbs.light a { color: var(--gold); }
a { color: var(--teal); }

/* ---------- full-bleed hero ---------- */
.hero-full {
  width: 100vw; margin-left: calc(50% - 50vw);
  background-size: cover; background-position: center 35%;
  color: #fff; margin-top: -32px;
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(5,30,37,.62) 0%, rgba(5,30,37,.38) 45%, rgba(5,30,37,.78) 100%);
  padding: 96px 0 72px;
}
.hero-overlay h1 { color: #fff; font-size: 52px; margin: 10px 0 14px; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero-overlay .lede { font-size: 20px; max-width: 640px; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hero-kicker {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--deep); background: var(--gold); border-radius: 999px; padding: 7px 16px; margin: 0 0 4px;
}
.island-hero .hero-overlay { padding: 72px 0 52px; }
.island-hero .hero-overlay h1 { font-size: 44px; }

/* ---------- island cards (home) ---------- */
.island-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin: 18px 0 36px; }
.island-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: var(--ink); box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease; }
.island-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(7,48,58,.16); }
.island-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.island-card .island-card-body { padding: 16px 18px 18px; }
.island-card h3 { margin: 0 0 4px; font-size: 21px; }
.island-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- article cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin: 18px 0; }
.card { display: block; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--ink); background: #fff; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(7,48,58,.16); }
.card .card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.card .card-body { padding: 16px 18px 18px; display: block; }
.card h3 { margin: 6px 0; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card-island { font-size: 12px; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 1px; font-weight: 800; }

/* ---------- article hero ---------- */
.article-hero { margin: 22px 0 6px; }
.article-hero img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: var(--radius); display: block; box-shadow: var(--shadow); }
.article-hero figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ---------- answer / disclosure ---------- */
.answer { background: #eef7f6; border-left: 5px solid var(--teal); border-radius: 0 10px 10px 0;
  padding: 18px 22px; margin: 26px 0; box-shadow: var(--shadow); }
.answer-kicker { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--teal-dark); font-weight: 800; margin-bottom: 6px; }
.answer p { margin: 0; font-size: 18px; }
.disclosure { background: var(--sand); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 16px; font-size: 14px; color: var(--muted); }

/* ---------- pick cards (replaces raw comparison tables) ---------- */
.pick-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin: 22px 0; }
.pick-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: #fff;
  box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pick-card.featured { border: 2px solid var(--gold); }
.pick-badge { align-self: flex-start; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--deep); background: var(--sand-2); border-radius: 999px; padding: 5px 12px; margin-bottom: 10px; }
.pick-card.featured .pick-badge { background: var(--gold); }
.pick-card h3 { margin: 0 0 6px; font-size: 21px; }
.pick-card p { margin: 0 0 14px; color: var(--muted); font-size: 15px; flex: 1; }
.pick-card .pick-link { font-weight: 800; color: var(--coral-dark); text-decoration: none; font-size: 16px; }
.pick-card .pick-link:hover { text-decoration: underline; }

/* ---------- data tables (kept lean for detail) ---------- */
table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 22px 0; font-size: 15px;
  display: block; overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
th, td { padding: 11px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { background: var(--sand); color: var(--deep); font-size: 13px; text-transform: uppercase; letter-spacing: .8px; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: #fbf9f4; }

/* ---------- faq / how / cta ---------- */
.faq details { border: 1px solid var(--line); border-radius: 10px; margin: 10px 0; padding: 14px 18px; background: #fff; }
.faq summary { font-weight: 700; cursor: pointer; font-family: var(--font-display); font-size: 17px; color: var(--deep); }
.how { background: var(--sand); border-radius: var(--radius); padding: 28px; margin-top: 44px; box-shadow: var(--shadow); }
.how h2 { margin-top: 0; }
.how ol { padding-left: 20px; }
.related { margin-top: 52px; }
.cta-box { background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%); color: #fff;
  border-radius: var(--radius); padding: 30px 26px; margin: 30px 0; text-align: center; box-shadow: var(--shadow); }
.cta-box a.btn { display: inline-block; background: var(--coral); color: #fff; font-weight: 800; text-decoration: none;
  padding: 15px 32px; border-radius: 10px; margin-top: 14px; font-size: 18px;
  box-shadow: 0 4px 14px rgba(224,96,63,.4); transition: background .15s ease; }
.cta-box a.btn:hover { background: var(--coral-dark); }
.cta-box p { color: #cfe3e2; margin: 10px 0 0; }
.cta-box h3 { color: #fff; margin-top: 0; }

main { padding: 32px 0 64px; }
section.block { margin: 40px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; }
.section-head h2 { margin-bottom: 6px; }

@media (max-width: 640px) {
  h1 { font-size: 30px; }
  .hero-overlay { padding: 72px 0 52px; }
  .hero-overlay h1 { font-size: 36px; }
  .island-hero .hero-overlay h1 { font-size: 32px; }
  .site-header nav a { margin-left: 10px; font-size: 13px; }
  .article-hero img { aspect-ratio: 16/10; }
}
