:root {
  --sand: #e8dcc7;
  --oat: #d4b895;
  --sage: #8b9d83;
  --clay: #b08b6e;
  --terracotta: #c66b3d;
  --ochre: #c08e3a;
  --moss: #606c38;
  --ink: #293126;
  --muted: #625b4b;
  --line: #9c8d72;
  --leaf-pale: #bdc5a7;
  --surface-deep: #4a5234;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow-soft: 0 24px 60px rgba(57, 53, 38, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --max: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 10% 8%, rgba(139, 157, 131, 0.32) 0 17rem, transparent 17.2rem),
    radial-gradient(circle at 88% 30%, rgba(192, 142, 58, 0.15) 0 22rem, transparent 22.2rem),
    var(--sand);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: currentColor;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--sand);
  transform: translateY(-160%);
  transition: transform 350ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.95'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(41, 49, 38, 0.2);
  border-radius: 22px;
  background: rgba(232, 220, 199, 0.92);
  box-shadow: 0 12px 30px rgba(57, 53, 38, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 51% 49% 48% 52% / 55% 43% 57% 45%;
  background: var(--moss);
  transform: rotate(-10deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  border-radius: 100% 0 100% 0;
  background: var(--sand);
}

.brand-mark::before {
  width: 14px;
  height: 8px;
  transform: translate(-7px, -4px) rotate(18deg);
}

.brand-mark::after {
  width: 13px;
  height: 7px;
  transform: translate(6px, 3px) rotate(196deg);
}

.brand-mark span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.field-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.field-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.field-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}

.field-nav a:hover::after,
.field-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--sand);
  font-size: 0.77rem;
  font-weight: 800;
  text-decoration: none;
}

main,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 690px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(41, 49, 38, 0.18);
  border-radius: var(--radius-lg);
  background: var(--oat);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 78px);
}

.overline {
  margin-bottom: 14px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.6vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.072em;
  line-height: 0.82;
}

.hero h1 em {
  color: var(--moss);
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 30px;
  color: #4d4e3e;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--moss);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 350ms ease, color 350ms ease, transform 350ms ease, box-shadow 350ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--moss);
  color: var(--sand);
  box-shadow: 0 9px 20px rgba(96, 108, 56, 0.18);
}

.button-primary:hover {
  background: var(--surface-deep);
}

.button-quiet {
  background: transparent;
  color: var(--ink);
}

.button-quiet:hover {
  background: rgba(232, 220, 199, 0.7);
}

.deck-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 56px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(41, 49, 38, 0.28);
}

.deck-facts div {
  min-width: 0;
}

.deck-facts dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-facts dd {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-garden {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--sage);
}

.hero-garden::before {
  content: "";
  position: absolute;
  inset: 8% 9%;
  border: 1px solid rgba(232, 220, 199, 0.58);
  border-radius: 48% 52% 57% 43% / 44% 58% 42% 56%;
  animation: breathe-frame 8s ease-in-out infinite alternate;
}

.moon-disc {
  position: absolute;
  top: 11%;
  right: 14%;
  width: clamp(150px, 18vw, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 22px rgba(232, 220, 199, 0.16);
  animation: breathe-moon 7s ease-in-out infinite alternate;
}

.hill {
  position: absolute;
  right: -12%;
  bottom: -14%;
  left: -16%;
  height: 54%;
  border-radius: 52% 48% 0 0 / 70% 66% 0 0;
  transform: rotate(-4deg);
}

.hill-back {
  bottom: 5%;
  background: var(--clay);
  opacity: 0.82;
}

.hill-front {
  background: var(--moss);
  transform: rotate(5deg);
}

.dream-trail {
  position: absolute;
  inset: 7% 0 8%;
  width: 100%;
  height: 85%;
}

.dream-trail path {
  fill: none;
  stroke: rgba(232, 220, 199, 0.7);
  stroke-dasharray: 2 15;
  stroke-linecap: round;
  stroke-width: 4;
}

.sprite {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(41, 49, 38, 0.26);
  border-radius: 51% 49% 47% 53% / 58% 45% 55% 42%;
  background: var(--sand);
  box-shadow: 0 12px 25px rgba(41, 49, 38, 0.16);
  animation: sprite-float 4.8s ease-in-out infinite alternate;
}

.sprite::before,
.sprite::after {
  content: "";
  position: absolute;
  top: 21px;
  width: 30px;
  height: 18px;
  border-radius: 100% 0 100% 0;
  background: var(--leaf-pale);
}

.sprite::before {
  left: -18px;
  transform: rotate(20deg);
}

.sprite::after {
  right: -18px;
  transform: rotate(200deg);
}

.sprite span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 8px rgba(198, 107, 61, 0.16);
}

