:root {
  --ink: #211a16;
  --muted: #6c5f57;
  --paper: #fff8ec;
  --paper-strong: #fff1d6;
  --leaf: #4d7b4b;
  --leaf-dark: #2d5630;
  --blue: #176982;
  --red: #b54735;
  --gold: #d6a43a;
  --line: rgba(33, 26, 22, 0.16);
  --white: #fffef9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(214, 164, 58, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--paper) 0%, #f7ead1 100%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 248, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 18px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px) 46px;
  overflow: hidden;
}

.hero-home {
  background:
    linear-gradient(135deg, rgba(77, 123, 75, 0.15), transparent 42%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.26));
}

.hero-copy {
  max-width: 760px;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7rem, 7rem);
  line-height: 0.92;
  max-width: 850px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5rem, 3.5rem);
  line-height: 1;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
}

.button.primary {
  background: var(--gold);
}

.button.ghost {
  background: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 430px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 105, 130, 0.14), transparent 40%),
    repeating-linear-gradient(90deg, rgba(33, 26, 22, 0.05) 0 1px, transparent 1px 34px),
    var(--paper-strong);
  box-shadow: 10px 10px 0 var(--ink);
}

.potato {
  position: absolute;
  display: block;
  border: 2px solid var(--ink);
  border-radius: 58% 44% 52% 46%;
  background:
    radial-gradient(circle at 28% 35%, rgba(255, 255, 255, 0.55), transparent 15%),
    radial-gradient(circle at 62% 62%, rgba(33, 26, 22, 0.18), transparent 7%),
    radial-gradient(circle at 38% 72%, rgba(33, 26, 22, 0.13), transparent 6%),
    #d9b36e;
}

.potato.big {
  width: 230px;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -44%) rotate(-9deg);
}

.potato.small {
  width: 96px;
  height: 126px;
}

.potato.one {
  left: 14%;
  top: 18%;
  transform: rotate(22deg);
}

.potato.two {
  right: 12%;
  bottom: 13%;
  transform: rotate(-28deg);
}

.steam {
  position: absolute;
  inset: 46px 0 auto;
  margin: auto;
  width: 170px;
  height: 90px;
  border-top: 5px solid rgba(23, 105, 130, 0.5);
  border-radius: 50%;
}

.answer-band {
  background: var(--leaf-dark);
  color: var(--white);
  padding: 34px 18px;
}

.answer-band .eyebrow,
.answer-band p {
  color: rgba(255, 254, 249, 0.82);
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.answer-grid p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.table-wrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-family: Verdana, Geneva, sans-serif;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--blue);
  color: var(--white);
}

tr:last-child td {
  border-bottom: 0;
}

.split-section {
  background: rgba(255, 255, 255, 0.34);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.steps {
  padding-left: 1.2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.note {
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 24px;
  background: var(--gold);
  box-shadow: 6px 6px 0 var(--ink);
}

.note p {
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-card {
  min-height: 150px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.guide-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.guide-card span {
  display: block;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 900;
  margin-bottom: 10px;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.content-page {
  padding: 64px 0 82px;
}

.page-hero {
  padding: 64px 0 28px;
}

.breadcrumb {
  width: min(1120px, calc(100% - 36px));
  margin: 24px auto 0;
  color: var(--muted);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.84rem;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.page-hero .lead {
  max-width: 820px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-body h2 {
  margin-top: 48px;
  font-size: 2.3rem;
}

.article-body h3 {
  margin-top: 28px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.source-note {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}

.source-note a {
  color: var(--blue);
  font-weight: 800;
}

.sidebox {
  position: sticky;
  top: 86px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.sidebox a {
  display: block;
  margin: 12px 0;
  color: var(--blue);
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 800;
}

.timer-tool {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--leaf-dark);
  color: var(--white);
  padding: clamp(18px, 4vw, 34px);
  box-shadow: 8px 8px 0 var(--ink);
}

.timer-display {
  font-family: Verdana, Geneva, sans-serif;
  font-size: clamp(3.5rem, 7rem, 7rem);
  font-weight: 900;
  line-height: 1;
  margin: 20px 0;
}

.timer-options,
.timer-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.timer-options button,
.timer-controls button {
  min-height: 44px;
  border: 2px solid var(--white);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.timer-options button {
  padding: 9px 12px;
}

.timer-controls button {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  border-color: var(--ink);
}

.timer-options .is-active {
  background: var(--white);
  color: var(--leaf-dark);
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .hero,
  .answer-grid,
  .split,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 300px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebox {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .footer {
    flex-direction: column;
  }
}
