:root {
  --ink: #231f20;
  --ink-soft: #2d292a;
  --red: #cd1c2d;
  --red-bright: #d31d2e;
  --ivory: #f6f0e9;
  --muted: #c7c1ba;
  --content-mobile: calc(100% - 46px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: .18em;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  padding: calc(25px + env(safe-area-inset-top)) 23px 16px;
  pointer-events: none;
}

.brand-line {
  display: inline-block;
  max-width: 330px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  pointer-events: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

h1 {
  margin-bottom: 11px;
  font-size: clamp(28px, 7.7vw, 33px);
  line-height: 1.1;
  letter-spacing: -.01em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 7.2vw, 32px);
  line-height: 1.1;
}

p {
  font-size: 15.4px;
  line-height: 1.6;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(35,31,32,.24) 0%, rgba(35,31,32,.28) 30%, rgba(35,31,32,.62) 100%);
}

.hero__content {
  align-self: center;
  width: var(--content-mobile);
  margin: 55px auto 0;
  text-align: left;
}

.hero__content > p {
  margin-bottom: 36px;
  font-size: 17.3px;
  font-weight: 500;
  line-height: 1.5;
}

.hero__actions {
  display: grid;
  justify-content: center;
  gap: 11px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 0;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button--primary {
  background: var(--red);
  color: var(--ivory);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-bright);
}

.button--secondary {
  border: 1px solid var(--red);
  background: var(--ink);
  color: var(--red);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--red);
  color: var(--ivory);
}

.split-section {
  display: flex;
  min-height: 497px;
  flex-direction: column;
  background: var(--ink);
}

.split-section--soft {
  min-height: 601px;
  background: var(--ink-soft);
}

.split-section__media {
  width: var(--content-mobile);
  height: 289px;
  margin: 38px auto 0;
  overflow: hidden;
}

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

.split-section__content {
  width: var(--content-mobile);
  margin: 32px auto 37px;
}

.split-section__content .lead {
  margin-bottom: 0;
  font-size: 17.3px;
  font-weight: 500;
  line-height: 1.5;
}

.split-section--soft .split-section__content {
  margin-top: 34px;
}

.split-section--soft .split-section__content p {
  margin-bottom: 0;
}

.accent-line {
  display: block;
  width: 48px;
  height: 2px;
  margin-bottom: 30px;
  background: var(--red);
}

.cta-section {
  display: flex;
  min-height: 291px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 23px;
  background: var(--ink);
  text-align: center;
}

.cta-section p {
  max-width: 330px;
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 17.3px;
  font-weight: 500;
  line-height: 1.5;
}

.button--wide {
  width: min(249px, 100%);
  min-height: 52px;
}

.delivery-section {
  display: flex;
  min-height: 603px;
  flex-direction: column;
  align-items: center;
  padding: 77px 23px 38px;
  background: var(--ink);
}

.delivery-section img {
  width: 100%;
  max-width: 329px;
  height: 289px;
  object-fit: cover;
  object-position: center;
}

.delivery-section h2 {
  align-self: stretch;
  max-width: 329px;
  margin: 38px auto 29px;
}

.button--delivery {
  width: min(310px, 100%);
}

.contact-section {
  min-height: 519px;
  padding: 58px 23px 42px;
  background: var(--ink);
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 27px;
}

.contact-section h3 {
  margin-bottom: 11px;
  color: var(--red-bright);
  font-size: 17.3px;
  line-height: 1.2;
}

.hours p {
  margin-bottom: 11px;
  font-size: 15.4px;
  line-height: 1.6;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
}

.contact-links a {
  font-size: 13.5px;
  line-height: 1.6;
}

.contact-links .review-link {
  margin-top: 10px;
}

.credits {
  display: grid;
  min-height: 47px;
  place-items: center;
  border-top: 1px solid var(--muted);
  background: var(--ivory);
  color: var(--muted);
  text-align: center;
}

.credits p {
  margin: 0;
  font-size: 13.5px;
  letter-spacing: .25em;
  line-height: 1;
}

.site-footer {
  display: grid;
  min-height: 93px;
  place-items: center;
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 900ms var(--ease), transform 1000ms var(--ease);
  will-change: opacity, transform;
}

.js .reveal--from-left {
  transform: translate3d(-28px, 18px, 0);
}

