/* Five Roosters shared foundation.

   Design tokens, the reset, base element styles, and the components that both
   the storefront and administration use. Loaded by every page; page-specific
   sheets load after it and build on it. */

:root {
  --ink: #271923;
  --ink-soft: #594751;
  --cream: #fff9ed;
  --paper: #fffdf8;
  --plum: #66153f;
  --plum-dark: #46102f;
  --raspberry: #b42659;
  --sun: #f3b735;
  --sun-dark: #7a4b00;
  --leaf: #176b61;
  --leaf-dark: #0b4c45;
  --peach: #f5d2bd;
  --line: #d9c9bc;
  --line-strong: #a98e80;
}

:root {
  --danger: color-mix(in srgb, var(--raspberry) 82%, black);
  --success: color-mix(in srgb, var(--leaf) 82%, black);
  --info: color-mix(in srgb, var(--leaf) 12%, white);
  --surface-raised: color-mix(in srgb, var(--paper) 55%, white);
  --surface-muted: color-mix(in srgb, var(--ink) 3%, var(--paper));
  --surface-subtle: color-mix(in srgb, var(--ink) 6%, var(--paper));
  --surface-neutral: color-mix(in srgb, var(--ink) 9%, var(--cream));
  --surface-disabled: color-mix(in srgb, var(--ink) 15%, white);
  --surface-danger: color-mix(in srgb, var(--danger) 8%, white);
  --surface-success: color-mix(in srgb, var(--success) 9%, white);
  --surface-success-strong: color-mix(in srgb, var(--success) 14%, white);
  --surface-warning: color-mix(in srgb, var(--sun) 28%, white);
  --text-disabled: color-mix(in srgb, var(--ink) 66%, white);
  --text-success: color-mix(in srgb, var(--success) 88%, black);
  --text-on-dark: color-mix(in srgb, var(--plum) 15%, white);
  --text-on-dark-strong: color-mix(in srgb, var(--cream) 94%, white);
  --text-on-dark-muted: color-mix(in srgb, var(--plum) 22%, white);
  --border-success: color-mix(in srgb, var(--success) 48%, white);
  --border-danger: color-mix(in srgb, var(--danger) 48%, white);
  --border-primary-soft: color-mix(in srgb, var(--plum) 22%, transparent);
  --border-on-dark-soft: rgb(255 255 255 / 16%);
  --border-on-dark: rgb(255 255 255 / 24%);
  --border-on-dark-medium: rgb(255 255 255 / 35%);
  --border-on-dark-strong: rgb(255 255 255 / 45%);
  --focus-ring: color-mix(in srgb, var(--leaf) 18%, transparent);
  --focus-ring-primary: color-mix(in srgb, var(--plum) 12%, transparent);
  --nutrition-ink: #111;
  --shadow: 0 0.75rem 2rem color-mix(in srgb, var(--ink) 10%, transparent);
  --shadow-card: 0 0.35rem 1rem color-mix(in srgb, var(--ink) 5%, transparent);
  --shadow-panel: 0 0.35rem 1.2rem color-mix(in srgb, var(--ink) 6%, transparent);
  --shadow-header: 0 0.2rem 0.8rem color-mix(in srgb, var(--ink) 15%, transparent);
  --radius-small: 0.25rem;
  --radius: 0.65rem;
  --max-width: 74rem;
  --reading-width: 46rem;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --step--1: clamp(0.82rem, 0.79rem + 0.12vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.16vw, 1.08rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.42vw, 1.45rem);
  --step-2: clamp(1.48rem, 1.32rem + 0.65vw, 1.9rem);
  --step-3: clamp(1.85rem, 1.57rem + 1.05vw, 2.55rem);
  --step-4: clamp(2.35rem, 1.94rem + 1.5vw, 3.35rem);
}

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

html {
  color-scheme: light;
  font-size: 100%;
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

a {
  color: var(--plum);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--raspberry);
}

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

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

h1,
h2,
h3 {
  margin-block: 0 0.7em;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-4);
}

h2 {
  font-size: var(--step-3);
}

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

p,
ul,
ol,
dl {
  margin-block: 0 1.1rem;
}

