:root {
  --wine: #750a12;
  --red: #c30f1b;
  --red-bright: #e21a25;
  --yellow: #ffc51b;
  --cream: #fff3d9;
  --paper: #f7eddd;
  --ink: #1a0e0a;
  --brown: #2a130d;
  --muted: #7a6a61;
  --green: #21c063;
  --white: #fffaf2;
  --line: rgba(59, 28, 17, 0.14);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --shadow: 0 24px 70px rgba(34, 9, 4, 0.22);
  --container: min(1180px, calc(100% - 44px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open,
body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.section {
  padding-block: clamp(76px, 8vw, 124px);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease;
}

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

.top-note {
  position: relative;
  z-index: 102;
  height: 34px;
  background: var(--wine);
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.top-note__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-note svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 34px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  background: rgba(19, 8, 6, 0.96);
  box-shadow: 0 12px 34px rgba(15, 4, 2, 0.24);
  backdrop-filter: blur(14px);
}

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

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 86px;
  height: 70px;
  overflow: hidden;
  border-radius: 14px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.09);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 34px);
  margin-left: auto;
  margin-right: clamp(24px, 3vw, 44px);
}

.main-nav a {
  position: relative;
  padding-block: 28px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  bottom: 21px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 850;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(195, 15, 27, 0.2);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--red-bright);
  background: var(--red-bright);
  box-shadow: 0 16px 36px rgba(195, 15, 27, 0.3);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.order-option:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  height: 18px;
  margin-left: 10px;
}

.button--small {
  min-height: 42px;
  padding: 11px 19px;
  font-size: 0.72rem;
}

.button--whatsapp {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(33, 192, 99, 0.22);
}

.button--whatsapp:hover {
  border-color: #2bd874;
  background: #2bd874;
  box-shadow: 0 18px 40px rgba(33, 192, 99, 0.32);
}

.button--whatsapp svg {
  margin-right: 10px;
  margin-left: 0;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  backdrop-filter: blur(5px);
}

.button--outline:hover {
  border-color: var(--yellow);
  background: rgba(255, 197, 27, 0.08);
}

.button--yellow {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(255, 197, 27, 0.18);
}

.button--yellow:hover {
  border-color: #ffd34f;
  background: #ffd34f;
  box-shadow: 0 18px 40px rgba(255, 197, 27, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.cover {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 660px;
  overflow: hidden;
  padding: 136px 0 96px;
  background:
    linear-gradient(90deg, rgba(13, 5, 3, 0.92) 0%, rgba(13, 5, 3, 0.67) 45%, rgba(13, 5, 3, 0.1) 80%),
    url("assets/hero-pizza.jpeg") center / cover no-repeat;
  color: var(--white);
}

.cover::before {
  position: absolute;
  z-index: 1;
  right: -10vw;
  bottom: -35%;
  width: 65vw;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 59, 14, 0.27), transparent 65%);
  content: "";
  filter: blur(12px);
  pointer-events: none;
}

.cover__shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6, 2, 1, 0.22), transparent 30%, rgba(7, 3, 2, 0.65) 100%),
    linear-gradient(90deg, transparent 67%, rgba(8, 2, 1, 0.2));
  pointer-events: none;
}

.cover__embers {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 77% 32%, var(--yellow) 0 1px, transparent 1.8px),
    radial-gradient(circle at 84% 43%, #ff5a20 0 1.5px, transparent 2px),
    radial-gradient(circle at 70% 48%, #ff5a20 0 1px, transparent 1.5px);
  background-size:
    160px 180px,
    230px 220px,
    280px 250px;
  animation: embers 16s linear infinite;
  pointer-events: none;
}

@keyframes embers {
  to {
    background-position:
      20px -180px,
      -20px -220px,
      30px -250px;
  }
}

.cover__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 366px;
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
}

.cover__copy {
  max-width: 670px;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  color: var(--yellow);
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.cover h1 {
  max-width: 660px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.6vw, 5.1rem);
  font-weight: 900;
  letter-spacing: 0.018em;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.cover h1 em {
  color: var(--yellow);
  font-style: normal;
  text-shadow: 0 6px 24px rgba(255, 151, 0, 0.15);
}

.cover__lead {
  max-width: 570px;
  margin-top: 22px;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(0.94rem, 1.2vw, 1.04rem);
  line-height: 1.6;
}

.cover__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.order-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(28, 10, 6, 0.72);
  box-shadow: 0 28px 80px rgba(9, 2, 1, 0.4);
  backdrop-filter: blur(15px);
}

