:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #5d5852;
  --paper: #fffaf1;
  --panel: #ffffff;
  --line: #e5ded2;
  --tomato: #d8432e;
  --tomato-dark: #a92e1e;
  --lime: #78a83b;
  --maize: #f3bc3d;
  --charcoal: #1e1b18;
  --shadow: 0 24px 70px rgba(34, 25, 18, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.is-scrolled .site-header {
  background: rgba(255, 250, 241, 0.94);
  border-color: rgba(30, 27, 24, 0.12);
  box-shadow: 0 12px 40px rgba(30, 27, 24, 0.08);
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--charcoal);
  color: white;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
  padding: 0.85rem clamp(1rem, 3vw, 3rem);
  color: white;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

body.is-scrolled .site-header {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-wordmark {
  width: clamp(126px, 13vw, 158px);
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav a,
.footer-actions a {
  text-decoration: none;
}

.nav a:hover,
.footer-actions a:hover {
  color: var(--tomato);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: var(--tomato);
  box-shadow: 0 14px 32px rgba(216, 67, 46, 0.28);
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--tomato-dark);
  box-shadow: 0 18px 38px rgba(216, 67, 46, 0.35);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
}

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

.button-secondary-light {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

body.is-scrolled .button-secondary-light {
  color: var(--charcoal);
  background: rgba(30, 27, 24, 0.06);
  box-shadow: inset 0 0 0 1px rgba(30, 27, 24, 0.16);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button-dark {
  background: var(--charcoal);
  box-shadow: none;
}

.button-dark:hover {
  background: #000000;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.66) 38%, rgba(8, 7, 6, 0.18) 76%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.72) 0%, rgba(8, 7, 6, 0) 55%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 3rem;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--maize);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0.7rem 0 1rem;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  display: grid;
  gap: 0.75rem;
  max-width: 610px;
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.96rem, 1.45vw, 1.08rem);
  line-height: 1.6;
}

.hero-copy p {
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.app-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 4vw, 4rem);
  color: white;
  background: var(--tomato);
}

.app-strip .section-kicker {
  color: var(--maize);
}

.app-strip h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.app-strip p:not(.section-kicker) {
  max-width: 680px;
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.store-button {
  display: inline-grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 0.75rem;
  min-width: 205px;
  min-height: 58px;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: white;
  background: var(--charcoal);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(30, 27, 24, 0.24);
  transition: transform 160ms ease, background 160ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  background: #000000;
}

.store-copy {
  display: grid;
  gap: 0.1rem;
}

.store-copy span {
  font-size: 0.72rem;
  font-weight: 750;
  opacity: 0.78;
}

.store-copy strong {
  font-size: 1.16rem;
  line-height: 1.05;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.store-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.store-icon-apple svg {
  fill: currentColor;
}

.play-blue {
  fill: #00a0ff;
}

.play-green {
  fill: #00e676;
}

.play-yellow {
  fill: #ffc400;
}

.play-red {
  fill: #ff3d3d;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.feature-copy h2,
.faq-section h2 {
  margin: 0.45rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.feature-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 0.85rem;
  margin: 2rem 0 1rem;
}

.gallery-item,
.gallery-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: 0 16px 45px rgba(34, 25, 18, 0.11);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-item:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(3),
.gallery-tile:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(8),
.gallery-item:nth-child(10),
.gallery-tile:nth-child(2),
.gallery-tile:nth-child(7),
.gallery-tile:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  color: white;
  background: var(--tomato);
}

.gallery-tile span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-tile h3 {
  margin: auto 0 0;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 0.98;
}

.gallery-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.gallery-tile:nth-child(4),
.gallery-tile:nth-child(9) {
  background: var(--charcoal);
}

.gallery-tile:nth-child(7) {
  color: var(--charcoal);
  background: var(--maize);
}

.gallery-tile:nth-child(7) span,
.gallery-tile:nth-child(7) p {
  color: rgba(30, 27, 24, 0.78);
}

.gallery-tile:nth-child(7) h3 {
  color: var(--charcoal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 1.5rem);
  padding: 0.48rem 0.62rem;
  border-radius: var(--radius);
  color: white;
  background: rgba(14, 13, 12, 0.76);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.steps h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.steps p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  color: white;
  background: var(--charcoal);
}

.feature-copy {
  max-width: 680px;
}

.feature-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 0.75rem;
}

.feature-list div {
  display: grid;
  gap: 0.3rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.feature-list strong {
  color: var(--maize);
  font-size: 1.08rem;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

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

.builder-graphic {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
  margin: 2rem 0 1.25rem;
}

.builder-menu,
.builder-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(34, 25, 18, 0.11);
}

.builder-menu {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  color: white;
  background: var(--tomato);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.iwantfed-title {
  display: block;
  width: min(78%, 300px);
  height: auto;
  justify-self: center;
  filter: brightness(0) invert(1);
}

.app-checklist {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  margin: 0;
  counter-reset: checklist-step;
  list-style: none;
}

.app-checklist li {
  counter-increment: checklist-step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.76rem 0.82rem;
  border-radius: var(--radius);
  background: var(--tomato);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 950;
  line-height: 1.14;
}

.app-checklist li::before {
  content: counter(checklist-step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--maize);
  font-size: 0.92rem;
}

.app-checklist a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.app-checklist a:hover,
.app-checklist a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
}

.builder-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  background: var(--charcoal);
}

.builder-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.builder-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  color: white;
  background: rgba(14, 13, 12, 0.76);
  backdrop-filter: blur(10px);
  font-weight: 900;
  line-height: 1.35;
}

.steps article {
  padding: 1.35rem;
  border-top: 4px solid var(--tomato);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 40px rgba(34, 25, 18, 0.06);
}

.steps span {
  color: var(--lime);
  font-weight: 950;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.66fr);
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  min-height: 500px;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 4rem) 0;
  overflow: hidden;
  background: var(--maize);
}