.js .reveal--from-right {
  transform: translate3d(28px, 18px, 0);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.js .reveal--hero {
  transform: translate3d(0, 18px, 0);
}

.js .reveal--image-zoom img,
.js .split-section.reveal .split-section__media img {
  transform: scale(1.055);
  transition: transform 1300ms var(--ease);
}

.js .reveal--image-zoom.is-visible img,
.js .split-section.reveal.is-visible .split-section__media img {
  transform: scale(1);
}

.js .reveal h2,
.js .reveal h3,
.js .reveal p,
.js .reveal .button,
.js .reveal .contact-links {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 700ms var(--ease), transform 800ms var(--ease);
}

.js .reveal.is-visible h2,
.js .reveal.is-visible h3,
.js .reveal.is-visible p,
.js .reveal.is-visible .button,
.js .reveal.is-visible .contact-links {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .reveal.is-visible h2 { transition-delay: 100ms; }
.js .reveal.is-visible h3,
.js .reveal.is-visible p { transition-delay: 180ms; }
.js .reveal.is-visible .button,
.js .reveal.is-visible .contact-links { transition-delay: 260ms; }

.js .hero__content.reveal h1,
.js .hero__content.reveal p,
.js .hero__content.reveal .hero__actions {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 720ms var(--ease), transform 820ms var(--ease);
}

.js .hero__content.reveal.is-visible h1,
.js .hero__content.reveal.is-visible p,
.js .hero__content.reveal.is-visible .hero__actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .hero__content.reveal.is-visible h1 { transition-delay: 80ms; }
.js .hero__content.reveal.is-visible p { transition-delay: 180ms; }
.js .hero__content.reveal.is-visible .hero__actions { transition-delay: 300ms; }

.js .hero__content.reveal .hero__actions .button {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .site-header {
    padding: 28px clamp(36px, 5vw, 72px);
  }

  .brand-line {
    max-width: none;
    font-size: 16px;
  }

  h1 {
    font-size: clamp(54px, 5vw, 72px);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(43px, 3.75vw, 54px);
    line-height: 1.1;
  }

  .hero {
    min-height: min(94vw, 1355px);
  }

  .hero__content {
    width: min(1015px, calc(100% - 160px));
    margin-top: 0;
    text-align: center;
  }

  .hero__content > p {
    margin-bottom: 46px;
    font-size: 22.5px;
  }

  .hero__actions {
    display: flex;
    gap: 25px;
  }

  .button {
    min-height: 59px;
    font-size: 15px;
  }

  .split-section {
    display: grid;
    min-height: 900px;
    grid-template-columns: 1fr 1fr;
  }

  .split-section--soft {
    min-height: 683px;
  }

  .split-section__media {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .split-section__content {
    align-self: center;
    width: min(540px, calc(100% - 100px));
    margin: 0 auto;
  }

  .split-section__content .lead {
    font-size: 22.5px;
  }

  .split-section--image-right .split-section__media {
    grid-column: 2;
    grid-row: 1;
  }

  .split-section--image-right .split-section__content {
    grid-column: 1;
    grid-row: 1;
  }

  .split-section--soft .split-section__content {
    margin: 0 auto;
  }

  .split-section--soft .split-section__content p {
    font-size: 18px;
    line-height: 1.6;
  }

  .accent-line {
    margin-bottom: 38px;
  }

  .cta-section {
    min-height: 382px;
    padding: 60px;
  }

  .cta-section p {
    max-width: 658px;
    margin-bottom: 43px;
    font-size: 22.5px;
  }

  .button--wide {
    width: 295px;
    min-height: 61px;
  }

  .delivery-section {
    min-height: 1007px;
    padding: 91px 40px;
  }

  .delivery-section img {
    max-width: 369px;
    height: 486px;
  }

  .delivery-section h2 {
    align-self: center;
    max-width: none;
    margin: 104px auto 93px;
    text-align: center;
  }

  .button--delivery {
    width: 369px;
  }

  .contact-section {
    min-height: 688px;
    padding: 68px 40px 48px;
  }

  .contact-section h2 {
    margin-bottom: 14px;
  }

  .contact-section h3 {
    margin-bottom: 19px;
    font-size: 24.7px;
    line-height: 1.2;
  }

  .hours p {
    margin-bottom: 13px;
    font-size: 18px;
  }

  .contact-links {
    gap: 10px;
    margin-top: 26px;
  }

  .contact-links a {
    font-size: 15.75px;
  }

  .contact-links .review-link {
    margin-top: 13px;
  }

  .credits {
    min-height: 122px;
    background: var(--ink);
  }

  .credits p {
    font-size: 15.75px;
  }
}

@media (max-width: 767px) and (max-height: 690px) {
  .site-header {
    padding-top: calc(19px + env(safe-area-inset-top));
  }

  .hero__content {
    margin-top: 45px;
  }

  .hero__content > p {
    margin-bottom: 25px;
  }
}

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

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

  .js .reveal,
  .js .reveal h2,
  .js .reveal h3,
  .js .reveal p,
  .js .reveal .button,
  .js .reveal .contact-links,
  .js .hero__content.reveal h1,
  .js .hero__content.reveal p,
  .js .hero__content.reveal .hero__actions,
  .js .reveal--image-zoom img,
  .js .split-section.reveal .split-section__media img {
    opacity: 1;
    transform: none;
  }
}
