:root {
  --red: #f3121d;
  --red-dark: #cf0d16;
  --black: #090909;
  --white: #ffffff;
  --soft: #f7f7f5;
  --divider: #e7e7e7;
  --gray: #626268;
  --font: "Manrope", Arial, sans-serif;
  --display: "Manrope", "Arial Black", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(9, 9, 9, 0.11);
  --radius-lg: 32px;
  --radius-md: 22px;
  --shell: min(1240px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  background: var(--white);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--black);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.top-stripe {
  height: 7px;
  background: var(--red);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(9, 9, 9, 0.08);
}

.site-header__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  width: clamp(190px, 18vw, 248px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-actions,
.header-call {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 18px;
}

.header-call {
  gap: 11px;
  min-height: 52px;
  padding: 5px;
}

.header-call__copy {
  display: grid;
  line-height: 1.25;
}

.header-call__copy > span {
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-call__copy strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--soft);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto auto;
  width: 40%;
  height: 100%;
  background: var(--white);
}

.hero__grid {
  position: relative;
  min-height: 715px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding-block: 76px 84px;
}

.hero__copy {
  position: relative;
  z-index: 5;
  min-width: 0;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 35px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
}

.hero h1,
.section-heading h2,
.contact-intro h2,
.footer-content h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(4.25rem, 7.3vw, 7rem);
}

.hero h1 em,
.section-heading h2 em,
.contact-intro h2 em,
.footer-content h2 em {
  color: var(--red);
  font-style: normal;
}

.headline-dot {
  color: var(--red);
}

.hero__lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #444449;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.72;
}

.hero__actions,
.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 13px 28px rgba(243, 18, 29, 0.22);
}

.button--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 17px 34px rgba(243, 18, 29, 0.28);
}

.button--secondary {
  color: var(--black);
  background: var(--white);
  border-color: var(--divider);
}

.button--secondary:hover {
  border-color: var(--black);
}

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

.hero__microcopy {
  margin: 22px 0 0;
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero__microcopy span {
  margin-inline: 7px;
  color: var(--red);
}

.hero__visual {
  position: relative;
  z-index: 3;
  min-width: 0;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  justify-self: end;
}

.hero__disc {
  position: absolute;
  inset: 8% -4% 4% 10%;
  border-radius: 50%;
  background: var(--red);
}

.hero__orbit {
  position: absolute;
  inset: 2% -10% -2% 1%;
  border: 2px solid var(--black);
  border-radius: 50%;
  transform: rotate(12deg);
}

.hero__orbit::before,
.hero__orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--black);
}

.hero__orbit::before {
  top: 15%;
  right: 4%;
}

.hero__orbit::after {
  bottom: 8%;
  left: 12%;
}

.hero__pizza {
  position: absolute;
  z-index: 2;
  inset: -3% -9% -6% -6%;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 34px 22px rgba(9, 9, 9, 0.18));
}

.hero__pizza img {
  width: 112%;
  height: 112%;
  object-fit: contain;
  transform: rotate(-3deg);
}

.flavor-badge {
  position: absolute;
  z-index: 4;
  right: -15px;
  bottom: 2px;
  width: 142px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 2px;
  color: var(--white);
  background: var(--black);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(9, 9, 9, 0.2);
  text-align: center;
  transform: rotate(5deg);
}

.flavor-badge::before,
.flavor-badge::after {
  content: "";
  width: 55%;
  height: 1px;
  margin-block: 3px;
  background: rgba(255, 255, 255, 0.38);
}

.flavor-badge strong {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.flavor-badge span {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__pepperoni {
  position: absolute;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
}

.hero__pepperoni--one {
  top: 16%;
  left: 4%;
}

.hero__pepperoni--two {
  right: 4%;
  bottom: 11%;
  width: 9px;
  height: 9px;
}

.story-section {
  padding-block: clamp(88px, 10vw, 148px);
  background: var(--white);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 58px;
}

.section-heading h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--divider);
  border-left: 1px solid var(--divider);
}

.info-card {
  position: relative;
  min-height: 310px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-content: start;
  gap: 24px;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  background: var(--white);
}

.info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--red);
  transition: width 300ms ease;
}

.info-card:hover::after {
  width: 100%;
}

.info-card--dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.info-card__number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #d8d8d6;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.info-card--dark .info-card__number {
  color: #5d5d5d;
}

.line-icon,
.icon-circle {
  display: grid;
  place-items: center;
  color: var(--red);
  flex: 0 0 auto;
}

.line-icon {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(243, 18, 29, 0.28);
  border-radius: 50%;
}