.order-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  content: "";
}

.order-card__eyebrow {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.order-card h2 {
  max-width: 280px;
  margin-top: 5px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.16;
  text-wrap: balance;
}

.order-card__options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.order-option {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.order-option:hover {
  transform: translateX(4px);
  border-color: rgba(255, 197, 27, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.order-option__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: var(--green);
  color: white;
}

.order-option__icon svg {
  width: 23px;
  height: 23px;
}

.order-option__icon--word {
  background: #ea1d2c;
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.order-option:not(.order-option--ifood):last-child .order-option__icon {
  background: var(--yellow);
  color: var(--ink);
}

.order-option small,
.order-option strong {
  display: block;
}

.order-option small {
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.68rem;
}

.order-option strong {
  margin-top: 1px;
  font-size: 0.86rem;
  line-height: 1.2;
}

.order-option__arrow {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.45);
}

.cover__facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cover__facts > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding-right: 26px;
}

.cover__facts > div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.cover__facts svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.cover__facts span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.76rem;
  line-height: 1.35;
}

.cover__facts strong {
  display: block;
  color: var(--white);
  font-size: 0.83rem;
}

.flavor-line {
  overflow: hidden;
  border-block: 1px solid rgba(117, 10, 18, 0.16);
  background: var(--yellow);
  color: var(--ink);
}

.flavor-line__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 46px;
  animation: ticker 32s linear infinite;
}

.flavor-line span {
  padding-inline: 24px;
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.flavor-line i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

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

.story {
  position: relative;
  overflow: hidden;
}

.story::after {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -150px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(195, 15, 27, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(195, 15, 27, 0.025),
    0 0 0 90px rgba(195, 15, 27, 0.018);
  content: "";
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.story__photos {
  position: relative;
  min-height: 530px;
}

.story__photo {
  position: absolute;
  overflow: hidden;
  background: var(--brown);
  box-shadow: var(--shadow);
}

.story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story__photo:hover img {
  transform: scale(1.04);
}

.story__photo--wide {
  top: 0;
  left: 0;
  width: 84%;
  height: 410px;
  border-radius: 18px 70px 18px 18px;
}

.story__photo--wide::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(15, 5, 3, 0.8));
  content: "";
}

.story__photo--wide figcaption {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.story__photo--portrait {
  right: 0;
  bottom: 0;
  width: 38%;
  height: 292px;
  border: 8px solid var(--paper);
  border-radius: 100px 18px 18px 18px;
}

.story__stamp {
  position: absolute;
  bottom: 14px;
  left: 10px;
  display: grid;
  width: 130px;
  height: 130px;
  place-content: center;
  border: 2px dashed rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  transform: rotate(-8deg);
}

.story__stamp span {
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.story__stamp strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.story__copy h2,
.section-heading h2,
.special__copy h2,
.location__copy h2,
.closing h2 {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.5vw, 3.55rem);
  font-weight: 400;
  letter-spacing: 0.016em;
  line-height: 0.99;
  text-transform: uppercase;
  text-wrap: balance;
}

.story__copy > p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 24px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 850;
}

.check-list li:last-child {
  grid-column: 1 / -1;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(195, 15, 27, 0.1);
  color: var(--red);
}

.check-list svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  transition: transform 180ms ease;
}

