:root {
  color-scheme: light;
  --ink: #142c36;
  --ink-soft: #4d626b;
  --paper: #f3f6f2;
  --paper-deep: #e4ece8;
  --white: #fefffc;
  --fennel: #2f6b57;
  --fennel-dark: #214f40;
  --fennel-pale: #dcebe5;
  --bluebell: #7895aa;
  --berry: #8e6f86;
  --line: #cad8d2;
  --shadow: 0 22px 64px rgb(20 44 54 / 10%);
  --display: Georgia, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, transparent 0 49px, rgb(120 149 170 / 12%) 50px, transparent 51px),
    radial-gradient(circle at 90% -10%, rgb(120 149 170 / 20%), transparent 30rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--fennel-dark);
  text-decoration-color: rgb(47 107 87 / 45%);
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.18em;
}

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

a:focus-visible,
summary:focus-visible {
  border-radius: 0.25rem;
  outline: 3px solid rgb(120 149 170 / 75%);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header,
.site-footer,
.page-shell {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(47 107 87 / 28%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 18px rgb(20 44 54 / 8%);
  color: var(--fennel-dark);
  font: 700 1.05rem/1 var(--display);
}

.brand-mark::before {
  position: absolute;
  right: 0.48rem;
  bottom: 0.48rem;
  left: 0.48rem;
  height: 0.45rem;
  border-bottom: 2px solid var(--fennel);
  border-radius: 0 0 50% 50%;
  content: "";
}

.brand-mark::after {
  position: absolute;
  top: 0.35rem;
  right: 0.56rem;
  width: 1px;
  height: 1rem;
  background: var(--bluebell);
  content: "";
  transform: rotate(24deg);
  transform-origin: bottom;
}

.brand-name {
  display: grid;
  gap: 0.05rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-name small {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 750;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration-color: var(--bluebell);
}

.page-shell {
  padding-block: clamp(3.5rem, 8vw, 7.5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.75fr);
  gap: clamp(2rem, 6vw, 6.5rem);
  align-items: end;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--fennel);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.92;
}

.document h1 {
  max-width: 16ch;
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  line-height: 0.98;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

p,
ul,
ol,
dl {
  margin-top: 0;
}

.lede {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2.4vw, 1.35rem);
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--fennel-dark);
  border-radius: 0.75rem;
  background: var(--fennel-dark);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.kitchen-note {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem 0.3rem 1.25rem 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.kitchen-note::before {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 0.42rem 0.7rem;
  border-radius: 0 0.3rem 0 0.6rem;
  background: var(--bluebell);
  color: var(--white);
  content: "LOCAL";
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.kitchen-note dl {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.kitchen-note dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.kitchen-note dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.kitchen-note dt {
  color: var(--ink-soft);
}

.kitchen-note dd {
  margin: 0;
  color: var(--fennel-dark);
  font-weight: 850;
}

.section {
  padding-top: clamp(4rem, 9vw, 7rem);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.7rem;
}

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

.card {
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgb(254 255 252 / 88%);
}

.card p:last-child {
  margin-bottom: 0;
}

.card-label {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--berry);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.callout {
  margin-top: 2rem;
  padding: 1.2rem 1.35rem;
  border-left: 4px solid var(--bluebell);
  border-radius: 0 0.75rem 0.75rem 0;
  background: rgb(220 235 229 / 72%);
}

.callout strong {
  color: var(--fennel-dark);
}

.document {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 20rem);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
}

.document-copy {
  min-width: 0;
}

.document-meta {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.document section {
  padding-top: 3rem;
}

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

.document li + li {
  margin-top: 0.65rem;
}

.document-aside {
  position: sticky;
  top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--white);
  box-shadow: 0 14px 44px rgb(20 44 54 / 7%);
}

.document-aside h2 {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-aside ol {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.92rem;
}

.document-aside li + li {
  margin-top: 0.45rem;
}

.steps {
  padding-left: 1.5rem;
}

.steps li {
  padding-left: 0.35rem;
}

.steps strong {
  color: var(--fennel-dark);
}

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

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 1rem 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

details > div {
  padding: 0 0 1rem;
  color: var(--ink-soft);
}

details > div p:last-child {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.2rem;
  background: var(--ink);
  color: var(--white);
}

.contact-card h2,
.contact-card p {
  color: inherit;
}

.contact-card p {
  max-width: 45rem;
  margin-bottom: 0;
  color: rgb(254 255 252 / 78%);
}

.contact-card a {
  color: var(--white);
  text-decoration-color: rgb(254 255 252 / 45%);
}

.contact-card .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  white-space: nowrap;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.8rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 100% -5%, rgb(120 149 170 / 18%), transparent 20rem),
      var(--paper);
  }

  .site-header {
    min-height: 4.8rem;
  }

  .brand-name small {
    display: none;
  }

  .site-nav {
    gap: 0.7rem;
    font-size: 0.82rem;
  }

  .page-shell {
    padding-top: 3.5rem;
  }

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

  .hero {
    align-items: start;
  }

  .kitchen-note {
    margin-top: 0.5rem;
  }

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

  .document-aside {
    display: none;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .contact-card .button {
    justify-self: start;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 1rem;
  }

  .site-header,
  .site-footer,
  .page-shell {
    width: min(100% - 1.25rem, 72rem);
  }

  .site-nav a:first-child {
    display: none;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }
}

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

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

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .skip-link,
  .site-nav,
  .action-row,
  .document-aside {
    display: none;
  }

  .site-header,
  .site-footer,
  .page-shell {
    width: 100%;
  }

  .site-header {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .document {
    display: block;
  }

  a {
    color: inherit;
  }
}
