/* ==========================================================================
   Graze Craze — North Boca Raton, FL
   Local franchise site stylesheet

   CONTENTS
   01. Design tokens
   02. Reset & base
   03. Typography
   04. Layout helpers (container, section, grid)
   05. Buttons & links
   06. Header / navigation
   07. Hero
   08. Trust bar
   09. Feature blocks & value props
   10. Board / product cards
   11. Size ladder
   12. Occasions grid
   13. Split bands (owner, catering)
   14. Menu page
   15. Reviews & rating badge
   16. Forms
   17. Contact & map
   18. CTA band
   19. Footer
   20. Utilities & motion
   21. Responsive
   ========================================================================== */

/* ==========================================================================
   01. Design tokens
   ========================================================================== */
:root {
  /* Brand — sampled from the Graze Craze logo */
  --teal-900: #0e2f35;
  --teal-800: #123c44;
  --teal-700: #184a53; /* primary brand teal */
  --teal-600: #1f5d68;
  --teal-500: #2c7480;

  --green-700: #2f7a49;
  --green-600: #3b8f58;
  --green-500: #48a667; /* brand green */
  --green-400: #6cc088;
  --green-100: #e6f4ea;

  /* Neutrals — warm, food-friendly */
  --cream: #fbf7f0;
  --cream-2: #f5eee2;
  --sand: #e9ddc9;
  --line: #e3dccf;

  --ink: #17211f;
  --body: #495451;
  --muted: #7b8783;
  --white: #ffffff;

  --gold: #c9932a;

  /* Gradients */
  --grad-teal: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-600) 100%);
  --grad-green: linear-gradient(135deg, var(--green-600) 0%, var(--green-400) 100%);
  --grad-scrim: linear-gradient(
    180deg,
    rgba(14, 47, 53, 0.72) 0%,
    rgba(14, 47, 53, 0.46) 45%,
    rgba(14, 47, 53, 0.78) 100%
  );

  /* Type */
  --font-display: "Poppins", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-accent: "Fraunces", Georgia, "Times New Roman", serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.13vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.18vw, 1.09rem);
  --step-1: clamp(1.18rem, 1.1rem + 0.35vw, 1.4rem);
  --step-2: clamp(1.42rem, 1.28rem + 0.65vw, 1.85rem);
  --step-3: clamp(1.7rem, 1.45rem + 1.15vw, 2.5rem);
  --step-4: clamp(2.05rem, 1.6rem + 2.1vw, 3.4rem);
  --step-5: clamp(2.45rem, 1.7rem + 3.4vw, 4.5rem);

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  --container: 1200px;
  --container-narrow: 780px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 47, 53, 0.06), 0 2px 8px rgba(14, 47, 53, 0.05);
  --shadow: 0 4px 12px rgba(14, 47, 53, 0.08), 0 14px 34px rgba(14, 47, 53, 0.09);
  --shadow-lg: 0 10px 24px rgba(14, 47, 53, 0.1), 0 28px 64px rgba(14, 47, 53, 0.14);

  --header-h: 82px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   02. Reset & base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  color: var(--teal-700);
  text-decoration: none;
}

a:hover {
  color: var(--green-600);
}

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   03. Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-4);
  font-weight: 700;
}

h1 {
  font-size: var(--step-5);
}
h2 {
  font-size: var(--step-4);
}
h3 {
  font-size: var(--step-2);
}
h4 {
  font-size: var(--step-1);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 var(--sp-4);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 var(--sp-4);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

.eyebrow--light {
  color: var(--green-400);
}

.eyebrow--center {
  justify-content: center;
}

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--body);
}

.accent-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--sp-7);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   04. Layout helpers
   ========================================================================== */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, var(--container-narrow));
}

.section {
  padding-block: clamp(3.5rem, 2rem + 6vw, 7rem);
}

.section--tight {
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
}

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

.section--teal {
  background: var(--teal-800);
  color: rgba(255, 255, 255, 0.82);
}

.section--teal h2,
.section--teal h3,
.section--teal h4 {
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--sp-5);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* ==========================================================================
   05. Buttons & links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(72, 166, 103, 0.32);
}

.btn--primary:hover {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(72, 166, 103, 0.38);
}

.btn--teal {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(24, 74, 83, 0.28);
}

.btn--teal:hover {
  background: var(--teal-800);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-700);
}

