:root {
  --green: #0F5132;
  --green-dark: #083820;
  --green-deep: #062817;
  --cream: #F5EBD6;
  --cream-light: #FBF6E9;
  --cream-paper: #EFE3C8;
  --charcoal: #1A1A1A;
  --muted: #5F5A4F;
  --red: #C8312D;
  --red-dark: #A02520;
  --gold: #D4A23B;
  --white: #FFFFFF;
  --border: rgba(8, 56, 32, 0.16);
  --shadow: 0 12px 30px rgba(8, 56, 32, 0.13);
  --font-display: "Bevan", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --max: 1180px;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--green-dark);
  color: var(--cream-light);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(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;
}

.launch-bar {
  background: var(--green-deep);
  color: var(--cream-light);
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  align-items: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.launch-bar a {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 246, 233, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max);
  min-height: 66px;
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 92px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  align-items: center;
}

.primary-nav a {
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  border-bottom-color: var(--red);
  color: var(--red-dark);
}

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

.header-action,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-action:hover,
.btn:hover {
  transform: translateY(-1px);
}

.header-action-primary,
.btn-primary {
  background: var(--red);
  color: var(--cream-light);
}

.header-action-primary:hover,
.btn-primary:hover {
  background: var(--red-dark);
}

.header-action-secondary,
.btn-secondary {
  background: var(--green-dark);
  color: var(--cream-light);
}

.header-action-secondary:hover,
.btn-secondary:hover {
  background: var(--green-deep);
}

.header-action-plain,
.btn-tertiary {
  background: transparent;
  color: var(--green-dark);
  border-color: currentColor;
}

.header-action-plain:hover,
.btn-tertiary:hover {
  background: var(--green-dark);
  color: var(--cream-light);
}

.btn-large {
  min-height: 52px;
  padding: 0.9rem 1.15rem;
  font-size: 1.02rem;
}

.new-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 1.15rem;
  border-radius: 999px;
  padding: 0.1rem 0.36rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green-dark);
  border-radius: var(--radius);
  background: transparent;
  color: var(--green-dark);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.menu-toggle-lines::before {
  transform: translateY(-7px);
}

.menu-toggle-lines::after {
  transform: translateY(5px);
}

.hero-home {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: min(650px, calc(100vh - 102px));
  background: var(--cream-light);
}

.hero-copy {
  padding: clamp(1.6rem, 3.4vw, 3.4rem) clamp(1.2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

.hero-lede {
  max-width: 640px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--muted);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-actions {
  gap: 0.65rem;
}

.hero-actions .btn-large {
  padding-inline: 0.9rem;
}

.hero-photo {
  margin: 0;
  min-height: 500px;
  overflow: hidden;
}

.hero-photo img,
.image-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  object-position: center;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.band {
  padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--green-deep);
  color: var(--cream-light);
}

.band h2,
.band h3 {
  color: var(--cream-light);
}

.band .eyebrow {
  color: var(--gold);
}

.band-cream {
  background: var(--cream);
  color: var(--charcoal);
}

.band-cream h2,
.band-cream h3 {
  color: var(--green-dark);
}

.band-cream .eyebrow {
  color: var(--red);
}

.split-section,
.story-section,
.visit-section,
.contact-details,
.how-it-works,
.image-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.action-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 235, 214, 0.24);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: grid;
  gap: 0.8rem;
}

.band-cream .action-panel {
  background: var(--cream-light);
  border-color: var(--border);
}