.text-link:hover > span {
  transform: translateX(4px);
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.craving {
  background:
    linear-gradient(rgba(19, 7, 5, 0.96), rgba(19, 7, 5, 0.96)),
    url("assets/hero-pizza.jpeg") center / cover fixed;
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading > p {
  max-width: 420px;
  color: rgba(255, 250, 242, 0.6);
  font-size: 0.92rem;
}

.craving .section-kicker,
.steps .section-kicker {
  color: var(--yellow);
}

.craving__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.craving-card {
  position: relative;
  display: flex;
  min-height: 312px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.craving-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 197, 27, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.craving-card--featured {
  background:
    linear-gradient(145deg, rgba(195, 15, 27, 0.97), rgba(117, 10, 18, 0.95)),
    url("assets/pizza-tres-sabores.jpeg") center / cover;
}

.craving-card--featured:hover {
  background:
    linear-gradient(145deg, rgba(218, 18, 31, 0.96), rgba(117, 10, 18, 0.94)),
    url("assets/pizza-tres-sabores.jpeg") center / cover;
}

.craving-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--display);
  font-size: 4.8rem;
  line-height: 1;
}

.craving-card__content {
  position: relative;
  z-index: 1;
  align-self: end;
}

.craving-card__content > span {
  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.craving-card h3 {
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.04;
  text-transform: uppercase;
}

.craving-card p {
  max-width: 330px;
  margin-top: 10px;
  color: rgba(255, 250, 242, 0.67);
  font-size: 0.82rem;
  line-height: 1.55;
}

.craving-card button {
  margin-top: 18px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--yellow);
  background: transparent;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.special {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 640px;
  background: var(--cream);
}

.special__image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.special__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(25, 8, 4, 0.32));
  content: "";
}

.special__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.special__image:hover img {
  transform: scale(1.035);
}

.special__label {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 25px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.special__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 126px) clamp(38px, 7vw, 110px);
}

.special__copy p:not(.section-kicker) {
  max-width: 540px;
  margin-top: 22px;
  color: var(--muted);
}

.special__details {
  display: flex;
  gap: clamp(35px, 6vw, 74px);
  margin: 28px 0;
  padding-block: 20px;
  border-block: 1px solid var(--line);
}

.special__details span {
  color: var(--muted);
  font-size: 0.8rem;
}

.special__details strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.special__copy .button {
  align-self: flex-start;
}

.steps {
  background: var(--red);
  color: var(--white);
}

.section-heading--center {
  display: block;
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

.steps__rail {
  display: grid;
  grid-template-columns: 1fr 82px 1fr 82px 1fr;
  align-items: center;
}

.step {
  text-align: center;
}

.step__icon {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(117, 10, 18, 0.28);
}

.step__icon > svg {
  width: 38px;
  height: 38px;
  color: var(--yellow);
}

.step__icon span {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 950;
}

.step h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.step p {
  max-width: 260px;
  margin: 8px auto 0;
  color: rgba(255, 250, 242, 0.67);
  font-size: 0.82rem;
}

.steps__arrow svg {
  width: 100%;
  color: rgba(255, 197, 27, 0.68);
  stroke-dasharray: 4 7;
}

.location {
  background: #1c0d09;
  color: var(--white);
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.location__copy > p:not(.section-kicker) {
  max-width: 530px;
  margin-top: 19px;
  color: rgba(255, 250, 242, 0.62);
}

.location__info {
  display: grid;
  gap: 17px;
  margin-top: 26px;
  font-style: normal;
}

.location__info > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location__info > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 197, 27, 0.28);
  border-radius: 50%;
  color: var(--yellow);
}

.location__info svg {
  width: 20px;
  height: 20px;
}

.location__info p {
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}

.location__info strong {
  display: block;
  color: var(--white);
  font-size: 0.86rem;
}

.location__buttons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.text-link--light {
  margin-top: 0;
  color: var(--white);
}

.text-link--light > span {
  background: rgba(255, 255, 255, 0.09);
  color: var(--yellow);
}

.location__photo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 70px 18px 18px 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.location__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(13, 4, 2, 0.72));
  content: "";
}

.location__photo img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.location__photo figcaption {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 25px;
  color: var(--white);
}

.location__photo figcaption span,
.location__photo figcaption strong {
  display: block;
}

.location__photo figcaption span {
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location__photo figcaption strong {
  margin-top: 3px;
  font-size: 0.9rem;
}

.closing {
  position: relative;
  overflow: hidden;
  padding-block: clamp(50px, 6vw, 82px);
  background: var(--wine);
  color: var(--white);
}

.closing__glow {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 620px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 197, 27, 0.18), transparent 68%);
  transform: translateX(-50%);
}

