:root {
  --red: #e6212c;
  --red-dark: #c91522;
  --strawberry: #ff5964;
  --cream: #fff7f2;
  --cream-strong: #ffede7;
  --wine: #4a171a;
  --pink: #ffd9de;
  --white: #ffffff;
  --muted: #79595b;
  --line: rgba(74, 23, 26, 0.13);
  --shadow: 0 22px 60px rgba(111, 22, 29, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wine);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(230, 33, 44, 0.075) 1px, transparent 1px);
  background-size: 18px 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--wine);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(74, 23, 26, 0.08);
  background: rgba(255, 247, 242, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.quick-options a:focus-visible,
.desktop-nav a:focus-visible {
  outline: 3px solid var(--strawberry);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 26px rgba(230, 33, 44, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 30px rgba(230, 33, 44, 0.3);
}

.button-outline {
  color: var(--red);
  border-color: rgba(230, 33, 44, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  overflow: hidden;
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 670px;
  margin: 0 auto;
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.eyebrow,
.service-chip,
.kicker,
.budget-label {
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--red);
}

.service-chip {
  padding: 7px 11px;
  border: 1px solid rgba(230, 33, 44, 0.16);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.035em;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-family: "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.3rem, 6.1vw, 5.65rem);
  font-weight: 800;
}

h1 span {
  position: relative;
  color: var(--red);
  white-space: nowrap;
}

h1 span::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: -7px;
  left: 1%;
  height: 9px;
  border-radius: 50%;
  background: var(--strawberry);
  opacity: 0.72;
  transform: rotate(-1.5deg) scaleY(0.45);
}

.hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.quick-options {
  max-width: 610px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.quick-options a {
  min-height: 56px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.quick-options a:hover {
  border-color: var(--strawberry);
  background: var(--white);
  transform: translateY(-2px);
}

.quick-options span {
  color: var(--red);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.hero-halo {
  position: absolute;
  width: min(460px, 90%);
  aspect-ratio: 1;
  border: 1px solid rgba(230, 33, 44, 0.1);
  border-radius: 48% 52% 58% 42% / 44% 44% 56% 56%;
  background: linear-gradient(145deg, var(--pink), var(--cream-strong));
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.hero-visual > img {
  position: relative;
  z-index: 2;
  width: min(490px, 100%);
  animation: float 5s ease-in-out infinite;
}

.hero-note {
  position: absolute;
  right: -8px;
  bottom: 30px;
  z-index: 3;
  width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(74, 23, 26, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 35px rgba(74, 23, 26, 0.13);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.spark {
  position: absolute;
  z-index: 4;
  color: var(--red);
}

.spark-one {
  top: 50px;
  left: 25px;
  font-size: 2.4rem;
}

.spark-two {
  top: 100px;
  right: 20px;
  font-size: 1.45rem;
  transform: rotate(12deg);
}

.section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.delivery-card h2,
.final-cta h2 {
  margin: 10px 0 14px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  font-weight: 780;
}

.section-heading p,
.delivery-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.kicker {
  color: var(--red);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.order-card {
  position: relative;
  min-height: 400px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 35px rgba(88, 24, 28, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.order-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.48;
}

.order-card:hover {
  border-color: rgba(230, 33, 44, 0.26);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.order-card.featured {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.order-card.featured::before {
  background: var(--strawberry);
  opacity: 0.65;
}

.card-ribbon {
  position: absolute;
  top: 27px;
  right: -37px;
  width: 150px;
  padding: 5px 0;
  color: var(--wine);
  background: var(--pink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(42deg);
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.card-number {
  font-family: Georgia, serif;
  color: var(--red);
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
}

.featured .card-number {
  color: var(--white);
}

.budget-label {
  color: var(--muted);
  letter-spacing: 0.04em;
}

.featured .budget-label {
  color: rgba(255, 255, 255, 0.78);
}

.order-card h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.order-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.button-card {
  align-self: stretch;
  justify-content: space-between;
  color: var(--white);
  background: var(--wine);
}

.featured .button-card {
  color: var(--red);
  background: var(--white);
}

.process {
  padding-top: 46px;
}

.process-panel {
  position: relative;
  padding: clamp(34px, 6vw, 74px);
  border-radius: 42px;
  overflow: hidden;
  color: var(--white);
  background: var(--wine);
  box-shadow: var(--shadow);
}

.process-panel::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 65px solid rgba(255, 217, 222, 0.08);
  border-radius: 50%;
}

.section-heading-light {
  position: relative;
  z-index: 2;
}

.section-heading-light .kicker {
  color: var(--pink);
}

.steps {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.steps li > span {
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--wine);
  background: var(--pink);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 9px;
  font-size: 1.3rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.delivery {
  padding-top: 34px;
}

.delivery-card {
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 15px 40px rgba(74, 23, 26, 0.07);
}

.delivery-card h2 {
  margin-bottom: 8px;
  font-size: 2.4rem;
}

.delivery-card p {
  max-width: 600px;
}

.pin {
  width: 92px;
  height: 92px;
  border-radius: 29px 29px 29px 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
  transform: rotate(-3deg);
}

.pin span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta {
  padding-top: 34px;
}

.final-cta-inner {
  position: relative;
  padding: 72px 24px;
  border-radius: 42px;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  text-align: center;
}

.final-cta-inner::before,
.final-cta-inner::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border: 45px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.final-cta-inner::before {
  top: -120px;
  left: -90px;
}

.final-cta-inner::after {
  right: -110px;
  bottom: -145px;
}

.final-cta p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.final-cta h2 {
  margin-top: 0;
}

.mini-heart {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border-radius: 50%;
  place-items: center;
  color: var(--red);
  background: var(--white);
}

.button-light {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: var(--red);
  background: var(--white);
}

.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--red);
  font-weight: 800;
}

.mobile-whatsapp {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

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

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 52px;
    text-align: center;
  }

  .eyebrow-row,
  .hero-actions {
    justify-content: center;
  }

  .hero-text,
  .quick-options {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual > img {
    width: min(430px, 92%);
  }

  .hero-note {
    right: 9%;
    bottom: 15px;
  }

  .order-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .order-card {
    min-height: 330px;
  }

  .delivery-card {
    grid-template-columns: auto 1fr;
  }

  .delivery-card .button {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 82px;
  }

  .header-inner {
    width: min(calc(100% - 28px), var(--max-width));
    min-height: 66px;
  }

  .brand img {
    width: 124px;
  }

  .header-inner > .button {
    display: none;
  }

  .hero-inner,
  .section,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero-inner {
    padding: 40px 0 42px;
    gap: 24px;
  }

  .eyebrow-row {
    margin-bottom: 18px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.62rem, 13vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

  .quick-options {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .quick-options a {
    min-height: 48px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-halo {
    width: 330px;
  }

  .hero-visual > img {
    width: 340px;
  }

  .hero-note {
    right: 0;
    bottom: 3px;
    width: 190px;
  }

  .spark-one {
    left: 5px;
  }

  .section {
    padding: 66px 0;
  }

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

  .section-heading h2,
  .delivery-card h2,
  .final-cta h2 {
    font-size: 2.1rem;
  }

  .order-card {
    min-height: 350px;
    padding: 24px;
    border-radius: 26px;
  }

  .process-panel,
  .final-cta-inner {
    margin-right: -2px;
    margin-left: -2px;
    border-radius: 28px;
  }

  .steps li {
    min-height: 180px;
  }

  .delivery-card {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .pin {
    margin: 0 auto;
  }

  .delivery-card .button {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 28px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    min-height: 56px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 14px 34px rgba(74, 23, 26, 0.35);
    font-size: 0.93rem;
    font-weight: 850;
  }
}

@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;
  }

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