.quote-download {
  align-self: stretch;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 1.25rem;
}

.quote-store-actions {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.quote-band blockquote {
  margin: 0;
}

.quote-band p {
  max-width: 720px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2rem, 3.45vw, 3.7rem);
  font-weight: 950;
  line-height: 1;
}

.quote-phone {
  justify-self: start;
  width: min(100%, 320px);
  height: 320px;
  margin: 0;
  overflow: hidden;
  filter: drop-shadow(0 24px 34px rgba(30, 27, 24, 0.28));
}

.quote-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

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

.faq-list summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-list p {
  padding: 0 1.25rem 1.2rem;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: white;
  background: #0e0d0c;
}

.site-footer p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 0.9rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.powered-by img {
  width: 112px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .steps,
  .builder-graphic,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .builder-photo {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .food-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-tile,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(10),
  .gallery-tile:nth-child(2),
  .gallery-tile:nth-child(4),
  .gallery-tile:nth-child(7),
  .gallery-tile:nth-child(9) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(8),
  .gallery-tile:nth-child(2),
  .gallery-tile:nth-child(9) {
    aspect-ratio: 1 / 1;
  }

  .app-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta,
  .footer-actions {
    justify-items: start;
    justify-content: flex-start;
  }

  .quote-band {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }

  .quote-download {
    justify-items: center;
  }

  .quote-phone {
    justify-self: center;
    width: min(76vw, 300px);
    height: 300px;
  }

  .quote-store-actions {
    justify-content: center;
  }

  .store-actions {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 0.75rem 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-wordmark {
    width: 118px;
  }

  .button-small {
    min-height: 38px;
    padding: 0.65rem 0.75rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 7, 6, 0.9) 0%, rgba(8, 7, 6, 0.68) 60%, rgba(8, 7, 6, 0.32) 100%),
      linear-gradient(0deg, rgba(8, 7, 6, 0.78) 0%, rgba(8, 7, 6, 0) 58%);
  }

  .hero-content {
    width: min(100% - 1.5rem, 1120px);
    padding-bottom: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .hero-actions .button,
  .quote-band .button {
    width: 100%;
  }

  .store-actions {
    width: 100%;
    justify-content: center;
  }

  .store-button {
    grid-template-columns: 28px 1fr;
    gap: 0.6rem;
    width: auto;
    min-width: 178px;
    min-height: 50px;
    padding: 0.55rem 0.78rem;
  }

  .store-icon {
    width: 28px;
    height: 28px;
  }

  .store-copy span {
    font-size: 0.65rem;
  }

  .store-copy strong {
    font-size: 0.98rem;
  }

  .section {
    width: min(100% - 1.5rem, 1120px);
  }
}