.sprite-one {
  top: 19%;
  left: 12%;
}

.sprite-two {
  top: 45%;
  right: 20%;
  width: 54px;
  height: 54px;
  animation-delay: -1.7s;
}

.sprite-three {
  right: 36%;
  bottom: 18%;
  width: 78px;
  height: 78px;
  animation-delay: -3.2s;
}

.garden-note {
  position: absolute;
  right: 28px;
  bottom: 27px;
  z-index: 4;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(232, 220, 199, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(41, 49, 38, 0.76);
  color: var(--sand);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.north-star {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 18px 0 0;
  padding: 18px 24px;
  border: 1px solid rgba(41, 49, 38, 0.18);
  border-radius: var(--radius-md);
  background: var(--moss);
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.north-star p {
  margin: 0;
}

.north-star span {
  height: 1px;
  background: rgba(232, 220, 199, 0.48);
}

.section {
  padding-block: clamp(92px, 12vw, 154px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 94px minmax(0, 760px);
  gap: 30px;
  align-items: start;
  margin-bottom: 44px;
}

.section-number {
  width: 72px;
  margin: 1px 0 0;
  padding: 5px 0 6px;
  border-block: 1px solid var(--line);
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.06rem;
  text-align: center;
}

.section-heading h2,
.reality-check h2,
.site-footer h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.3vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.057em;
  line-height: 0.94;
}

.section-heading > div > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.compass-shell {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(41, 49, 38, 0.2);
  border-radius: var(--radius-lg);
  background: var(--oat);
  box-shadow: var(--shadow-soft);
}

.compass-map {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  background: var(--sage);
}

.compass-map > svg {
  position: absolute;
  width: min(88%, 550px);
  height: min(88%, 550px);
}

.compass-map > svg circle {
  fill: rgba(232, 220, 199, 0.08);
  stroke: rgba(41, 49, 38, 0.22);
  stroke-width: 1;
}

.compass-map > svg path {
  fill: none;
  stroke: rgba(232, 220, 199, 0.52);
  stroke-dasharray: 4 12;
  stroke-linecap: round;
  stroke-width: 2;
}

.compass-node {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 112px;
  min-height: 47px;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(41, 49, 38, 0.28);
  border-radius: var(--radius-sm);
  background: var(--sand);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 9px 20px rgba(41, 49, 38, 0.12);
  transition: background 400ms ease, color 400ms ease, transform 400ms ease;
}

.compass-node span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--oat);
  font-family: var(--serif);
}

.compass-node:hover,
.compass-node.is-active {
  background: var(--moss);
  color: var(--sand);
  transform: translateY(-2px);
}

.compass-node.is-active span {
  background: var(--terracotta);
  color: var(--ink);
}

.compass-node:nth-of-type(1) {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.compass-node:nth-of-type(1):hover,
.compass-node:nth-of-type(1).is-active {
  transform: translateX(-50%) translateY(-2px);
}

.compass-node:nth-of-type(2) {
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}

.compass-node:nth-of-type(2):hover,
.compass-node:nth-of-type(2).is-active {
  transform: translateY(calc(-50% - 2px));
}

.compass-node:nth-of-type(3) {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.compass-node:nth-of-type(3):hover,
.compass-node:nth-of-type(3).is-active {
  transform: translateX(-50%) translateY(-2px);
}

.compass-node:nth-of-type(4) {
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
}

.compass-node:nth-of-type(4):hover,
.compass-node:nth-of-type(4).is-active {
  transform: translateY(calc(-50% - 2px));
}

.compass-heart {
  position: relative;
  z-index: 2;
  display: grid;
  width: 152px;
  height: 152px;
  place-content: center;
  border-radius: 48% 52% 55% 45% / 54% 45% 55% 46%;
  background: var(--sand);
  text-align: center;
  box-shadow: 0 16px 35px rgba(41, 49, 38, 0.14);
  animation: heart-breathe 6s ease-in-out infinite alternate;
}

.compass-heart strong {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.compass-heart small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.heart-orbit {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(232, 220, 199, 0.8);
  border-radius: 55% 45% 49% 51% / 44% 55% 45% 56%;
}

.compass-reading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 78px);
}

.reading-step {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compass-reading h3,
.panel-lead h3,
.field-reading h3,
.turn-river h3,
.matchup-reading h3 {
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.compass-reading > p:not(.reading-step) {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.02rem;
}

.compass-reading dl {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid rgba(41, 49, 38, 0.2);
}

.compass-reading dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(41, 49, 38, 0.2);
}

.compass-reading dt {
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.compass-reading dd {
  margin: 0;
}

.text-button {
  width: fit-content;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.text-button span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 350ms ease;
}

.text-button:hover span {
  transform: translateX(5px);
}

.rule-note {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  margin: 18px 0 0 8%;
  padding: 22px 26px;
  border-left: 5px solid var(--terracotta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(212, 184, 149, 0.55);
}

.rule-note p {
  margin: 0;
}

.mulligan-tool {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(41, 49, 38, 0.2);
  border-radius: var(--radius-lg);
  background: var(--oat);
  box-shadow: var(--shadow-soft);
}

.choice-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--sage);
}

.choice-tab {
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(41, 49, 38, 0.25);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  transition: background 350ms ease, color 350ms ease, transform 350ms ease;
}

.choice-tab:hover,
.choice-tab.is-active {
  background: var(--sand);
  transform: translateX(4px);
}

.mulligan-panels {
  padding: clamp(32px, 5vw, 62px);
}

.mulligan-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.mulligan-panel[hidden] {
  display: none;
}

.verdict {
  margin-bottom: 13px;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-lead > p:last-child {
  color: var(--muted);
}

.card-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(41, 49, 38, 0.24);
}

.card-notes li {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(41, 49, 38, 0.24);
}

.card-notes strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.card-notes span {
  color: var(--muted);
  font-size: 0.9rem;
}

.field-section {
  position: relative;
  overflow-x: clip;
}

.field-section::before {
  content: "";
  position: absolute;
  top: 29%;
  right: -10vw;
  z-index: -1;
  width: 420px;
  height: 530px;
  border-radius: 56% 44% 62% 38% / 42% 55% 45% 58%;
  background: rgba(139, 157, 131, 0.26);
  transform: rotate(13deg);
}

.field-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.field-choice {
  min-height: 134px;
  padding: 22px;
  border: 1px solid rgba(41, 49, 38, 0.22);
  border-radius: var(--radius-md);
  background: rgba(212, 184, 149, 0.5);
  cursor: pointer;
  text-align: left;
  transition: background 400ms ease, color 400ms ease, transform 400ms ease;
}

.field-choice span,
.field-choice strong {
  display: block;
}

.field-choice span {
  margin-bottom: 19px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-choice strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.field-choice:hover,
.field-choice.is-active {
  background: var(--moss);
  color: var(--sand);
  transform: translateY(-3px);
}

.field-reading {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr 0.85fr;
  gap: 36px;
  margin-top: 12px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(41, 49, 38, 0.2);
  border-radius: var(--radius-md);
  background: var(--oat);
}

.field-reading h3 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.field-reading > p {
  margin: 0;
  color: var(--muted);
}

.field-caution {
  padding-left: 22px;
  border-left: 3px solid var(--terracotta);
}

.field-caution strong {
  color: var(--ink);
}

.turn-river {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(41, 49, 38, 0.2);
  border-radius: var(--radius-lg);
  background: var(--oat);
  box-shadow: var(--shadow-soft);
}

.turn-river article {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
}

.turn-river article + article {
  border-left: 1px solid rgba(41, 49, 38, 0.22);
}

.turn-river article:nth-child(2) {
  background: rgba(139, 157, 131, 0.32);
}

.turn-river article:nth-child(3) {
  background: var(--moss);
  color: var(--sand);
}

.turn-range {
  margin-bottom: 46px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.turn-river h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.turn-river article > p:not(.turn-range) {
  min-height: 130px;
  color: var(--muted);
}

.turn-river article:nth-child(3) > p:not(.turn-range) {
  color: rgba(232, 220, 199, 0.82);
}

.turn-river ul {
  margin: 24px 0 0;
  padding: 20px 0 0 18px;
  border-top: 1px solid rgba(41, 49, 38, 0.22);
}

.turn-river article:nth-child(3) ul {
  border-top-color: rgba(232, 220, 199, 0.28);
}

.turn-river li + li {
  margin-top: 9px;
}

.seven-point-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  margin: 16px 0 0 20%;
  padding: 20px 24px;
  border: 1px solid rgba(41, 49, 38, 0.2);
  border-radius: var(--radius-md);
  background: var(--terracotta);
}

.seven-point-note strong {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.seven-point-note p {
  margin: 0;
}

.combo-section {
  position: relative;
}

.combo-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid rgba(41, 49, 38, 0.4);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 350ms ease, color 350ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--moss);
  color: var(--sand);
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.combo-card {
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(41, 49, 38, 0.22);
  border-radius: var(--radius-md);
  background: rgba(212, 184, 149, 0.58);
  transition: opacity 350ms ease, transform 350ms ease, background 350ms ease;
}

.combo-card[open] {
  background: var(--oat);
}

.combo-card.is-filtered {
  display: none;
}

.combo-card summary {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.combo-card summary::-webkit-details-marker {
  display: none;
}

.combo-card summary::after {
  content: "+";
  position: absolute;
  top: 34px;
  right: 22px;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.combo-card[open] summary::after {
  content: "−";
}

.combo-card summary {
  position: relative;
  padding-right: 58px;
}

.combo-index {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  font-family: var(--serif);
}

.combo-card summary strong,
.combo-card summary small {
  display: block;
}

.combo-card summary strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.2;
}

.combo-card summary small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
}

.combo-body {
  padding: 0 26px 26px 86px;
}

.combo-body ol {
  margin: 0;
  padding-left: 18px;
}

.combo-body li + li {
  margin-top: 8px;
}

.combo-body p {
  margin: 18px 0 0;
  color: var(--muted);
}

.combo-body .trap {
  padding: 13px 15px;
  border-left: 3px solid var(--terracotta);
  background: rgba(232, 220, 199, 0.55);
  color: var(--ink);
}

.interaction-table {
  overflow-x: auto;
  border: 1px solid rgba(41, 49, 38, 0.22);
  border-radius: var(--radius-lg);
  background: var(--oat);
  box-shadow: var(--shadow-soft);
}

.interaction-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.interaction-table th,
.interaction-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(41, 49, 38, 0.2);
  text-align: left;
  vertical-align: top;
}

.interaction-table tr:last-child th,
.interaction-table tr:last-child td {
  border-bottom: 0;
}

.interaction-table thead {
  background: var(--moss);
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interaction-table tbody th {
  width: 18%;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.interaction-table tbody td {
  width: 41%;
  color: var(--muted);
}

.interaction-table tbody tr:nth-child(even) {
  background: rgba(139, 157, 131, 0.14);
}

.matchup-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(41, 49, 38, 0.2);
  border-radius: var(--radius-lg);
  background: var(--oat);
  box-shadow: var(--shadow-soft);
}

.matchup-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 28px;
  background: var(--moss);
}

.matchup-tab {
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(232, 220, 199, 0.36);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--sand);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  transition: background 350ms ease, color 350ms ease, transform 350ms ease;
}

.matchup-tab:hover,
.matchup-tab.is-active {
  background: var(--sand);
  color: var(--ink);
  transform: translateX(4px);
}

.matchup-reading {
  display: grid;
  align-content: center;
  max-width: 760px;
  padding: clamp(38px, 6vw, 76px);
}

.matchup-reading > p:not(.overline) {
  color: var(--muted);
  font-size: 1.02rem;
}

.matchup-reading ul {
  margin: 18px 0 0;
  padding: 18px 0 0 19px;
  border-top: 1px solid rgba(41, 49, 38, 0.2);
}

.matchup-reading li + li {
  margin-top: 8px;
}

.mistake-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border-radius: var(--radius-lg);
  background: rgba(41, 49, 38, 0.24);
  list-style: none;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mistake-list li {
  min-height: 178px;
  padding: 24px;
  background: var(--oat);
}

.mistake-list li:nth-child(2n) {
  background: rgba(139, 157, 131, 0.42);
}

.mistake-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.mistake-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.35;
}

.decklist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
}

