:root {
  --ink: #11110f;
  --muted: #66645d;
  --line: #deddd7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --gold: #886300;
  --gold-dark: #664900;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #2a2925;
}

.button-gold {
  color: var(--white);
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-dark);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.main-nav a,
.footer-nav a {
  position: relative;
  font-size: 13px;
}

.main-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  overflow: hidden;
  padding: 78px 0 0;
}

.hero-copy {
  text-align: center;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-proof-icons {
  display: flex;
  flex-shrink: 0;
}

.hero-proof-icons img {
  width: 34px;
  height: 34px;
  margin-left: -9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
}

.hero-proof-icons img:first-child {
  margin-left: 0;
}

.hero-proof p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.hero-title-row,
.hero-delivery-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-title-row h1 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero-title-note {
  max-width: 145px;
  border-left: 4px solid #d4a500;
  background: #e7e7e3;
  padding: 10px 13px;
  color: #56554f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}


.hero-delivery-row {
  margin-top: 16px;
  gap: 28px;
}

.hero-delivery-row p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8.5vw, 118px);
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero-delivery-row .button {
  min-height: 58px;
  padding: 0 34px;
  font-size: 14px;
}

.hero-gallery-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 66px;
}

.hero-gallery-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding-inline: 0;
  will-change: transform;
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  width: calc((100vw - 44px) / 3);
  height: 320px;
  flex: 0 0 calc((100vw - 44px) / 3);
  overflow: hidden;
  border-radius: 26px;
  background: #e8e5de;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  margin: 22px 0 40px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  text-align: center;
}

.marketplaces {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-marquee {
  overflow: hidden;
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 30px 36px;
  animation: marquee 24s linear infinite;
}

.logo-track img {
  width: auto;
  max-width: 190px;
  height: 29px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
}

.logo-track img[alt="DoorDash"],
.logo-track img[aria-hidden="true"]:nth-child(8) {
  max-width: 230px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 100px;
  align-items: end;
  margin-bottom: 54px;
}

.split-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.service-copy {
  max-width: 520px;
}

.service-copy h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.service-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 88px);
  font-style: italic;
  line-height: 1;
}

.categories {
  background: var(--white);
}

.category-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.category-track::-webkit-scrollbar {
  display: none;
}

.category-card {
  position: relative;
  min-width: calc((100% - 54px) / 4);
  overflow: hidden;
  border-radius: 12px;
  background: #e8e5de;
  scroll-snap-align: start;
}

.category-card img {
  width: 100%;
  transition: transform 450ms ease;
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-progress {
  width: calc((100% - 54px) / 4);
  height: 4px;
  margin-top: 20px;
  overflow: hidden;
  background: #d8cda8;
}

.category-progress span {
  display: block;
  width: 70%;
  height: 100%;
  background: #7d5c00;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.slider-controls button:hover {
  color: var(--white);
  background: var(--ink);
}

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

.review-card {
  min-height: 310px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}


.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  padding: 28px 32px 30px;
}

.review-card-head::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 0;
  left: 32px;
  height: 1px;
  background: var(--line);
}

.review-card-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.review-card-head span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-style: normal;
  line-height: 0.7;
}

.review-card-body {
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.review-card-body p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cta-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.cta-inner {
  max-width: 1280px;
}

.cta-inner h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: clamp(24px, 4.25vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.cta-inner h2 span {
  display: block;
}

.cta-inner > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--white);
}

.footer-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand img {
  width: 140px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

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

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 48px 24px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    font-size: 26px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-gallery-slider {
    margin-top: 52px;
  }

  .hero-gallery-track {
    gap: 14px;
  }

  .hero-slide {
    width: 62vw;
    height: 250px;
    flex-basis: 62vw;
    border-radius: 18px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .category-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .category-track::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    min-width: min(58vw, 300px);
    scroll-snap-align: start;
  }

  .category-progress {
    width: min(58vw, 300px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 0;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding: 72px 0;
  }

  .brand img {
    width: 132px;
  }

  .hero-proof {
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-proof p {
    font-size: 10px;
  }

  .hero-proof-icons img {
    width: 29px;
    height: 29px;
  }

  .hero-title-row,
  .hero-delivery-row {
    gap: 10px;
  }

  .hero-title-row h1 {
    font-size: clamp(30px, 9vw, 46px);
  }

  .hero-title-note {
    max-width: 94px;
    border-left-width: 3px;
    padding: 7px 8px;
    font-size: 7px;
  }

  .hero-delivery-row p {
    font-size: clamp(28px, 8.4vw, 46px);
  }

  .hero-delivery-row {
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 12px;
  }

  .hero-delivery-row .button {
    min-height: 44px;
    flex-shrink: 0;
    padding: 0 16px;
    font-size: 10px;
  }

  .hero-gallery-slider {
    margin-top: 42px;
  }

  .hero-gallery-track {
    gap: 10px;
  }

  .hero-slide {
    width: 78vw;
    height: 190px;
    flex-basis: 78vw;
    border-radius: 13px;
  }

  .logo-track {
    gap: 42px;
    padding: 24px;
  }

  .logo-track img {
    height: 24px;
  }

  .service-item {
    min-height: 150px;
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .service-copy h3 {
    font-size: 19px;
  }

  .service-number {
    font-size: 44px;
  }

  .category-card {
    min-width: 76vw;
  }

  .category-progress {
    width: 76vw;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 260px;
  }

  .review-card-head,
  .review-card-body {
    padding: 24px;
  }

  .cta-inner h2 {
    gap: 6px;
    font-size: clamp(28px, 8vw, 44px);
  }
}

/* Coming soon page */
.coming-soon-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(201, 157, 24, 0.18), transparent 34rem),
    #10100f;
  color: #f7f3e8;
}

.coming-soon-main {
  min-height: 100vh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: 32px 0;
}

.coming-soon-brand {
  display: inline-flex;
  width: fit-content;
}

.coming-soon-brand img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.coming-soon-card {
  width: min(760px, 100%);
  margin: 70px auto;
  padding: clamp(38px, 7vw, 86px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.coming-soon-card .eyebrow {
  margin-bottom: 18px;
  color: #d6b856;
}

.coming-soon-card h1 {
  max-width: 650px;
  margin: 0 auto 22px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.coming-soon-card > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 auto 34px;
  color: rgba(247, 243, 232, 0.74);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.coming-soon-card .button {
  min-width: 180px;
}

.coming-soon-footer {
  margin: 0;
  text-align: center;
  color: rgba(247, 243, 232, 0.46);
  font-size: 0.86rem;
}

@media (max-width: 600px) {
  .coming-soon-main {
    width: min(100% - 28px, 1180px);
    padding: 22px 0;
  }

  .coming-soon-brand img {
    width: 126px;
  }

  .coming-soon-card {
    margin: 42px auto;
    border-radius: 20px;
  }
}