.btn--outline:hover {
  background: var(--teal-700);
  color: var(--white);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.btn--ghost-light:hover {
  background: var(--white);
  color: var(--teal-800);
  border-color: var(--white);
}

.btn--sm {
  padding: 0.7em 1.25em;
  font-size: var(--step--1);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-700);
}

.text-link::after {
  content: "→";
  transition: transform 0.18s var(--ease);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   06. Header / navigation
   ========================================================================== */
.topbar {
  background: var(--teal-800);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--step--1);
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2) var(--sp-5);
  padding-block: 0.6rem;
  text-align: center;
}

.topbar a {
  color: var(--white);
  font-weight: 600;
}

.topbar a:hover {
  color: var(--green-400);
}

.topbar__dot {
  color: rgba(255, 255, 255, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 240, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-header.is-stuck {
  box-shadow: 0 2px 18px rgba(14, 47, 53, 0.09);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 52px;
}

.brand__sub {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--teal-800);
  padding-block: 0.4rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transition: width 0.2s var(--ease);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  width: 100%;
}

.nav__link[aria-current="page"] {
  font-weight: 700;
  color: var(--teal-700);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-700);
  white-space: nowrap;
}

.nav__phone:hover {
  color: var(--green-600);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--teal-800);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.24s var(--ease), opacity 0.18s var(--ease);
}

.nav-toggle span {
  top: 50%;
  margin-top: -1px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
  transform: none;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   07. Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 78vh, 760px);
  padding-block: clamp(3rem, 6vw, 5.5rem);
  isolation: isolate;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad-scrim);
}

.hero__content {
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(14, 47, 53, 0.4);
  margin-bottom: var(--sp-5);
}

.hero__lead {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.94);
  max-width: 56ch;
  margin-bottom: var(--sp-6);
  text-shadow: 0 1px 14px rgba(14, 47, 53, 0.45);
}

.hero .eyebrow {
  color: var(--white);
  background: rgba(72, 166, 103, 0.9);
  padding: 0.45em 1em;
  border-radius: var(--radius-pill);
  letter-spacing: 0.12em;
}

.hero .eyebrow::before {
  display: none;
}

/* Page header (interior pages) */
.page-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.5rem, 3rem + 5vw, 6.5rem);
  color: var(--white);
  text-align: center;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(14, 47, 53, 0.78) 0%,
    rgba(14, 47, 53, 0.68) 100%
  );
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--step-1);
  max-width: 62ch;
  margin-inline: auto;
}

.page-hero .eyebrow {
  color: var(--green-400);
  justify-content: center;
}

/* ==========================================================================
   08. Trust bar
   ========================================================================== */
.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4) var(--sp-7);
  padding-block: var(--sp-5);
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-800);
}

.trustbar__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--green-500);
}

.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
}

.stars svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   09. Feature blocks & value props
   ========================================================================== */
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  height: 100%;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: var(--sp-4);
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-600);
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-size: var(--step-1);
  margin-bottom: var(--sp-2);
}

.value-card p {
  font-size: 0.97rem;
  margin: 0;
}

/* ==========================================================================
   10. Board / product cards
   ========================================================================== */
.board-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.board-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.board-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream-2);
}

.board-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.board-card:hover .board-card__media img {
  transform: scale(1.05);
}

.board-card__tag {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 0.35em 0.85em;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-card__tag--green {
  background: var(--green-500);
  color: var(--white);
}

.board-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--sp-5);
}

.board-card__body h3 {
  font-size: var(--step-1);
  margin-bottom: var(--sp-2);
}

.board-card__body p {
  font-size: 0.95rem;
  margin-bottom: var(--sp-4);
}

.board-card__meta {
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--muted);
}

.board-card__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-700);
}

/* ==========================================================================
   11. Size ladder
   ========================================================================== */
.ladder {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.ladder__step {
  position: relative;
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.ladder__step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: var(--sp-1);
}

.ladder__step span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
}

.ladder__serves {
  display: inline-block;
  margin-bottom: var(--sp-3);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-pill);
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   12. Occasions grid
   ========================================================================== */
.occasion {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  padding: var(--sp-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.occasion img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.occasion::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(14, 47, 53, 0.1) 0%,
    rgba(14, 47, 53, 0.34) 40%,
    rgba(14, 47, 53, 0.9) 100%
  );
}

.occasion:hover img {
  transform: scale(1.06);
}

.occasion h3 {
  color: var(--white);
  font-size: var(--step-1);
  margin-bottom: var(--sp-1);
}

.occasion p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.occasion--tall {
  min-height: 340px;
}