.decklist-main,
.loadout {
  border: 1px solid rgba(41, 49, 38, 0.2);
  border-radius: var(--radius-lg);
  background: var(--oat);
  box-shadow: var(--shadow-soft);
}

.decklist-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(41, 49, 38, 0.2);
}

.decklist-toolbar p {
  margin: 0;
}

.decklist-toolbar > div > p:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.deck-count strong {
  margin-right: 6px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.deck-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deck-columns > section {
  padding: 28px;
}

.deck-columns > section + section {
  border-left: 1px solid rgba(41, 49, 38, 0.2);
}

.deck-columns h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--moss);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.deck-columns h3 span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
}

.deck-columns h3.secondary-list {
  margin-top: 28px;
}

.deck-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.deck-columns li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 6px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(41, 49, 38, 0.11);
  font-size: 0.84rem;
}

.deck-columns li > span {
  color: var(--terracotta);
  font-weight: 800;
}

.deck-columns li small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.68rem;
}

.loadout {
  padding: 30px;
  background: var(--moss);
  color: var(--sand);
}

.loadout .overline {
  color: var(--oat);
}

.loadout dl {
  margin: 30px 0;
}

.loadout dl div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(232, 220, 199, 0.24);
}

.loadout dt {
  color: rgba(232, 220, 199, 0.7);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loadout dd {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 1.06rem;
}

.loadout-note {
  margin: 0;
  padding-top: 22px;
  border-top: 3px solid var(--terracotta);
  color: rgba(232, 220, 199, 0.82);
  font-size: 0.86rem;
}

.reality-check {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 44px;
  margin-top: clamp(92px, 12vw, 154px);
  padding: clamp(36px, 6vw, 68px);
  border-radius: var(--radius-lg);
  background: var(--terracotta);
}

.reality-check h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
}

