:root {
  --forest: #183f34;
  --forest-deep: #0e2d25;
  --leaf: #4d755a;
  --moss: #a8c49d;
  --cream: #f5f0df;
  --paper: #fffdf6;
  --sun: #f2c94c;
  --coral: #ef765f;
  --sky: #b9d9d1;
  --ink: #172620;
  --line: rgba(23, 38, 32, .22);
  --shadow: 0 10px 0 rgba(14, 45, 37, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
body::selection { color: var(--forest-deep); background: var(--sun); }
a { color: inherit; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Fraunces", Georgia, serif; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  color: white;
  background: var(--forest-deep);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: white;
  background: var(--forest);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border: 2px solid white;
  border-radius: 50% 50% 50% 8px;
  color: var(--forest);
  background: var(--sun);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}
.brand small { display: block; margin-top: -5px; color: rgba(255,255,255,.7); font-size: .65rem; font-weight: 500; letter-spacing: .07em; }
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a { font-size: .82rem; font-weight: 600; text-decoration: none; }
.site-header nav a:hover { color: var(--sun); }
.print-button {
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: white;
  background: transparent;
  cursor: pointer;
}
.print-button:hover { color: var(--forest); background: white; }

.eyebrow {
  margin-bottom: 16px;
  color: var(--leaf);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { color: var(--coral); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(450px, 1.04fr);
  min-height: 770px;
  overflow: hidden;
  color: white;
  background: var(--forest);
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,.035), 0 0 0 130px rgba(255,255,255,.025);
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 700px;
  padding: 80px 5vw 90px max(24px, 7vw);
}
.hero .eyebrow { color: var(--moss); }
.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(5rem, 9.2vw, 9.2rem);
  line-height: .78;
  letter-spacing: -.06em;
}
.hero h1 em { color: var(--sun); font-weight: 600; }
.hero-lede { max-width: 620px; margin-bottom: 18px; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.42; }
.hero-rule { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; max-width: 600px; margin-top: 24px; padding: 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; background: rgba(255,255,255,.07); }
.hero-rule > span { display: grid; place-items: center; width: 40px; aspect-ratio: 1; border-radius: 50%; color: var(--forest); background: var(--sun); font-weight: 700; }
.hero-rule p { margin: 0; color: rgba(255,255,255,.78); font-size: .88rem; line-height: 1.5; }
.hero-rule strong { display: block; color: white; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}
.button-primary { color: var(--forest-deep); background: var(--sun); }
.button-primary:hover { background: white; }
.button-ghost { border-color: rgba(255,255,255,.45); color: white; }
.button-ghost:hover { color: var(--forest); background: white; }

.hero-game {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 640px;
  background: linear-gradient(145deg, var(--sky), #d8e4cc 62%, #ebd693);
}
.sun-disc {
  position: absolute;
  top: 7%;
  right: 9%;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242,201,76,.68);
}
.bird-card {
  position: relative;
  z-index: 3;
  width: min(390px, 70%);
  overflow: hidden;
  transform: rotate(-2.5deg);
  border: 2px solid var(--forest-deep);
  border-radius: 22px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 24px 26px 0 rgba(14,45,37,.18);
}
.bird-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14px -18px -18px 20px;
  border-radius: 20px;
  background: var(--coral);
}
.card-topline { display: flex; justify-content: space-between; gap: 14px; padding: 13px 18px; border-bottom: 2px solid var(--forest-deep); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.card-topline strong { letter-spacing: -.25em; }
.bird-window { position: relative; height: 245px; overflow: hidden; background: linear-gradient(#8fc4c0 0 66%, #b7ca8b 66%); }
.bird-window::before { content: ""; position: absolute; top: 30px; right: 34px; width: 95px; height: 95px; border-radius: 50%; background: rgba(255,248,205,.75); }
.branch { position: absolute; right: -20px; bottom: 54px; width: 320px; height: 12px; transform: rotate(-8deg); border-radius: 999px; background: #4e372a; }
.branch::before, .branch::after { content: ""; position: absolute; width: 100px; height: 8px; border-radius: 999px; background: #4e372a; transform-origin: right; }
.branch::before { left: 40px; top: -4px; transform: rotate(38deg); }
.branch::after { right: 50px; top: 5px; transform: rotate(-35deg); }
.bird-shape { position: absolute; left: 38%; bottom: 72px; width: 84px; height: 65px; transform: rotate(-8deg); border-radius: 58% 44% 50% 45%; background: var(--forest); }
.bird-shape::before { content: ""; position: absolute; top: -24px; right: -9px; width: 43px; height: 43px; border-radius: 50%; background: var(--forest); }
.bird-shape::after { content: ""; position: absolute; top: -12px; right: -35px; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 28px solid var(--sun); }
.bird-shape i { position: absolute; top: 12px; left: -50px; width: 70px; height: 30px; transform: rotate(25deg); border-radius: 0 0 0 100%; background: var(--forest-deep); }
.card-copy { padding: 20px 22px 25px; }
.card-copy > span { color: var(--coral); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.card-copy h2 { margin: 2px 0 7px; font-size: 1.9rem; line-height: 1.15; }
.card-copy p { margin: 0; color: #3d5049; font-size: .8rem; line-height: 1.5; }
.game-stats {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(500px, 90%);
  border: 2px solid var(--forest-deep);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(14,45,37,.15);
}
.game-stats div { padding: 14px 18px; border-right: 1px solid var(--line); }
.game-stats div:last-child { border-right: 0; }
.game-stats strong, .game-stats span { display: block; }
.game-stats strong { color: var(--coral); font-family: "Fraunces", Georgia, serif; font-size: 1.8rem; line-height: 1; }
.game-stats span { margin-top: 3px; color: var(--forest); font-size: .7rem; font-weight: 700; text-transform: uppercase; }

.get-ready, .regional-decks, .quick-start, .build-section, .example-section, .field-section, .score-section, .reveal-section, .loop-section, .faq-section {
  padding: clamp(70px, 9vw, 130px) max(24px, 7vw);
}
.get-ready { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 8vw, 120px); align-items: center; border-bottom: 1px solid var(--line); background: var(--paper); }
.get-ready h2 { margin: 0; font-size: clamp(2.7rem, 4.8vw, 4.8rem); line-height: .98; letter-spacing: -.04em; }
.get-ready ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.get-ready li { min-height: 190px; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); }
.get-ready li > span { font-size: 2rem; }
.get-ready li p { margin: 22px 0 0; color: #486058; font-size: .84rem; }
.get-ready li strong { display: block; margin-bottom: 3px; color: var(--ink); font-family: "Fraunces", Georgia, serif; font-size: 1.1rem; }
.regional-decks { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 120px); color: white; background: var(--forest-deep); }
.decks-intro { align-self: center; }
.decks-intro .eyebrow { color: var(--moss); }
.decks-intro h2 { margin-bottom: 26px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .98; letter-spacing: -.04em; }
.decks-intro > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.deck-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.deck-facts span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .67rem; text-transform: uppercase; }
.deck-facts strong { margin-right: 4px; color: var(--sun); font-size: .8rem; }
.region-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.region-card { overflow: hidden; border: 2px solid var(--paper); border-radius: 22px; color: var(--ink); background: var(--paper); box-shadow: 8px 8px 0 rgba(0,0,0,.16); }
.region-art { position: relative; height: 210px; overflow: hidden; background: linear-gradient(#a6d0c8 0 64%, #d9c480 64%); }
.ottawa-card .region-art { background: linear-gradient(#b9d9d1 0 62%, #d98462 62%); }
.region-sun { position: absolute; top: 26px; right: 28px; width: 82px; aspect-ratio: 1; border-radius: 50%; background: var(--sun); }
.region-branch { position: absolute; right: -10px; bottom: 42px; width: 270px; height: 9px; transform: rotate(-6deg); border-radius: 999px; background: #563d2f; }
.region-branch::before { content: ""; position: absolute; left: 58px; top: -2px; width: 90px; height: 6px; transform: rotate(34deg); transform-origin: left; border-radius: 999px; background: #563d2f; }
.region-bird { position: absolute; z-index: 2; left: 37%; bottom: 58px; width: 66px; height: 50px; border-radius: 58% 44% 50% 45%; background: var(--forest); }
.region-bird::before { content: ""; position: absolute; top: -18px; right: -7px; width: 34px; height: 34px; border-radius: 50%; background: var(--forest); }
.region-bird::after { content: ""; position: absolute; top: -8px; right: -29px; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 23px solid var(--coral); }
.region-card-copy { padding: 24px; }
.region-card-copy > span { color: var(--coral); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.region-card-copy h3 { margin: 5px 0 11px; font-family: "Fraunces", Georgia, serif; font-size: 1.7rem; line-height: 1.08; }
.region-card-copy p { min-height: 95px; color: #50635c; font-size: .8rem; }
.region-card-copy a { display: flex; justify-content: space-between; gap: 15px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--forest); font-size: .74rem; font-weight: 700; text-decoration: none; }
.region-card-copy a:hover { color: var(--coral); }
.quick-start { border-bottom: 1px solid var(--line); background: var(--cream); }
.section-intro { display: grid; grid-template-columns: .7fr 1.3fr; max-width: 1200px; margin: 0 auto 60px; }
.section-intro h2, .build-copy h2, .field-heading h2, .honor-copy h2, .score-heading h2, .reveal-copy h2, .faq-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.step-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; max-width: 1250px; margin: 0 auto; padding: 0; list-style: none; }
.step-grid li { position: relative; min-height: 330px; padding: 20px 26px 30px; border-left: 1px solid var(--line); }
.step-grid li:last-child { border-right: 1px solid var(--line); }
.step-number { color: var(--leaf); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.step-icon { display: grid; place-items: center; width: 76px; aspect-ratio: 1; margin: 44px 0 28px; border: 2px solid var(--forest); border-radius: 50%; background: var(--paper); font-size: 2rem; box-shadow: 5px 5px 0 var(--moss); }
.step-grid h3 { margin-bottom: 8px; font-family: "Fraunces", Georgia, serif; font-size: 1.65rem; }
.step-grid p { margin: 0; color: #486058; font-size: .92rem; }

.build-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 140px); align-items: center; background: var(--paper); }
.build-copy { max-width: 600px; }
.build-copy > p:not(.eyebrow) { margin-top: 28px; color: #486058; }
.word-guide { margin-top: 28px; border-top: 1px solid var(--line); }
.word-guide p { display: grid; grid-template-columns: 120px 1fr; gap: 14px; margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .83rem; }
.word-guide strong { color: var(--forest); }
.word-guide span { color: #486058; }
.choice-callout { display: grid; grid-template-columns: 55px 1fr; gap: 16px; align-items: start; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.choice-callout > span { display: grid; place-items: center; width: 48px; aspect-ratio: 1; border-radius: 50%; color: var(--forest); background: var(--sun); font-size: 1.4rem; font-weight: 700; }
.choice-callout p { margin: 0; }
.choice-callout strong { display: block; margin-bottom: 3px; color: var(--coral); font-size: .74rem; text-transform: uppercase; }
.cost-board { overflow: hidden; border: 2px solid var(--forest); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); }
.cost-board > div { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 76px; padding: 12px 24px; border-bottom: 1px solid var(--line); }
.cost-board .cost-heading { min-height: 52px; color: white; background: var(--forest); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.cost-board > div > span { display: flex; align-items: center; gap: 13px; font-weight: 600; }
.cost-board strong { letter-spacing: .05em; }
.likelihood { display: inline-block; width: 12px; height: 12px; border-radius: 50%; }
.likelihood-5 { background: var(--forest); box-shadow: 0 0 0 4px rgba(24,63,52,.13); }
.likelihood-4 { background: #4d755a; }
.likelihood-3 { background: #87a86f; }
.likelihood-2 { background: var(--sun); }
.likelihood-1 { background: var(--coral); }
.lock-note { display: flex; gap: 12px; align-items: center; margin: 0; padding: 18px 24px; color: var(--forest); background: #d9e4d1; font-size: .82rem; font-weight: 600; }

.example-section { color: white; background: var(--leaf); }
.example-heading { display: grid; grid-template-columns: .7fr 1.1fr .8fr; gap: 40px; align-items: end; max-width: 1250px; margin: 0 auto 48px; }
.example-heading .eyebrow { color: var(--sun); }
.example-heading h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .98; letter-spacing: -.04em; }
.example-heading > p { margin: 0; color: rgba(255,255,255,.7); font-size: .85rem; }
.example-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1250px; margin: 0 auto; padding: 0; list-style: none; }
.example-steps li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; min-height: 260px; padding: 22px; border: 1px solid rgba(255,255,255,.38); border-radius: 18px; background: rgba(255,255,255,.08); }
.example-steps li > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--forest); background: var(--sun); font-weight: 700; }
.example-steps h3 { margin: 4px 0 12px; font-family: "Fraunces", Georgia, serif; font-size: 1.3rem; line-height: 1.15; }
.example-steps p { margin: 0; color: rgba(255,255,255,.76); font-size: .83rem; }
.example-total { color: var(--forest); background: var(--sun) !important; }
.example-total > span { color: white !important; background: var(--forest) !important; }
.example-total p { color: var(--forest) !important; }

.field-section { color: white; background: var(--forest-deep); }
.field-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; max-width: 1250px; margin: 0 auto 60px; }
.field-heading .eyebrow { color: var(--moss); }
.field-heading > p { max-width: 520px; margin-bottom: 0; color: rgba(255,255,255,.67); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1250px; margin: 0 auto; }
.log-card, .log-howto { position: relative; min-height: 430px; padding: 38px; border-radius: var(--radius); }
.log-card { overflow: hidden; color: var(--ink); background: var(--paper); }
.log-card::before { content: ""; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: linear-gradient(135deg, transparent 50%, var(--sun) 50%); }
.card-label { color: var(--leaf); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.log-card h3 { margin: 38px 0 25px; font-family: "Fraunces", Georgia, serif; font-size: 2.6rem; }
.log-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; }
.log-card dl div { padding: 14px 20px 14px 0; border-top: 1px solid var(--line); }
.log-card dl .log-evidence { grid-column: 1 / -1; }
.log-card dt { color: var(--leaf); font-size: .66rem; font-weight: 700; text-transform: uppercase; }
.log-card dd { margin: 3px 0 0; font-size: .9rem; }
.evidence-stamp { position: absolute; right: 28px; bottom: 24px; transform: rotate(-6deg); padding: 8px 14px; border: 2px solid var(--coral); border-radius: 8px; color: var(--coral); font-size: .72rem; text-align: center; text-transform: uppercase; }
.evidence-stamp span, .evidence-stamp strong { display: block; }
.log-howto { border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.07); }
.big-quote { position: absolute; top: 16px; right: 32px; color: rgba(242,201,76,.75); font-family: "Fraunces", Georgia, serif; font-size: 7rem; line-height: 1; }
.log-howto h3 { max-width: 360px; margin-bottom: 30px; font-family: "Fraunces", Georgia, serif; font-size: 2.2rem; line-height: 1.1; }
.log-formula { display: flex; flex-wrap: wrap; gap: 8px; color: var(--sun); }
.log-formula span { color: rgba(255,255,255,.38); }
.log-howto > p:not(.log-formula) { color: rgba(255,255,255,.72); }
.no-photo { display: flex; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); }
.no-photo > span { font-size: 1.5rem; }
.no-photo p { margin: 0; font-size: .86rem; }
.confidence-check { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; max-width: 1250px; margin: 26px auto 0; }
.confidence-check > div, .confidence-check > p { margin: 0; padding: 24px; border-radius: 16px; }
.confidence-check > div { border: 1px solid rgba(255,255,255,.22); }
.confidence-check .eyebrow { margin-bottom: 8px; color: var(--moss); }
.confidence-check h3 { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 1.35rem; line-height: 1.2; }
.confidence-check > p { position: relative; padding-left: 76px; color: var(--forest); background: var(--paper); font-size: .78rem; }
.confidence-check > p > span { position: absolute; top: 24px; left: 24px; display: grid; place-items: center; width: 36px; aspect-ratio: 1; border-radius: 50%; color: white; background: var(--forest); font-weight: 700; }
.confidence-check > p strong { display: block; margin-bottom: 4px; font-size: .85rem; }
.confidence-check .confidence-maybe { background: var(--sun); }
.confidence-check .confidence-maybe > span { background: var(--coral); }

.honor-section { display: grid; grid-template-columns: 170px 1fr .8fr; gap: clamp(30px, 6vw, 90px); align-items: center; padding: clamp(70px, 9vw, 120px) max(24px, 7vw); background: var(--sun); }
.honor-seal { display: grid; place-items: center; align-content: center; width: 160px; aspect-ratio: 1; border: 2px solid var(--forest); border-radius: 50%; color: white; background: var(--forest); box-shadow: 0 0 0 10px var(--sun), 0 0 0 12px var(--forest); text-align: center; }
.honor-seal span { font-family: "Fraunces", Georgia, serif; font-size: 3.6rem; line-height: .9; }
.honor-seal small { margin-top: 6px; font-size: .65rem; font-weight: 700; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; }
.honor-copy .eyebrow { color: var(--forest); }
.honor-copy h2 { max-width: 670px; }
.honor-copy blockquote { max-width: 700px; margin: 28px 0 0; padding-left: 20px; border-left: 3px solid var(--forest); font-size: .94rem; }
.uncertain-card { padding: 28px; transform: rotate(1.5deg); border: 2px dashed var(--forest); border-radius: 18px; background: rgba(255,253,246,.62); }
.uncertain-tag { display: inline-block; padding: 5px 10px; border-radius: 999px; color: white; background: var(--coral); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.uncertain-card h3 { margin: 18px 0 8px; font-family: "Fraunces", Georgia, serif; font-size: 1.65rem; }
.uncertain-card p { font-size: .85rem; }
.uncertain-card div { display: flex; align-items: baseline; gap: 8px; padding-top: 16px; border-top: 1px solid var(--line); }
.uncertain-card div strong { font-family: "Fraunces", Georgia, serif; font-size: 2.4rem; line-height: 1; }
.uncertain-card div span, .uncertain-card small { font-size: .72rem; }

.score-section { background: var(--cream); }
.score-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; max-width: 1250px; margin: 0 auto 60px; }
.score-heading > p { max-width: 470px; margin: 0; color: #486058; }
.score-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; max-width: 1250px; margin: 0 auto; }
.score-rules { overflow: hidden; border: 2px solid var(--forest); border-radius: var(--radius); background: var(--paper); }
.score-rules div { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; min-height: 90px; padding: 20px 25px; border-bottom: 1px solid var(--line); }
.score-rules div:last-child { border-bottom: 0; }
.score-rules span { font-weight: 600; }
.score-rules strong { display: grid; place-items: center; width: 52px; aspect-ratio: 1; border-radius: 50%; color: white; background: var(--forest); font-family: "Fraunces", Georgia, serif; font-size: 1.35rem; }
.score-calculator { padding: 30px; border-radius: var(--radius); color: white; background: var(--forest); box-shadow: var(--shadow); }
.calculator-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calculator-heading span { color: var(--moss); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.calculator-heading h3 { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 2rem; }
.calculator-heading output { display: grid; place-items: center; width: 88px; aspect-ratio: 1; border-radius: 50%; color: var(--forest); background: var(--sun); font-family: "Fraunces", Georgia, serif; font-size: 2.5rem; }
.score-calculator label { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 60px; border-top: 1px solid rgba(255,255,255,.19); }
.score-calculator label span { font-size: .88rem; }
.score-calculator label small { color: var(--moss); }
.score-calculator input { width: 70px; padding: 6px 8px; border: 1px solid rgba(255,255,255,.28); border-radius: 8px; color: white; background: rgba(255,255,255,.08); text-align: center; }
.score-calculator button { margin-top: 20px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; color: white; background: transparent; cursor: pointer; font-size: .76rem; }
.score-calculator button:hover { color: var(--forest); background: white; }

.reveal-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 130px); align-items: center; color: white; background: var(--coral); }
.reveal-copy .eyebrow { color: var(--forest-deep); }
.reveal-copy > p:not(.eyebrow) { margin-top: 30px; }
.class-flock { display: flex; gap: 16px; align-items: center; margin-top: 34px; padding: 20px; border: 1px solid rgba(255,255,255,.45); border-radius: 14px; background: rgba(255,255,255,.1); }
.class-flock span { font-size: 1.8rem; }
.class-flock p { margin: 0; font-weight: 600; }
.award-list { overflow: hidden; border: 2px solid var(--forest-deep); border-radius: var(--radius); color: var(--ink); background: var(--paper); box-shadow: 10px 10px 0 rgba(14,45,37,.22); }
.award-list article { display: grid; grid-template-columns: 55px 1fr; gap: 14px; align-items: center; min-height: 90px; padding: 15px 22px; border-bottom: 1px solid var(--line); }
.award-list article:last-child { border-bottom: 0; }
.award-list article > span { font-size: 1.7rem; text-align: center; }
.award-list h3 { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; }
.award-list p { margin: 1px 0 0; color: #617069; font-size: .78rem; }

.loop-section { text-align: center; background: var(--paper); }
.loop-section h2 { margin-bottom: 50px; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.05; }
.loop-track { display: grid; grid-template-columns: repeat(9, auto); justify-content: center; align-items: center; gap: 18px; }
.loop-track div { display: grid; place-items: center; align-content: center; width: 150px; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; background: var(--cream); }
.loop-track strong, .loop-track span { display: block; }
.loop-track strong { color: var(--forest); font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; }
.loop-track span { margin-top: 4px; color: var(--leaf); font-size: .68rem; }
.loop-track i { color: var(--coral); font-style: normal; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 140px); background: var(--cream); }
.faq-section h2 { font-size: clamp(2.6rem, 4.5vw, 4.2rem); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 45px 23px 0; cursor: pointer; font-family: "Fraunces", Georgia, serif; font-size: 1.2rem; font-weight: 700; }
.faq-list p { max-width: 700px; padding: 0 35px 24px 0; color: #486058; font-size: .9rem; }

.final-callout { padding: clamp(80px, 11vw, 150px) 24px; color: white; background: var(--forest); text-align: center; }
.final-callout > p { color: var(--moss); font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.final-callout h2 { margin-bottom: 38px; font-size: clamp(3.5rem, 8vw, 7.5rem); line-height: .92; letter-spacing: -.05em; }
.button-light { color: var(--forest); background: white; }
.button-light:hover { background: var(--sun); }

footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 28px max(24px, 7vw); color: rgba(255,255,255,.65); background: var(--forest-deep); font-size: .78rem; }
footer p { margin: 0; }
footer div { display: flex; gap: 26px; }
footer a { color: white; text-underline-offset: 4px; }

:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }

@media (max-width: 1050px) {
  .site-header nav a { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(4.5rem, 9vw, 7rem); }
  .get-ready, .regional-decks { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(3, 1fr); }
  .step-grid li:nth-child(3) { border-right: 1px solid var(--line); }
  .step-grid li:nth-child(n+4) { border-top: 1px solid var(--line); }
  .example-heading { grid-template-columns: 1fr 1fr; }
  .example-heading > p { grid-column: 2; }
  .example-steps { grid-template-columns: 1fr 1fr; }
  .honor-section { grid-template-columns: 130px 1fr; }
  .honor-seal { width: 120px; }
  .uncertain-card { grid-column: 2; }
  .loop-track { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .loop-track i { display: none; }
  .loop-track div { width: 100%; }
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 75px 24px 80px; }
  .hero-game { min-height: 650px; }
  .hero h1 { font-size: clamp(5rem, 19vw, 8rem); }
  .get-ready, .regional-decks, .section-intro, .build-section, .field-heading, .score-heading, .reveal-section, .faq-section { grid-template-columns: 1fr; }
  .get-ready ul { grid-template-columns: 1fr; }
  .get-ready li { min-height: 0; }
  .region-card-grid { grid-template-columns: 1fr; }
  .region-card-copy p { min-height: 0; }
  .section-intro, .field-heading, .score-heading { gap: 24px; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .step-grid li:nth-child(2) { border-right: 1px solid var(--line); }
  .step-grid li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .step-grid li:nth-child(3) { border-right: 0; }
  .example-heading { grid-template-columns: 1fr; gap: 20px; }
  .example-heading > p { grid-column: auto; }
  .example-steps { grid-template-columns: 1fr; }
  .example-steps li { min-height: 0; }
  .field-grid, .score-layout { grid-template-columns: 1fr; }
  .confidence-check { grid-template-columns: 1fr 1fr; }
  .confidence-check > div { grid-column: 1 / -1; }
  .honor-section { grid-template-columns: 1fr; }
  .honor-seal { margin: 10px 12px 20px; }
  .uncertain-card { grid-column: auto; }
  .loop-track { grid-template-columns: repeat(3, 1fr); }
  footer { align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header { min-height: 72px; }
  .brand { font-size: .86rem; }
  .print-button { display: none; }
  .hero-game { min-height: 560px; }
  .bird-card { width: min(340px, 82%); }
  .bird-window { height: 200px; }
  .game-stats { right: auto; left: 5%; }
  .game-stats div { padding: 11px; }
  .game-stats strong { font-size: 1.5rem; }
  .game-stats span { font-size: .58rem; }
  .step-grid { grid-template-columns: 1fr; }
  .step-grid li, .step-grid li:nth-child(2), .step-grid li:nth-child(3) { min-height: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .step-grid li + li { border-top: 0; }
  .step-icon { margin: 28px 0 20px; }
  .cost-board > div { padding-inline: 16px; }
  .cost-board strong { font-size: .75rem; letter-spacing: -.1em; }
  .log-card, .log-howto { min-height: 0; padding: 26px; }
  .confidence-check { grid-template-columns: 1fr; }
  .confidence-check > div { grid-column: auto; }
  .log-card h3 { margin-top: 28px; font-size: 2rem; }
  .evidence-stamp { position: static; display: inline-block; margin-top: 15px; }
  .score-calculator { padding: 22px; }
  .score-calculator label span { max-width: 180px; }
  .loop-track { grid-template-columns: 1fr; }
  .loop-track div { width: 160px; margin: 0 auto; }
  footer, footer div { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media print {
  @page { margin: .55in; }
  body { color: #000; background: #fff; font-size: 10pt; }
  .site-header, .hero-game, .hero-actions, .score-calculator, .faq-section, .final-callout, footer { display: none !important; }
  .hero { display: block; min-height: 0; color: #000; background: #fff; }
  .hero-copy { max-width: none; padding: 0 0 24px; }
  .hero h1 { margin-bottom: 12px; color: #000; font-size: 42pt; line-height: .9; }
  .hero h1 em { color: #000; }
  .hero .eyebrow, .eyebrow { color: #000; }
  .hero-lede { font-size: 13pt; }
  .hero-promise { color: #000; }
  .get-ready, .regional-decks, .quick-start, .build-section, .example-section, .field-section, .honor-section, .score-section, .reveal-section, .loop-section { padding: 22px 0; break-inside: avoid; color: #000; background: #fff; }
  .get-ready, .regional-decks { display: none; }
  .section-intro, .field-heading, .score-heading { display: block; margin-bottom: 16px; }
  .section-intro h2, .build-copy h2, .field-heading h2, .honor-copy h2, .score-heading h2, .reveal-copy h2 { font-size: 24pt; }
  .step-grid { grid-template-columns: repeat(5, 1fr); }
  .step-grid li { min-height: 0; padding: 10px; }
  .step-icon { width: 42px; margin: 12px 0; box-shadow: none; font-size: 1.2rem; }
  .build-section, .field-grid, .score-layout, .reveal-section { grid-template-columns: 1fr 1fr; gap: 22px; }
  .example-heading { display: block; margin-bottom: 16px; }
  .example-heading h2 { font-size: 24pt; }
  .example-heading > p { color: #000; }
  .example-steps { grid-template-columns: repeat(4, 1fr); }
  .example-steps li { min-height: 0; padding: 10px; border-color: #000; color: #000; background: #fff; }
  .example-steps p, .example-total p { color: #000 !important; }
  .cost-board, .log-card, .log-howto, .score-rules, .award-list, .uncertain-card { border-color: #000; box-shadow: none; color: #000; background: #fff; }
  .log-howto > p:not(.log-formula), .field-heading > p, .score-heading > p { color: #000; }
  .honor-section { grid-template-columns: 100px 1fr 1fr; gap: 24px; }
  .honor-seal { width: 90px; color: #fff; background: #000; box-shadow: none; }
  .loop-track div { width: 110px; }
}