/* ==========================================================================
   13. Split bands
   ========================================================================== */
.split {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split--reverse .split__media {
  order: 2;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1em;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-800);
}

.badge svg {
  width: 16px;
  height: 16px;
  color: var(--green-500);
}

.section--teal .badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

/* Owner portrait --------------------------------------------------------- */
.portrait {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.portrait__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.portrait__frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: var(--grad-green);
}

.portrait__frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.portrait__caption {
  margin: var(--sp-4) 0 0;
}

.portrait__name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.portrait__role {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
}

.section--teal .portrait__name {
  color: var(--white);
}

.section--teal .portrait__role {
  color: var(--green-400);
}

/* Small byline with avatar ------------------------------------------------ */
.avatar-line {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.avatar-line img {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-500);
}

.avatar-line strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
}

.avatar-line span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
}

.section--teal .avatar-line strong {
  color: var(--white);
}

.section--teal .avatar-line span {
  color: rgba(255, 255, 255, 0.72);
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--sp-3);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-500)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

/* ==========================================================================
   14. Menu page
   ========================================================================== */
.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding-block: var(--sp-3);
}

.menu-nav__list {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 2px;
}

.menu-nav__list a {
  flex-shrink: 0;
  padding: 0.55em 1.1em;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-800);
  white-space: nowrap;
}

.menu-nav__list a:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: var(--white);
}

.menu-group {
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.menu-group:last-of-type {
  border-bottom: 0;
}

.menu-group__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.menu-group__head h2 {
  font-size: var(--step-3);
  margin: 0;
}

.menu-group__serves {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-600);
}

.price-note {
  background: var(--green-100);
  border: 1px solid rgba(72, 166, 103, 0.3);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.92rem;
  color: var(--teal-800);
}

.price-note strong {
  color: var(--teal-700);
}

.simple-list {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.simple-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 0.8em 1em;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.simple-list b {
  font-family: var(--font-display);
  color: var(--teal-700);
  white-space: nowrap;
}

/* Order links — each row deep-links to that item on the Toast ordering site */
.order-list {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}

.order-list--grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-2);
  border-top: 0;
  padding-top: 0;
}

.order-list__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-2);
}

.order-list a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.6em 0.75em;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--teal-800);
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease);
}

.order-list--grid a {
  border: 1px solid var(--line);
  background: var(--white);
}

.order-list a:hover,
.order-list a:focus-visible {
  background: var(--green-100);
  color: var(--teal-700);
}

.order-list a span {
  flex: 1;
}

.order-list a b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-700);
  white-space: nowrap;
}

.order-list a::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.45;
  background: currentColor;
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease);
  -webkit-mask: var(--icon-external) center / contain no-repeat;
  mask: var(--icon-external) center / contain no-repeat;
}

.order-list a:hover::after,
.order-list a:focus-visible::after {
  opacity: 1;
  transform: translate(1px, -1px);
}

:root {
  --icon-external: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
}

.btn--order::after {
  content: "";
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask: var(--icon-external) center / contain no-repeat;
  mask: var(--icon-external) center / contain no-repeat;
}

.order-note {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: var(--sp-5);
  font-size: 0.93rem;
}

.order-note svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--green-600);
  margin-top: 2px;
}

/* ==========================================================================
   15. Reviews & rating badge
   ========================================================================== */
.rating-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5) var(--sp-7);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.rating-card__score {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 700;
  color: var(--teal-700);
  line-height: 1;
}

.rating-card__label {
  font-size: 0.9rem;
  color: var(--muted);
}

.rating-card .stars svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   16. Forms
   ========================================================================== */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: var(--sp-4);
}

.field-row {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-800);
  margin-bottom: 0.4rem;
}

.req {
  color: var(--green-600);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8em 1em;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(72, 166, 103, 0.16);
}

input::placeholder,
textarea::placeholder {
  color: #a7b0ad;
}

.field-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.form-status {
  display: none;
  margin-top: var(--sp-4);
  padding: 0.9em 1.1em;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
}

.form-status.is-visible {
  display: block;
}

.form-status--ok {
  background: var(--green-100);
  color: var(--green-700);
  border: 1px solid rgba(72, 166, 103, 0.35);
}

.form-status--err {
  background: #fdecec;
  color: #a32b2b;
  border: 1px solid #f3c9c9;
}

/* Message lightbox ------------------------------------------------------- */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: var(--sp-4);
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 47, 53, 0.62);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}