.reality-check > p {
  margin: 0;
}

.site-footer {
  margin-top: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--sand);
}

.footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(38px, 6vw, 70px);
}

.footer-main > div {
  max-width: 720px;
}

.footer-main .overline {
  color: var(--oat);
}

.footer-main h2 {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
}

.footer-main p:last-child {
  margin: 0;
  color: rgba(232, 220, 199, 0.74);
}

code {
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: rgba(232, 220, 199, 0.12);
  font-size: 0.88em;
}

.source-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(28px, 6vw, 70px);
  border-top: 1px solid rgba(232, 220, 199, 0.18);
  color: rgba(232, 220, 199, 0.68);
  font-size: 0.74rem;
}

.source-strip p {
  margin: 0;
}

.source-strip nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.source-strip a:hover {
  color: var(--oat);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 17px;
  border: 1px solid rgba(232, 220, 199, 0.24);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--sand);
  box-shadow: 0 12px 32px rgba(41, 49, 38, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes breathe-frame {
  from { transform: scale(0.98) rotate(-1deg); }
  to { transform: scale(1.025) rotate(1.3deg); }
}

@keyframes breathe-moon {
  from { transform: translateY(0) scale(0.98); }
  to { transform: translateY(-10px) scale(1.03); }
}

@keyframes sprite-float {
  from { transform: translate3d(-2px, 6px, 0) rotate(-3deg); }
  to { transform: translate3d(4px, -9px, 0) rotate(4deg); }
}

@keyframes heart-breathe {
  from { transform: scale(0.98) rotate(-1deg); }
  to { transform: scale(1.025) rotate(1.4deg); }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .field-nav {
    justify-content: flex-end;
  }

  .header-action {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-garden {
    min-height: 460px;
  }

  .compass-shell {
    grid-template-columns: 1fr;
  }

  .compass-map {
    min-height: 590px;
  }

  .mulligan-panel {
    grid-template-columns: 1fr;
  }

  .field-reading {
    grid-template-columns: 1fr 1fr;
  }

  .field-caution {
    grid-column: 1 / -1;
  }

  .turn-river {
    grid-template-columns: 1fr;
  }

  .turn-river article + article {
    border-top: 1px solid rgba(41, 49, 38, 0.22);
    border-left: 0;
  }

  .turn-river article > p:not(.turn-range) {
    min-height: 0;
  }

  .turn-range {
    margin-bottom: 24px;
  }

  .decklist-layout {
    grid-template-columns: 1fr;
  }

  .loadout {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 24px 40px;
  }

  .loadout dl {
    grid-column: 1;
    margin: 0;
  }

  .loadout-note {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
  }

  .reality-check {
    grid-template-columns: 1fr 1fr;
  }

  .reality-check > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 138px;
  }

  body {
    font-size: 16px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 10px;
    padding: 10px 12px 8px;
    border-radius: 20px;
  }

  .brand {
    padding-left: 2px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .field-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    overflow-x: auto;
  }

  .field-nav a {
    min-height: 44px;
    padding: 8px 4px;
    border-radius: 11px;
    background: rgba(139, 157, 131, 0.2);
    font-size: 0.69rem;
    text-align: center;
  }

  .field-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    margin-top: 14px;
    border-radius: var(--radius-md);
  }

  .hero-copy {
    padding: 40px 24px 34px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.5rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .deck-facts {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
  }

  .deck-facts div {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .deck-facts dd {
    margin: 0;
  }

  .hero-garden {
    min-height: 390px;
  }

  .north-star {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px;
  }

  .north-star span {
    width: 42px;
    margin: 0 auto;
  }

  .section {
    padding-top: 90px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .section-number {
    width: 58px;
  }

  .compass-shell,
  .mulligan-tool,
  .turn-river,
  .interaction-table,
  .matchup-shell,
  .decklist-main,
  .loadout {
    border-radius: var(--radius-md);
  }

  .compass-map {
    min-height: 430px;
  }

  .compass-node {
    min-width: 94px;
    min-height: 43px;
    padding: 6px 10px 6px 6px;
    font-size: 0.72rem;
  }

  .compass-node span {
    width: 28px;
    height: 28px;
  }

  .compass-node:nth-of-type(2) {
    right: 1%;
  }

  .compass-node:nth-of-type(4) {
    left: 1%;
  }

  .compass-heart {
    width: 124px;
    height: 124px;
  }

  .compass-heart strong {
    font-size: 3rem;
  }

  .compass-reading {
    padding: 36px 24px;
  }

  .compass-reading dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .rule-note {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-left: 0;
  }

  .mulligan-tool {
    grid-template-columns: 1fr;
  }

  .choice-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 12px;
  }

  .choice-tab {
    min-height: 46px;
    padding: 8px;
    text-align: center;
  }

  .choice-tab:hover,
  .choice-tab.is-active {
    transform: translateY(-2px);
  }

  .mulligan-panels {
    padding: 30px 22px;
  }

  .card-notes li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .field-selector {
    grid-template-columns: 1fr;
  }

  .field-choice {
    min-height: 96px;
  }

  .field-choice span {
    margin-bottom: 10px;
  }

  .field-reading {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px;
  }

  .field-caution {
    grid-column: auto;
  }

  .seven-point-note {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-left: 0;
  }

  .combo-grid {
    grid-template-columns: 1fr;
  }

  .combo-card summary {
    grid-template-columns: 42px 1fr;
    padding: 18px 48px 18px 16px;
  }

  .combo-body {
    padding: 0 20px 22px 20px;
  }

  .matchup-shell {
    grid-template-columns: 1fr;
  }

  .matchup-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 12px;
  }

  .matchup-tab {
    min-height: 50px;
    padding: 8px;
    font-size: 0.78rem;
    text-align: center;
  }

  .matchup-tab:hover,
  .matchup-tab.is-active {
    transform: translateY(-2px);
  }

  .matchup-reading {
    padding: 34px 24px;
  }

  .mistake-list {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  .mistake-list li {
    min-height: 0;
  }

  .mistake-list span {
    margin-bottom: 20px;
  }

  .decklist-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .deck-columns {
    grid-template-columns: 1fr;
  }

  .deck-columns > section + section {
    border-top: 1px solid rgba(41, 49, 38, 0.2);
    border-left: 0;
  }

  .loadout {
    display: block;
  }

  .loadout dl {
    margin: 26px 0;
  }

  .reality-check {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 90px;
    padding: 34px 24px;
    border-radius: var(--radius-md);
  }

  .reality-check > div {
    grid-column: auto;
  }

  .footer-main {
    align-items: stretch;
    flex-direction: column;
    padding: 38px 24px;
  }

  .source-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 24px;
  }

  .source-strip nav {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    --sand: #e8dcc7;
    --oat: #e8dcc7;
  }

  body {
    background: var(--sand);
    font-size: 10pt;
  }

  body::before,
  .grain,
  .site-header,
  .hero-garden,
  .hero-actions,
  .combo-filters,
  .text-button,
  .toast,
  .site-footer {
    display: none !important;
  }

  main {
    width: 100%;
  }

  .hero {
    display: block;
    min-height: 0;
    box-shadow: none;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero h1 {
    font-size: 46pt;
  }

  .section {
    padding-top: 42px;
    break-inside: avoid;
  }

  .section-heading h2 {
    font-size: 30pt;
  }

  .compass-shell,
  .mulligan-tool,
  .turn-river,
  .matchup-shell,
  .decklist-layout,
  .reality-check {
    box-shadow: none;
  }

  .combo-card {
    break-inside: avoid;
  }

  .combo-card:not([open]) .combo-body {
    display: block;
  }

  a {
    text-decoration: none;
  }
}