.line-icon svg,
.icon-circle svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card__kicker,
.contact-card__label,
.footer-kicker {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.info-card p:last-child {
  margin: 17px 0 0;
  color: var(--gray);
  line-height: 1.68;
}

.info-card--dark p:last-child {
  color: #b8b8bc;
}

.contact-section {
  position: relative;
  padding-block: clamp(70px, 10vw, 124px);
  overflow: hidden;
  background: var(--red);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -210px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.contact-intro {
  color: var(--white);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow--light > span {
  background: var(--black);
}

.contact-intro h2 {
  font-size: clamp(3.25rem, 6.2vw, 5.6rem);
}

.contact-intro h2 em {
  color: var(--black);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 0;
  font-weight: 700;
}

.contact-dots {
  display: flex;
  gap: 9px;
  margin-top: 32px;
}

.contact-dots i {
  width: 9px;
  height: 9px;
  background: var(--black);
  border-radius: 50%;
}

.contact-dots i:nth-child(2) {
  background: var(--white);
}

.contact-card {
  position: relative;
  padding: clamp(28px, 4.5vw, 52px);
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 94px;
  height: 94px;
  background: var(--black);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.contact-card h2 {
  max-width: 470px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.contact-list {
  margin-top: 30px;
  border-top: 1px solid var(--divider);
}

.contact-row {
  min-height: 108px;
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  align-items: center;
  gap: 17px;
  padding-block: 18px;
  border-bottom: 1px solid var(--divider);
}

.contact-row:hover .contact-row__arrow {
  transform: translateX(3px);
}

.icon-circle {
  width: 54px;
  height: 54px;
  background: rgba(243, 18, 29, 0.08);
  border-radius: 50%;
}

.icon-circle--small {
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
}

.icon-circle--small svg {
  width: 19px;
  height: 19px;
}

.contact-row small,
.contact-row strong {
  display: block;
}

.contact-row small {
  margin-bottom: 3px;
  color: var(--gray);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-row strong {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  line-height: 1.35;
}

.contact-row__arrow {
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform 180ms ease;
}

.contact-card__actions {
  margin-top: 26px;
}

.contact-card__note {
  margin: 20px 0 0;
  color: var(--gray);
  font-size: 0.86rem;
}

.site-footer {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
  padding-block: 92px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-content h2 {
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

.footer-content p:not(.footer-kicker) {
  margin: 28px 0 0;
  color: #b6b6ba;
}

.footer-content small {
  display: block;
  margin-top: 36px;
  color: #77777d;
  font-size: 0.75rem;
}

.footer-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.doodle,
.footer-dot {
  position: absolute;
  display: block;
}

.doodle {
  opacity: 0.22;
}

.doodle--ring {
  top: 18%;
  left: 7%;
  width: 130px;
  height: 130px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.doodle--ring::before,
.doodle--ring::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
}

.doodle--ring::before {
  top: 26px;
  left: 31px;
}

.doodle--ring::after {
  right: 27px;
  bottom: 31px;
}

.doodle--slice {
  right: 7%;
  bottom: 13%;
  width: 145px;
  height: 120px;
  border: 2px solid var(--white);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(11deg);
}

.doodle--arc {
  right: 18%;
  top: 12%;
  width: 95px;
  height: 48px;
  border-top: 2px solid var(--red);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.footer-dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
}

.footer-dot--one {
  top: 21%;
  right: 31%;
}

.footer-dot--two {
  bottom: 20%;
  left: 24%;
  width: 15px;
  height: 15px;
}

.footer-dot--three {
  top: 50%;
  left: 9%;
}

.is-motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-motion-ready .hero__visual.is-visible .hero__pizza {
  animation: pizza-in 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.is-motion-ready .hero__visual.is-visible .flavor-badge {
  animation: badge-in 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pizza-in {
  from {
    opacity: 0;
    transform: translate(42px, 20px) rotate(4deg) scale(0.92);
  }
}

@keyframes badge-in {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(20deg) scale(0.8);
  }
}

@media (max-width: 1060px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
  }

  .flavor-badge {
    right: -4px;
    width: 124px;
  }

  .contact-wrap {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 46px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 40px, 720px);
  }

  .site-header__inner {
    min-height: 90px;
  }

  .hero::before {
    display: none;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 62px 72px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 13vw, 7rem);
  }

  .hero__visual {
    width: min(92vw, 620px);
    justify-self: center;
  }

  .hero__microcopy {
    display: none;
  }

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

  .info-card {
    min-height: 0;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: 620px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 24px;
  }

  .top-stripe {
    height: 6px;
  }

  .site-header__inner {
    min-height: 78px;
    gap: 12px;
  }

  .brand {
    width: 158px;
  }

  .header-call__copy > span,
  .header-call__copy strong {
    display: none;
  }

  .header-call {
    min-width: 48px;
    min-height: 48px;
    justify-content: flex-end;
  }

  .icon-circle--small {
    width: 44px;
    height: 44px;
  }

  .hero__grid {
    gap: 22px;
    padding-block: 46px 58px;
  }

  .eyebrow {
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .eyebrow > span {
    flex: 0 0 auto;
    margin-top: 6px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 19vw, 5.6rem);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero__actions {
    margin-top: 25px;
  }

  .hero__actions .button,
  .contact-card__actions .button {
    width: 100%;
  }

  .hero__visual {
    width: 92vw;
  }

  .hero__disc {
    inset: 8% 1% 4% 9%;
  }

  .hero__pizza {
    inset: -1% -5% -4%;
  }

  .hero__pizza img {
    width: 108%;
    height: 108%;
  }

  .flavor-badge {
    right: 0;
    width: 108px;
    border-width: 4px;
  }

  .flavor-badge span {
    font-size: 0.5rem;
  }

  .story-section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .contact-intro h2 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .info-card {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 28px 22px;
  }

  .line-icon {
    width: 52px;
    height: 52px;
  }

  .line-icon svg {
    width: 23px;
    height: 23px;
  }

  .info-card h3 {
    font-size: 1.42rem;
  }

  .info-card p:last-child {
    grid-column: 1 / -1;
    margin-top: 14px;
  }

  .contact-section {
    padding-block: 72px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .contact-card__accent {
    width: 70px;
    height: 70px;
  }

  .contact-card h2 {
    padding-right: 30px;
    font-size: 2rem;
  }

  .contact-row {
    grid-template-columns: 46px minmax(0, 1fr) 20px;
    gap: 12px;
  }

  .icon-circle {
    width: 46px;
    height: 46px;
  }

  .icon-circle svg {
    width: 23px;
    height: 23px;
  }

  .contact-row strong {
    overflow-wrap: anywhere;
  }

  .site-footer {
    min-height: 420px;
  }

  .footer-content h2 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .doodle--ring {
    left: -48px;
  }

  .doodle--slice {
    right: -48px;
  }
}

@media (max-width: 360px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .brand {
    width: 148px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero__visual {
    width: 94vw;
  }

  .flavor-badge {
    width: 96px;
  }

  .info-card {
    padding-inline: 18px;
  }

  .contact-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact-row__arrow {
    display: none;
  }
}

@media (min-width: 600px) and (max-height: 600px) and (orientation: landscape) {
  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    width: 154px;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 24px;
    padding-block: 34px 42px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 9vw, 5rem);
  }

  .hero__lead {
    display: -webkit-box;
    margin-top: 16px;
    overflow: hidden;
    font-size: 0.9rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .hero__actions .button {
    width: auto;
    min-height: 48px;
    padding: 11px 16px;
  }

  .hero__visual {
    width: min(44vw, 410px);
  }

  .flavor-badge {
    width: 92px;
  }
}

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

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

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

/* Poster redesign v2 */
.site-header {
  background: var(--black);
  border-bottom-color: #232323;
}

.site-header__inner {
  min-height: 88px;
}

.brand {
  width: clamp(205px, 18vw, 252px);
}

.header-call {
  color: var(--white);
}

.header-call__copy > span {
  color: #a7a7ad;
}

.hero {
  color: var(--white);
  background: var(--black);
}

.hero::before {
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  clip-path: polygon(76% 0, 100% 0, 100% 100%, 43% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--red);
  clip-path: polygon(73.9% 0, 76.2% 0, 43.2% 100%, 40.8% 100%);
}

.hero__grid {
  min-height: 650px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(12px, 2vw, 34px);
  padding-block: 34px 44px;
}

.hero__copy {
  max-width: 650px;
}

.hero .eyebrow {
  margin-bottom: 14px;
  color: #b8b8bd;
}

.hero h1 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(5.5rem, 8.6vw, 8.2rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
}

.hero__lead {
  max-width: 585px;
  margin-top: 22px;
  color: #c8c8cc;
  font-size: 1rem;
  line-height: 1.58;
}

.hero__actions {
  margin-top: 24px;
}

.hero .button--secondary {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.hero__microcopy {
  margin-top: 16px;
  color: #b5b5ba;
}

.scroll-cue {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  animation: scroll-nudge 1.8s ease-in-out infinite;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
}

@keyframes scroll-nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero__visual {
  width: min(108%, 640px);
  justify-self: end;
}

.hero__pizza {
  inset: -4% -12% -7% -8%;
  filter: drop-shadow(0 26px 18px rgba(9, 9, 9, 0.2));
}

.hero__pizza img {
  width: 116%;
  height: 116%;
  transform: rotate(-2deg);
}

.hero__pepperoni {
  display: none;
}

.about-section {
  padding-block: clamp(60px, 6vw, 84px);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(44px, 7vw, 96px);
}

.about-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.about-heading h2 em {
  color: var(--red);
  font-style: normal;
}

.about-lead {
  margin: 0;
  color: #29292d;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  font-weight: 650;
  line-height: 1.58;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.about-points div {
  min-height: 126px;
  padding: 22px 20px;
  border-left: 1px solid var(--divider);
}

.about-points div:first-child {
  border-left: 4px solid var(--red);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.about-points span {
  margin-top: 7px;
  color: var(--gray);
  font-size: 0.84rem;
  line-height: 1.48;
}

.launch-note {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 14px;
}

.launch-note i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(243,18,29,0.16);
}

.launch-note p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-section {
  padding-block: clamp(54px, 6vw, 78px);
  background: var(--black);
}

.contact-section::before {
  top: -260px;
  left: -230px;
  border-color: rgba(243,18,29,0.34);
}

.contact-wrap {
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(38px, 6vw, 80px);
}

.eyebrow--light > span {
  background: var(--red);
}

.contact-intro h2 {
  font-size: clamp(3.2rem, 5.5vw, 5rem);
}

.contact-intro h2 em {
  color: var(--red);
}

.contact-card {
  padding: clamp(28px, 3.6vw, 44px);
}

.contact-card__accent {
  background: var(--red);
}

.contact-list {
  margin-top: 22px;
}

.contact-row {
  min-height: 90px;
}

.contact-card__actions {
  margin-top: 20px;
}

.site-footer {
  min-height: 360px;
  padding-block: 58px;
  border-top: 6px solid var(--red);
}

.footer-content h2 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

@media (max-width: 860px) {
  .hero::before {
    display: block;
    clip-path: polygon(0 64%, 100% 57%, 100% 100%, 0 100%);
  }

  .hero::after {
    clip-path: polygon(0 62.6%, 100% 55.6%, 100% 58%, 0 65.2%);
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 42px 46px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 14vw, 7rem);
  }

  .hero__visual {
    width: min(92vw, 590px);
    justify-self: center;
  }

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

  .about-heading {
    max-width: 660px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    width: 164px;
  }

  .hero::before {
    clip-path: polygon(0 66%, 100% 61%, 100% 100%, 0 100%);
  }

  .hero::after {
    clip-path: polygon(0 64.7%, 100% 59.7%, 100% 62%, 0 67.3%);
  }

  .hero__grid {
    gap: 12px;
    padding-block: 30px 38px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 20vw, 5.4rem);
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 0.97rem;
  }

  .hero__actions {
    margin-top: 20px;
  }

  .hero__microcopy {
    display: none;
  }

  .scroll-cue {
    margin-top: 4px;
  }

  .hero__visual {
    width: 94vw;
  }

  .hero__pizza {
    inset: -1% -7% -4%;
  }

  .about-section {
    padding-block: 50px;
  }

  .about-grid {
    gap: 24px;
  }

  .about-heading h2 {
    font-size: clamp(2.9rem, 14vw, 4rem);
  }

  .about-points {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .about-points div {
    min-height: 0;
    padding: 17px 16px;
    border-left: 4px solid var(--divider);
    border-bottom: 1px solid var(--divider);
  }

  .about-points div:first-child {
    border-left-color: var(--red);
  }

  .about-points div:last-child {
    border-bottom: 0;
  }

  .launch-note {
    align-items: flex-start;
    margin-top: 18px;
  }

  .contact-section {
    padding-block: 48px;
  }

  .site-footer {
    min-height: 320px;
    padding-block: 48px;
  }
}

@media (min-width: 600px) and (max-height: 600px) and (orientation: landscape) {
  .hero::before {
    clip-path: polygon(78% 0, 100% 0, 100% 100%, 45% 100%);
  }

  .hero::after {
    clip-path: polygon(75.7% 0, 78.2% 0, 45.2% 100%, 42.6% 100%);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 12px;
    padding-block: 22px 28px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 9vw, 5.2rem);
  }

  .scroll-cue {
    display: none;
  }

  .hero__visual {
    width: min(46vw, 430px);
  }
}

/* Compact contact follow-up */
.contact-card__note { display: none; }
@media (max-width: 600px) { .contact-intro { display: none; } }