.closing__inner {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.closing__inner > img {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  object-fit: cover;
}

.closing h2 {
  max-width: 680px;
  font-size: clamp(1.9rem, 3.3vw, 3.2rem);
}

.closing .section-kicker {
  color: var(--yellow);
}

.footer {
  background: #100705;
  color: var(--white);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 1.2fr;
  gap: 40px;
  padding-block: 60px 48px;
}

.footer__brand img {
  width: 106px;
  height: 88px;
  margin-bottom: 15px;
  border-radius: 14px;
  object-fit: cover;
}

.footer__brand p,
.footer__column p,
.footer__column a {
  color: rgba(255, 250, 242, 0.56);
  font-size: 0.76rem;
  line-height: 1.75;
}

.footer__brand p {
  max-width: 260px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer__column h2 {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__column a {
  transition: color 180ms ease;
}

.footer__column a:hover {
  color: var(--white);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 250, 242, 0.4);
  font-size: 0.68rem;
}

.footer__bottom a:hover {
  color: var(--yellow);
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 11px 17px;
  border: 3px solid var(--paper);
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(8, 68, 32, 0.3);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(8, 68, 32, 0.4);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

.order-dialog {
  position: fixed;
  z-index: 300;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 220ms ease,
    opacity 220ms ease;
}

.order-dialog.is-open {
  visibility: visible;
  opacity: 1;
}

.order-dialog__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(10, 3, 2, 0.76);
  cursor: pointer;
  backdrop-filter: blur(7px);
}

.order-dialog__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(470px, calc(100% - 34px));
  max-height: calc(100vh - 34px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(117, 10, 18, 0.14);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(9, 2, 1, 0.52);
  text-align: center;
  transform: translate(-50%, calc(-50% + 20px)) scale(0.97);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.order-dialog.is-open .order-dialog__panel {
  transform: translate(-50%, -50%) scale(1);
}

.order-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.order-dialog__close span {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 17px;
  height: 2px;
  background: var(--ink);
}

.order-dialog__close span:first-child {
  transform: rotate(45deg);
}

.order-dialog__close span:last-child {
  transform: rotate(-45deg);
}

.order-dialog__panel > img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 18px;
  object-fit: cover;
}

.order-dialog__panel h2 {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.order-dialog__panel > p:not(.section-kicker) {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.8rem;
}

.order-dialog__options {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  text-align: left;
}

.order-dialog__options a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 64px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fffaf0;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.order-dialog__options a:hover {
  transform: translateX(4px);
  border-color: rgba(195, 15, 27, 0.38);
}

.order-dialog__option-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--green);
  color: white;
}

.order-dialog__options a:nth-child(2) .order-dialog__option-icon {
  background: var(--yellow);
  color: var(--ink);
}

.order-dialog__option-icon--ifood {
  background: #ea1d2c;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 950;
}

.order-dialog__option-icon svg {
  width: 21px;
  height: 21px;
}

.order-dialog__options small,
.order-dialog__options strong {
  display: block;
}

.order-dialog__options small {
  color: var(--muted);
  font-size: 0.64rem;
}

.order-dialog__options strong {
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1100px) {
  .header-phone span {
    display: none;
  }

  .main-nav {
    gap: 20px;
    margin-right: 22px;
  }

  .cover {
    background-position: 58% center;
  }

  .cover__inner {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 36px;
  }

  .order-card {
    padding: 22px;
  }

  .special__copy {
    padding-inline: 48px;
  }

  .closing__inner {
    grid-template-columns: 88px minmax(0, 1fr) auto;
  }

  .closing__inner > img {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100% - 34px, 760px);
  }

  .top-note__place {
    display: none !important;
  }

  .top-note__inner {
    justify-content: center;
  }

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

  .brand {
    width: 78px;
    height: 62px;
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(360px, 88vw);
    margin: 0;
    padding: 110px 32px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #160806;
    box-shadow: -30px 0 80px rgba(5, 1, 1, 0.35);
    opacity: 0;
    transform: translateX(105%);
    transition:
      transform 240ms ease,
      opacity 240ms ease;
  }

  .main-nav.is-open {
    z-index: 1;
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding-block: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
  }

  .main-nav a::after {
    display: none;
  }

  .site-header__actions {
    position: relative;
    z-index: 2;
  }

  .menu-toggle {
    display: block;
  }

  .cover {
    min-height: auto;
    padding: 135px 0 92px;
    background-position: 61% center;
  }

  .cover__shade {
    background:
      linear-gradient(90deg, rgba(9, 3, 2, 0.95) 0%, rgba(9, 3, 2, 0.68) 72%, rgba(9, 3, 2, 0.3)),
      linear-gradient(180deg, rgba(6, 2, 1, 0.2), transparent 35%, rgba(6, 2, 1, 0.86));
  }

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

  .cover__copy {
    max-width: 640px;
  }

  .order-card {
    max-width: 500px;
  }

  .cover__facts {
    position: relative;
    margin-top: 42px;
  }

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

  .story__photos {
    max-width: 650px;
  }

  .story__copy {
    max-width: 640px;
  }

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

  .craving-card--featured {
    grid-column: 1 / -1;
  }

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

  .special__image {
    min-height: 520px;
  }

  .special__copy {
    padding: 76px var(--side, 34px);
  }

  .steps__rail {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .steps__arrow {
    display: none;
  }

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

  .location__copy {
    max-width: 620px;
  }

  .location__photo {
    min-height: 420px;
  }

  .location__photo img {
    min-height: 420px;
  }

  .closing__inner {
    grid-template-columns: 84px 1fr;
  }

  .closing__inner .button {
    grid-column: 2;
    justify-self: start;
  }

  .footer__main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer__column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  .section {
    padding-block: 72px;
  }

  .site-header .button--small,
  .header-phone {
    display: none;
  }

  .cover {
    padding-top: 125px;
    background-position: 65% center;
  }

  .cover h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .cover__lead {
    max-width: 94%;
    font-size: 0.91rem;
  }

  .cover__buttons {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .cover__buttons .button {
    width: 100%;
  }

  .order-card {
    width: 100%;
    padding: 22px 17px;
  }

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

  .cover__facts > div {
    min-height: 60px;
    padding-inline: 0 !important;
  }

  .cover__facts > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .story__photos {
    min-height: 405px;
  }

  .story__photo--wide {
    width: 91%;
    height: 305px;
    border-radius: 16px 48px 16px 16px;
  }

  .story__photo--portrait {
    width: 42%;
    height: 205px;
    border-width: 6px;
  }

  .story__stamp {
    bottom: 18px;
    width: 104px;
    height: 104px;
  }

  .story__stamp strong {
    font-size: 1.22rem;
  }

  .story__copy h2,
  .section-heading h2,
  .special__copy h2,
  .location__copy h2,
  .closing h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .check-list li:last-child {
    grid-column: auto;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading > p {
    margin-top: 14px;
  }

  .craving {
    background-attachment: scroll;
  }

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

  .craving-card--featured {
    grid-column: auto;
  }

  .craving-card {
    min-height: 275px;
  }

  .special__image {
    min-height: 460px;
  }

  .special__copy {
    padding: 70px 20px;
  }

  .special__details {
    gap: 22px;
  }

  .location__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .location__photo,
  .location__photo img {
    min-height: 330px;
  }

  .location__photo {
    border-radius: 48px 14px 14px 14px;
  }

  .closing__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .closing__inner > img {
    width: 82px;
    height: 82px;
    margin-inline: auto;
  }

  .closing__inner .button {
    grid-column: 1;
    justify-self: center;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__column:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    padding-block: 19px;
    flex-direction: column;
    gap: 5px;
  }

  .floating-whatsapp {
    right: 13px;
    bottom: 13px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-height: 800px) and (min-width: 921px) {
  .site-header__inner {
    min-height: 70px;
  }

  .brand {
    width: 78px;
    height: 61px;
  }

  .main-nav a {
    padding-block: 23px;
  }

  .main-nav a::after {
    bottom: 17px;
  }

  .cover {
    min-height: 620px;
    padding-top: 115px;
    padding-bottom: 80px;
  }

  .cover h1 {
    font-size: clamp(3rem, 5.1vw, 4.45rem);
  }

  .cover__lead {
    margin-top: 16px;
  }

  .cover__buttons {
    margin-top: 20px;
  }

  .order-card {
    padding: 21px;
  }

  .order-card__options {
    margin-top: 15px;
  }

  .order-option {
    min-height: 59px;
  }

  .cover__facts > div {
    min-height: 62px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