[hidden] {
  display: none !important;
}

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

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

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section--compact {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section--cream {
  background: var(--cream);
}

.section--peach {
  background: color-mix(in srgb, var(--peach) 55%, white);
}

.section--ink {
  color: var(--cream);
  background: var(--ink);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.section-heading > :last-child,
.section-heading--split > div > :last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link--sun,
.text-link--sun:hover {
  color: var(--sun);
}

.text-link:hover::after {
  transform: translateX(0.2rem);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.2rem;
  border: 0.125rem solid var(--plum);
  border-radius: var(--radius-small);
  color: white;
  background: var(--plum);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: white;
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  transform: translateY(-0.08rem);
}

.button > svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.button--small {
  min-height: 2.65rem;
  padding: 0.58rem 0.95rem;
  font-size: 0.88rem;
}

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

.button--sun:hover {
  color: white;
  background: var(--plum);
  border-color: var(--plum);
}

.button--cream {
  color: var(--plum);
  background: var(--cream);
  border-color: var(--cream);
}

.button--cream:hover {
  color: var(--cream);
  background: transparent;
  border-color: var(--cream);
}

.button--outline {
  color: var(--plum);
  background: transparent;
}

.button--outline:hover {
  color: white;
}

.button[aria-disabled="true"],
.button:disabled {
  color: var(--text-disabled);
  background: var(--surface-disabled);
  border-color: var(--surface-disabled);
  cursor: not-allowed;
  transform: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button-row--center {
  justify-content: center;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--leaf-dark);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.masthead {
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand:hover {
  color: var(--plum);
}

.brand__mark {
  width: 3rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
}

.brand-mark__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 0.2rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__descriptor {
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand__location {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.brand__location svg {
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 auto;
  fill: var(--raspberry);
}

.menu-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-content: center;
  gap: 0.3rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.4rem;
  height: 0.13rem;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.43rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.43rem) rotate(-45deg);
}

.primary-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 10;
  max-height: calc(100vh - 7.7rem);
  padding: 1rem;
  overflow: auto;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.primary-nav > a:not(.button) {
  display: block;
  padding: 0.8rem 0.55rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover,
.primary-nav > .page-link--current:not(.button) {
  color: var(--plum);
}

.primary-nav .button {
  width: 100%;
  margin-top: 1rem;
}

.service-strip {
  color: white;
  background: var(--leaf-dark);
}

.service-strip ul {
  display: grid;
  margin: 0;
  padding: 0.9rem 0;
  list-style: none;
}

.service-strip li {
  padding: 0.55rem 0;
  font-size: 0.88rem;
  font-weight: 750;
  text-align: center;
}

.service-strip li + li {
  border-top: 1px solid var(--border-on-dark);
}

.featured-menu-heading {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.featured-menu-link--mobile {
  margin-top: 1.5rem;
}

@media (min-width: 50rem) {
  .featured-menu-heading {
      flex-direction: row;
      align-items: end;
      gap: 1.5rem;
    }

  .featured-menu-link--mobile {
      display: none;
    }
}

.image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 1rem;
  color: var(--plum);
  background: var(--peach);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  text-align: center;
}

.image-fallback::before {
  content: "Five Roosters";
}

.badge {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 99rem;
  color: white;
  background: var(--leaf-dark);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

/* General page headers */

.page-hero {
  padding-block: clamp(2.8rem, 6vw, 5.2rem);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: 50rem;
}

.page-hero__inner > :last-child {
  margin-bottom: 0;
}

.page-shell {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.breadcrumbs {
  margin-bottom: 1.3rem;
  color: var(--ink-soft);
  font-size: var(--step--1);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.45rem;
  color: var(--line-strong);
  content: "/";
}

.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.2rem 0.2rem 0.65rem;
}

.tag-filter button {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  flex: 0 0 auto;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 99rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 780;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .tag-filter button:hover {
      color: var(--plum);
      background: color-mix(in srgb, var(--plum) 8%, var(--paper));
      border-color: var(--plum);
    }
}

.tag-filter button[aria-pressed="true"] {
  color: white;
  background: var(--plum);
  border-color: var(--plum);
}

.empty-state {
  max-width: 43rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-block: 1px solid var(--line);
  text-align: left;
}

.empty-state h2 {
  font-size: var(--step-2);
}

.service-message {
  width: fit-content;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  color: var(--leaf-dark);
  background: var(--info);
  border-left: 0.3rem solid var(--leaf);
}

.service-message p {
  margin: 0;
}

.variant-list {
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.variant-list li {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.variant-list__status {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.fact-section {
  min-width: 0;
}

.fact-section h2 {
  padding-bottom: 0.65rem;
  border-bottom: 0.18rem solid var(--sun);
  font-size: var(--step-2);
}

.ingredient-copy {
  line-height: 1.75;
}

.attribute-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attribute-list li {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--leaf);
  border-radius: 99rem;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.allergen-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.allergen-list li {
  padding: 0.75rem;
  color: var(--plum-dark);
  background: color-mix(in srgb, var(--peach) 50%, white);
  border-left: 0.25rem solid var(--raspberry);
  font-size: 0.86rem;
  font-weight: 800;
}

.cross-contact {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--cream);
  border: 1px solid var(--line-strong);
}

.cross-contact strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--danger);
}

.cross-contact p {
  margin: 0;
}

/* Content pages */

.content-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.prose {
  max-width: var(--reading-width);
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: var(--step-2);
}

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

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

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.aside-callout {
  padding: 1.4rem;
  background: var(--cream);
  border-top: 0.3rem solid var(--sun);
}

.aside-callout h2,
.aside-callout h3 {
  font-size: var(--step-1);
}

.aside-callout > :last-child {
  margin-bottom: 0;
}

.detail-list {
  margin: 0;
}

.detail-list div {
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  font-weight: 800;
}

.detail-list dd {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
}

.notice {
  padding: 1rem 1.1rem;
  background: var(--cream);
  border-left: 0.3rem solid var(--sun-dark);
}

.notice--important {
  background: var(--surface-danger);
  border-left-color: var(--danger);
}

.notice > :last-child {
  margin-bottom: 0;
}

.faq-list {
  max-width: 52rem;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
}

.faq-list summary::after {
  position: absolute;
  top: 1.25rem;
  right: 0.4rem;
  color: var(--plum);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 44rem;
  padding: 0 2rem 1.25rem 0;
  color: var(--ink-soft);
}

.faq-list details > div > :last-child {
  margin-bottom: 0;
}

/* Forms */

.form-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.form-section {
  margin: 0 0 2.4rem;
  padding: 0 0 2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.form-section legend {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.15;
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

.field {
  min-width: 0;
}

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

.field label,
.field-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.field-hint {
  display: block;
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: white;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leaf);
  outline: 0.2rem solid color-mix(in srgb, var(--leaf) 35%, transparent);
  outline-offset: 0.08rem;
}

.field-validation-error,
.validation-summary-errors {
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 750;
}

.input-validation-error {
  border-color: var(--danger) !important;
}

.validation-summary-errors {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--surface-danger);
  border-left: 0.3rem solid var(--danger);
}

.validation-summary-errors ul {
  margin: 0;
}

.validation-summary-valid {
  display: none;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.checkbox-field input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.23rem;
  accent-color: var(--plum);
}

.checkbox-field label {
  line-height: 1.45;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.form-actions p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

/* Errors */

.error-page {
  display: grid;
  min-height: 54vh;
  place-items: center;
  padding-block: 4rem;
  text-align: center;
}

.error-page__inner {
  max-width: 38rem;
}

.error-code {
  margin: 0 0 0.6rem;
  color: var(--raspberry);
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.error-reference {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.newsletter {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border-on-dark);
}

.newsletter h2 {
  margin-bottom: 0.45rem;
  font-size: var(--step-2);
}

.newsletter p a {
  color: white;
}

.newsletter p a:hover {
  color: var(--sun);
}

.newsletter .button {
  justify-self: start;
}

.brand--footer {
  color: white;
}

.brand--footer:hover {
  color: var(--sun);
}

.brand--footer .brand__mark,
.brand--footer .brand__descriptor {
  color: var(--sun);
}

@media (min-width: 36rem) {
  .service-strip ul {
      grid-template-columns: repeat(3, 1fr);
    }

  .service-strip li + li {
      border-top: 0;
      border-left: 1px solid var(--border-on-dark);
    }

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

  .newsletter {
      grid-template-columns: 1fr auto;
    }
}

@media (min-width: 50rem) {
  body.nav-open {
      overflow: auto;
    }

  .menu-toggle {
      display: none;
    }

  .primary-nav,
    .primary-nav[hidden] {
      position: static;
      display: flex !important;
      max-height: none;
      align-items: center;
      gap: clamp(0.65rem, 1.5vw, 1.35rem);
      padding: 0;
      overflow: visible;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

  .primary-nav > a:not(.button) {
      position: relative;
      padding: 0.6rem 0;
      border: 0;
      font-size: 0.86rem;
    }

  .primary-nav > .page-link--current:not(.button)::after {
      position: absolute;
      right: 0;
      bottom: 0.25rem;
      left: 0;
      height: 0.14rem;
      content: "";
      background: var(--sun);
    }

  .primary-nav .button {
      width: auto;
      margin: 0 0 0 0.25rem;
    }

  .content-grid {
      grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.35fr);
    }

  .form-layout {
      grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.38fr);
    }
}

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

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

@media print {
  .button,
  .breadcrumbs {
      display: none !important;
    }

  body {
      color: black;
      background: white;
    }
}

/* Prominent updates, social links, and special requests */

.header-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.header-socials {
  width: 100%;
  padding: 1rem 0.55rem 0.15rem;
}

.updates-feature {
  color: white;
  background: var(--plum);
}

.updates-feature__inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding-block: clamp(1.5rem, 4vw, 2.75rem);
}

.updates-feature h2,
.updates-feature p:last-child {
  margin-bottom: 0;
}

@media (min-width: 50rem) {
  .header-socials {
      width: auto;
      padding: 0;
    }
}

.subscription-consent-options__choices {
  display: grid;
  gap: 0.85rem;
}

.subscription-consent-option__subtext {
  margin-left: 2rem;
}

@media (min-width: 52rem) {
  .updates-feature__inner {
      grid-template-columns: minmax(0, 1fr) auto;
    }
}

.button--danger {
  color: var(--danger);
  background: transparent;
  border-color: currentcolor;
}

.button--danger:hover {
  color: white;
  background: var(--danger);
  border-color: var(--danger);
}

.menu-preview-hero {
  padding: clamp(1.5rem, 4vw, 3rem);
  color: white;
  background: linear-gradient(135deg, var(--plum), var(--raspberry));
  border-radius: var(--radius);
}

.menu-preview-hero h2,
.menu-preview-hero p:last-child {
  margin-bottom: 0;
}

.menu-preview-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.menu-preview-card {
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
}

@media (min-width: 48rem) {
  .menu-preview-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 72rem) {
  .menu-preview-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pickup-picker {
  display: grid;
  gap: 1.4rem;
}

.pickup-picker__step h3 {
  margin-bottom: 0.7rem;
  font-size: var(--step-0);
}

.pickup-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.65rem;
}

.pickup-day {
  display: grid;
  gap: 0.1rem;
  min-height: 6.5rem;
  padding: 0.75rem;
  color: var(--ink);
  text-align: left;
  background: var(--surface-muted);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.pickup-day:hover {
  border-color: var(--leaf);
}

.pickup-day:focus-visible,
.pickup-window:focus-within {
  outline: 0.2rem solid color-mix(in srgb, var(--leaf) 35%, transparent);
  outline-offset: 0.12rem;
}

.pickup-day--active {
  background: color-mix(in srgb, var(--leaf) 12%, white);
  border-color: var(--leaf);
  box-shadow: inset 0 0 0 1px var(--leaf);
}

.pickup-day__weekday,
.pickup-day > span:last-child,
.pickup-window small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.pickup-day__lead-time {
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 800;
}

.pickup-day strong {
  font-size: var(--step-1);
}

.pickup-date-panel {
  padding: 1rem;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.pickup-date-panel__date {
  margin-bottom: 0.7rem;
  font-weight: 800;
}

.pickup-windows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.65rem;
}

.pickup-window {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.pickup-window:hover,
.pickup-window:has(input:checked) {
  border-color: var(--leaf);
}

.pickup-window:has(input:checked) {
  background: color-mix(in srgb, var(--leaf) 10%, white);
  box-shadow: inset 0 0 0 1px var(--leaf);
}

.pickup-window input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  accent-color: var(--leaf);
}

.pickup-window span,
.pickup-window small {
  display: block;
}

.pickup-details-text {
  display: block;
  white-space: pre-line;
}

@media print {
  [data-recipe-nutrition-panel] {
      display: block !important;
      padding: 0 !important;
      border: 0 !important;
      box-shadow: none !important;
    }
}

[data-sound-toggle][aria-pressed="false"] {
  color: var(--ink-soft);
  opacity: 0.75;
}

@keyframes admin-arrive-pulse {

  0%, 100% { background: var(--sun); }
  50% { background: var(--peach); }
}

@keyframes admin-timer-flash {

  0%, 100% { background: var(--danger); }
  50% { background: var(--raspberry); }
}

@keyframes admin-notice-in {

  from { opacity: 0; transform: translateY(-0.4rem); }
  to { opacity: 1; transform: none; }
}
