:root {
  color-scheme: light;
  --ink: #17342f;
  --ink-soft: #38544e;
  --paper: #f7f4ec;
  --paper-deep: #ece7da;
  --mint: #b9e4d1;
  --mint-bright: #d9f3e7;
  --sun: #f1c96b;
  --tater-teal: #2f7180;
  --tater-ocean: #75a7a8;
  --tater-orange: #dd7a39;
  --tater-sun: #efa43c;
  --tater-cream: #f5e6c8;
  --tater-ink: #173b36;
  --white: #fffdf8;
  --line: rgba(23, 52, 47, 0.18);
  --shadow: 0 1.5rem 4rem rgba(23, 52, 47, 0.1);
  --font-display: Georgia, "Times New Roman", serif;
  --font-tater: "Cooper Black", "Cooper Std Black", Georgia, serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --step--1: clamp(0.82rem, 0.78rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.25rem, 1.12rem + 0.65vw, 1.65rem);
  --step-2: clamp(1.7rem, 1.35rem + 1.7vw, 2.7rem);
  --step-3: clamp(2.4rem, 1.55rem + 4.2vw, 5.2rem);
  --step-4: clamp(3.25rem, 1.65rem + 8vw, 8.8rem);
  --space-xs: clamp(0.55rem, 0.45rem + 0.45vw, 0.9rem);
  --space-s: clamp(0.9rem, 0.7rem + 0.8vw, 1.4rem);
  --space-m: clamp(1.4rem, 1rem + 1.8vw, 2.6rem);
  --space-l: clamp(2.3rem, 1.5rem + 4vw, 5rem);
  --space-xl: clamp(4rem, 2rem + 8vw, 9rem);
  --content: 76rem;
  --measure: 42rem;
  --radius: 0.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--sun);
}

:focus-visible {
  outline: 0.2rem solid var(--ink);
  outline-offset: 0.25rem;
}

::selection {
  background: var(--sun);
  color: var(--ink);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  font-size: var(--step-4);
  max-width: 10ch;
}

h2 {
  font-size: var(--step-3);
  max-width: 13ch;
}

h3 {
  font-size: var(--step-2);
}

p {
  max-width: var(--measure);
}

.skip-link {
  position: fixed;
  z-index: 100;
  inset: 0.75rem auto auto 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-200%);
}

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

.shell {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
}

.nav {
  display: flex;
  gap: var(--space-s);
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem clamp(0.8rem, 0.5rem + 1vw, 1.7rem);
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-list a[aria-current="page"] {
  border-bottom: 0.15rem solid var(--sun);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -11rem;
  bottom: -15rem;
  width: clamp(20rem, 42vw, 42rem);
  aspect-ratio: 1;
  border: clamp(2rem, 7vw, 7rem) solid var(--mint);
  border-radius: 50%;
  content: "";
  opacity: 0.8;
}

.eyebrow {
  margin-bottom: var(--space-m);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: var(--space-m);
}

.hero-copy {
  color: var(--ink-soft);
  font-size: var(--step-1);
  max-width: 39rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-m);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-0.12rem);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-primary:hover {
  background: var(--sun);
  color: var(--ink);
}

.section {
  padding-block: var(--space-xl);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  gap: var(--space-l);
}

.section-label {
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  color: var(--ink-soft);
  font-size: var(--step-1);
}

.feature {
  position: relative;
  overflow: hidden;
  background: var(--tater-teal);
  color: var(--white);
}

.feature .section-label,
.feature .lead {
  color: var(--tater-cream);
}

.feature::before {
  position: absolute;
  top: -16rem;
  right: -10rem;
  width: 34rem;
  aspect-ratio: 1;
  border: 5.5rem solid rgba(239, 164, 60, 0.45);
  border-radius: 50%;
  content: "";
}

.feature::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 0.45rem;
  background: var(--tater-orange);
  content: "";
}

.feature .shell {
  position: relative;
  z-index: 1;
}

.feature-mark {
  display: grid;
  width: min(100%, 28rem);
  aspect-ratio: 1.35;
  place-items: center;
  padding: var(--space-m);
  border: 1px solid rgba(245, 230, 200, 0.6);
  background: linear-gradient(145deg, var(--tater-cream), #fff7e8);
  color: var(--tater-teal);
  font-family: var(--font-tater);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.76;
  text-align: center;
  text-shadow: 0.035em 0.035em 0 var(--tater-sun);
  transform: rotate(-1deg);
}

.tater-name {
  font-family: var(--font-tater);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.tater-note {
  color: var(--tater-cream);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.principles {
  display: grid;
  gap: 1px;
  margin: var(--space-l) 0 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.principles li {
  min-height: 9rem;
  padding: var(--space-m);
  background: var(--paper);
}

.principles strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 400;
}

.cta-panel {
  padding: var(--space-l);
  background: var(--mint);
  box-shadow: var(--shadow);
}

.page-hero {
  padding-block: var(--space-xl) var(--space-l);
}

.page-hero h1 {
  margin-bottom: var(--space-m);
}

.prose {
  padding-block: 0 var(--space-xl);
}

.prose h2 {
  margin-top: var(--space-l);
  font-size: var(--step-2);
  max-width: 22ch;
}

.prose h3 {
  margin-top: var(--space-m);
  font-size: var(--step-1);
}

.notice {
  max-width: var(--measure);
  margin-bottom: var(--space-l);
  padding: var(--space-m);
  border-left: 0.35rem solid var(--sun);
  background: var(--white);
}

.contact-card {
  display: grid;
  gap: var(--space-s);
  max-width: 48rem;
  padding: var(--space-l);
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-card p {
  margin-bottom: 0;
}

.site-footer {
  padding-block: var(--space-l);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: var(--space-m);
}

.footer-title {
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
}

.footer-copy {
  color: var(--ink-soft);
  font-size: var(--step--1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  font-size: var(--step--1);
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 48rem) {
  .shell {
    width: min(calc(100% - 4rem), var(--content));
  }

  .section-grid {
    grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.3fr);
    align-items: start;
  }

  .feature .section-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
    align-items: center;
  }

  .principles {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 35rem) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1.2rem;
  }

  .nav-list {
    justify-content: flex-start;
  }

  .actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