.panel-title {
  color: inherit;
  font-weight: 700;
  font-size: 1.15rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.channel-card {
  background: rgba(255, 255, 255, 0.78);
  color: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.channel-card h3 {
  color: var(--green-dark);
  font-size: 1.22rem;
}

.channel-card-primary {
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.specials-band {
  text-align: center;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.phone-feature {
  background: var(--green-dark);
  display: grid;
  gap: 1.15rem;
  justify-items: start;
  text-align: left;
}

.phone-feature > * {
  max-width: 860px;
}

.text-feature {
  background: var(--red);
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.text-feature div {
  display: grid;
  gap: 0.85rem;
}

.feature-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.25rem 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  display: grid;
  gap: 0.65rem;
}

.special-highlight {
  width: min(720px, 100%);
  background: var(--cream-light);
  color: var(--charcoal);
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  padding: 1.2rem;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.special-highlight code,
.special-card code {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: var(--green-dark);
  color: var(--cream-light);
  font-weight: 900;
  user-select: all;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.six-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  background: var(--cream-light);
  color: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(8, 56, 32, 0.08);
}

.photo-card a {
  display: grid;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

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

.photo-card div {
  padding: 1.05rem;
  display: grid;
  gap: 0.45rem;
}

.photo-card h2,
.photo-card h3 {
  color: var(--green-dark);
  font-size: 1.32rem;
}

.photo-card span {
  color: var(--red-dark);
  font-weight: 700;
}

.story-section figure,
.image-hero figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.story-section figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-section div,
.prose-section {
  display: grid;
  gap: 1rem;
}

.closing-line {
  color: var(--gold);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.image-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.hours-list {
  margin: 1rem 0;
  display: grid;
  gap: 0.5rem;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(245, 235, 214, 0.2);
  padding-bottom: 0.45rem;
}

.band-cream .hours-list div {
  border-bottom-color: var(--border);
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

.zip-list,
.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.band .zip-list,
.band .note {
  color: rgba(245, 235, 214, 0.78);
}

.center {
  text-align: center;
}

.page-hero {
  padding: clamp(2.25rem, 5vw, 4rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.simple-hero {
  min-height: 330px;
  background: var(--cream-light);
  display: grid;
  gap: 1rem;
  align-content: center;
  justify-items: start;
}

.simple-hero p {
  max-width: 760px;
}

.image-hero {
  background: var(--green-deep);
  color: var(--cream-light);
  align-items: center;
}

.image-hero h1 {
  color: var(--cream-light);
}

.image-hero figure {
  min-height: 360px;
  height: 100%;
}

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

.special-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.special-card.is-today {
  border: 3px solid var(--red);
  box-shadow: var(--shadow);
}

.special-card-day {
  color: var(--red-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.no-code {
  color: var(--muted);
  font-weight: 700;
}

.steps {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.8rem;
}

.contact-details a,
.prose-section a {
  color: inherit;
  font-weight: 700;
}

.legal-copy h2 {
  margin-top: 1rem;
}

.site-footer {
  background: var(--green-deep);
  color: var(--cream-light);
  padding: 3rem max(1rem, calc((100vw - var(--max)) / 2)) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 0.85rem;
}

.site-footer h2 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.65rem;
}

.site-footer a {
  color: var(--cream-light);
}

.legal-line {
  margin-top: 0.8rem;
  color: var(--gold);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 235, 214, 0.2);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(251, 246, 233, 0.98);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.12);
}

.mobile-action {
  min-height: 48px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  background: var(--green-dark);
  color: var(--cream-light);
  font-weight: 900;
}

.mobile-order {
  background: var(--red);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .header-action {
    flex: 1;
  }

  .hero-home,
  .split-section,
  .story-section,
  .visit-section,
  .contact-details,
  .how-it-works,
  .image-hero {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-photo {
    height: clamp(260px, 45vw, 360px);
    min-height: 0;
    order: -1;
  }

  .channel-grid,
  .three-up,
  .six-up,
  .specials-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
  }

  .launch-bar {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.45rem 1rem;
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 78px;
  }

  .header-inner {
    min-height: 62px;
    padding: 0.45rem 0.9rem;
  }

  .header-actions {
    display: none;
  }

  .mobile-action-bar {
    display: grid;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-copy {
    padding: 1.2rem 1rem 5rem;
    justify-content: flex-start;
  }

  .hero-photo,
  .image-hero figure {
    height: clamp(220px, 65vw, 265px);
    min-height: 0;
  }

  .hero-home .hero-actions,
  .hero-home .channel-grid {
    display: none;
  }

  .page-hero {
    padding: 1.25rem 1rem 1.65rem;
  }

  .hero-actions,
  .center-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .text-feature {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .channel-grid,
  .three-up,
  .six-up,
  .specials-grid,
  .footer-grid,
  .image-row {
    grid-template-columns: 1fr;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =================================================================
   CHANNELS BAND — cards moved out of the hero to full width
   ================================================================= */
.channels-band {
  background: var(--green-deep);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.channels-band .channel-grid {
  max-width: 1080px;
  margin: 0 auto;
  gap: 1.1rem;
}

.channels-band .channel-card {
  background: var(--cream-light);
  padding: 1.4rem 1.3rem;
}

.channels-band .channel-card .eyebrow {
  color: var(--gold-dark, #A87A1F);
}

@media (max-width: 860px) {
  .channels-band .channel-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* =================================================================
   V3 CONSISTENCY PASS — strict beige/green rhythm + combined card
   hero(beige) -> ways(GREEN) -> food(beige) -> reviews(GREEN) ->
   specials(beige) -> delivery(GREEN) -> story(beige) ->
   catering(GREEN) -> visit(beige) -> footer(green-dark)
   ================================================================= */

/* ---- centered hero + header ---- */
.hero-copy { text-align: center; align-items: center; }
.hero-actions { width: 100%; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ---- green bands get gold trim ---- */
.channels-band,
.reviews-section,
.delivery-band,
.catering-preview {
  background: var(--green-deep);
  color: var(--cream-light);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.reviews-section h2,
.delivery-band h2,
.catering-preview h2 { color: var(--cream-light); }
.reviews-section .eyebrow,
.delivery-band .eyebrow,
.catering-preview .eyebrow { color: var(--gold); }
.delivery-band .section-heading p:not(.eyebrow),
.catering-preview p:not(.eyebrow) { color: rgba(245, 235, 214, 0.85); }

/* catering cards/photos pop on green */
.catering-preview .photo-card,
.catering-preview article { background: var(--cream-light); color: var(--charcoal); }
.catering-preview h3 { color: var(--green-dark); }

/* ---- beige bands ---- */
.specials-band,
.story-section,
.visit-section {
  background: var(--cream-light);
  color: var(--charcoal);
  border: none;
}
.specials-band h2, .story-section h2, .visit-section h2 { color: var(--green-dark); }
.specials-band .eyebrow, .story-section .eyebrow, .visit-section .eyebrow { color: var(--red); }
.specials-band p, .story-section p, .visit-section p { color: var(--charcoal); }

/* ---- combined ways card ---- */
.channels-band { padding-top: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.ways-card {
  background: var(--cream-light);
  color: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 640px;
  margin: 0 auto;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
}
.ways-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--green-dark);
  font-size: 1.35rem;
  text-align: center;
  margin: 0 0 0.9rem;
}
.ways-direct {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.way-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.way-row:first-of-type { border-top: none; }
.way-info { flex: 1; min-width: 0; }
.way-label {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.02rem;
}
.way-desc { margin: 0; font-size: 0.89rem; color: var(--muted); line-height: 1.5; }
.way-btn { padding: 0.65rem 1.2rem; font-size: 0.88rem; flex: 0 0 auto; }

/* ---- delivery band ctas ---- */
.delivery-band { text-align: center; }
.delivery-band .section-heading { max-width: 640px; margin: 0 auto 1.3rem; }
.delivery-ctas { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---- mobile ---- */
@media (max-width: 700px) {
  .way-row { flex-direction: column; align-items: stretch; text-align: center; gap: 0.7rem; }
  .way-btn { width: 100%; }
  .delivery-ctas { flex-direction: column; align-items: center; }
  .delivery-ctas .btn { width: 100%; max-width: 340px; }
}

/* =================================================================
   SAVE TO HOME SCREEN — gold pill button + iOS instructions modal
   ================================================================= */
.install-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.9rem auto 0;
  padding: 0.6rem 1.3rem;
  background: var(--cream-light);
  color: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(8, 56, 32, 0.1);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.install-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(8, 56, 32, 0.15); }
.install-icon { width: 17px; height: 17px; }

.install-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.2rem; }
.install-modal[hidden] { display: none; }
.install-modal-backdrop { position: absolute; inset: 0; background: rgba(8, 40, 23, 0.6); }
.install-modal-card {
  position: relative;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 1.8rem 1.5rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.install-modal-close {
  position: absolute; top: 0.5rem; right: 0.8rem;
  background: none; border: none; font-size: 1.6rem;
  color: var(--muted); cursor: pointer; line-height: 1;
}
.install-modal-logo { height: 60px; width: auto; margin-bottom: 0.6rem; }
.install-modal-card h2 {
  font-family: var(--font-display); font-weight: 400;
  color: var(--green-dark); font-size: 1.25rem; margin: 0 0 0.6rem;
}
.install-modal-intro { margin: 0 0 0.8rem; color: var(--muted); font-size: 0.92rem; }
.install-modal-steps { text-align: left; margin: 0 0 1rem; padding-left: 1.3rem; color: var(--charcoal); font-size: 0.92rem; line-height: 1.6; }
.install-modal-steps li { margin-bottom: 0.5rem; }
.install-modal-note { font-size: 0.85rem; color: var(--muted); margin: 0 0 1.1rem; }
.install-modal-gotit {
  background: var(--green-dark); color: var(--cream-light);
  border: none; border-radius: var(--radius);
  padding: 0.75rem 2rem; font-weight: 700; font-size: 0.95rem; cursor: pointer;
}

/* =================================================================
   HERO DEAL LINE — day-rotating special, replaces the lede
   ================================================================= */
.hero-deal {
  margin: 0.4rem auto 0.2rem;
  font-size: 1rem;
  color: var(--charcoal);
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-deal-label {
  font-weight: 700;
  color: var(--red);
  font-style: italic;
  font-family: var(--font-body);
}
.hero-deal-link {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  transition: color 150ms ease, border-color 150ms ease;
}
.hero-deal-link:hover { color: var(--red); border-color: var(--red); }