.modal.is-open .modal__backdrop {
  opacity: 1;
}

.modal__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}

.modal.is-open .modal__dialog {
  opacity: 1;
  transform: none;
}

.modal__dialog h2 {
  font-size: var(--step-2);
  padding-right: 2.5rem;
  margin-bottom: var(--sp-2);
}

.modal__intro {
  font-size: 0.96rem;
  margin-bottom: var(--sp-5);
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--teal-800);
  cursor: pointer;
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease);
}

.modal__close:hover {
  background: var(--teal-700);
  color: var(--white);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal .form-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* Inline trigger that looks like a link but is a real button */
.link-btn {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.link-btn:hover {
  color: var(--green-600);
}

.site-footer .link-btn {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  text-decoration: none;
}

.site-footer .link-btn:hover {
  color: var(--green-400);
}

/* ==========================================================================
   17. Contact & map
   ========================================================================== */
.info-list {
  display: grid;
  gap: var(--sp-5);
}

.info-item {
  display: flex;
  gap: var(--sp-4);
}

.info-item__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-600);
}

.info-item__icon svg {
  width: 22px;
  height: 22px;
}

.info-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.info-item p,
.info-item address {
  margin: 0;
  font-style: normal;
  font-size: 0.96rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.hours-table th,
.hours-table td {
  padding: 0.65em 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.hours-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-800);
}

.hours-table td {
  text-align: right;
  color: var(--body);
}

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

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.area-list li {
  padding: 0.45em 0.95em;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--teal-800);
}

.section--teal .area-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ==========================================================================
   18. CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 2rem + 5vw, 6rem);
  color: var(--white);
  text-align: center;
}

.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(14, 47, 53, 0.9) 0%,
    rgba(24, 74, 83, 0.82) 100%
  );
}

.cta-band h2 {
  color: var(--white);
  max-width: 18ch;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--step-1);
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}

/* ==========================================================================
   19. Footer
   ========================================================================== */
.site-footer {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.72);
  padding-block: var(--sp-8) var(--sp-6);
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  padding-bottom: var(--sp-7);
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--green-400);
}

.site-footer ul li {
  margin-bottom: 0.55rem;
}

.footer-brand img {
  height: 62px;
  width: auto;
  margin-bottom: var(--sp-4);
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.footer-social a:hover {
  background: var(--green-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ==========================================================================
   20. Utilities & motion
   ========================================================================== */
.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: var(--sp-5);
}

.mt-6 {
  margin-top: var(--sp-6);
}

.mb-0 {
  margin-bottom: 0;
}

.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: absolute;
  top: -100px;
  left: var(--sp-4);
  z-index: 200;
  padding: 0.7em 1.2em;
  background: var(--teal-700);
  color: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

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

/* ==========================================================================
   21. Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Narrow desktop: two header CTAs plus the phone number no longer fit side by
   side. The number stays in the topbar and footer, so drop it from the header. */
@media (min-width: 981px) and (max-width: 1180px) {
  .nav {
    gap: var(--sp-4);
  }

  .nav__list {
    gap: var(--sp-4);
  }

  .nav__phone {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 74px;
  }

  .nav-toggle {
    display: block;
  }

  /* The header sits below a topbar and is sticky, so the panel is anchored to
     the header itself rather than to the viewport. */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    max-height: calc(100vh - var(--header-h));
    padding: var(--sp-5) 1.25rem var(--sp-7);
    background: var(--cream);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(14, 47, 53, 0.14);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease),
      visibility 0.22s var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: var(--sp-5);
  }

  .nav__list li {
    border-bottom: 1px solid var(--line);
  }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.15rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-4);
  }

  .nav__actions .btn {
    width: 100%;
  }

  .nav__phone {
    justify-content: center;
    font-size: 1.15rem;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .menu-nav {
    top: var(--header-h);
  }
}

@media (max-width: 700px) {
  .brand img {
    height: 44px;
  }

  /* Keep the topbar to a single line on phones */
  .topbar__inner {
    gap: var(--sp-3);
    padding-block: 0.5rem;
  }

  .topbar__inner > span:first-child,
  .topbar__dot {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }

  .hero .btn-row,
  .cta-band .btn-row,
  .page-hero .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn-row .btn,
  .cta-band .btn-row .btn,
  .page-hero .btn-row .btn {
    width: 100%;
  }

  .trustbar__list {
    gap: var(--sp-3) var(--sp-5);
  }

  .trustbar__item {
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .map-frame iframe {
    height: 320px;
  }
}
