:root {
  --grape: #5b2474;
  --grape-dark: #351146;
  --berry: #98229e;
  --magenta: #e10098;
  --yellow: #ffc928;
  --lime: #8cc63f;
  --ink: #26162d;
  --muted: #745d7d;
  --paper: #fff8ee;
  --white: #ffffff;
  --line: rgba(91, 36, 116, 0.14);
  --shadow: 0 22px 60px rgba(53, 17, 70, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 201, 40, 0.2), transparent 360px),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 238, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(53, 17, 70, 0.14);
}

.brand strong,
h1,
h2 {
  font-family: Fredoka, Inter, sans-serif;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 19px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--grape);
}

.nav-order,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.nav-order,
.primary {
  color: var(--grape-dark);
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(255, 201, 40, 0.34);
}

.ghost {
  color: var(--grape);
  background: var(--white);
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  min-height: calc(100vh - 79px);
  padding: clamp(36px, 6vw, 88px) clamp(18px, 5vw, 72px) 54px;
  background:
    radial-gradient(circle at 88% 18%, rgba(225, 0, 152, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(91, 36, 116, 0.08), rgba(140, 198, 63, 0.1));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo {
  width: clamp(96px, 13vw, 150px);
  height: clamp(96px, 13vw, 150px);
  margin-bottom: 18px;
  object-fit: contain;
  background: var(--white);
  border: 5px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 20px 46px rgba(53, 17, 70, 0.16);
}

h1,
h2 {
  margin: 0;
  color: var(--grape-dark);
  line-height: 0.96;
}

h1 {
  max-width: 780px;
  font-size: clamp(44px, 8vw, 92px);
}

h2 {
  max-width: 700px;
  font-size: clamp(34px, 5vw, 58px);
}

.hero-copy,
.builder-copy p,
.social-copy p,
.visit-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy {
  max-width: 630px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  font-family: Fredoka, Inter, sans-serif;
  color: var(--grape-dark);
  font-size: 21px;
}

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

.hero-visual::before {
  position: absolute;
  inset: 5% -5% 2% 6%;
  content: "";
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  border-radius: 22px;
  transform: rotate(3deg);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(82vw, 430px);
  aspect-ratio: 0.64;
  object-fit: cover;
  object-position: center;
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 34px 70px rgba(53, 17, 70, 0.22);
}

.builder-section,
.giveaway-section,
.social-section,
.visit-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.builder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(26px, 6vw, 72px);
  background: var(--grape-dark);
}

.builder-section h2,
.builder-section .eyebrow {
  color: var(--yellow);
}

.builder-copy p {
  color: #eadcf0;
}

.builder {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.builder label,
.builder legend {
  font-weight: 900;
}

.builder textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 8px;
  font: inherit;
}

.builder fieldset {
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.size-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.extras-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px;
  color: var(--grape-dark);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.choice-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 201, 40, 0.7);
}

.choice-button.is-active {
  color: var(--grape-dark);
  background: var(--yellow);
  border-color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 201, 40, 0.18);
}

.order-preview {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(255, 201, 40, 0.14);
  border: 1px solid rgba(255, 201, 40, 0.28);
  border-radius: 8px;
}

.order-preview span {
  color: #e6caff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-preview strong {
  color: var(--white);
  line-height: 1.4;
}

.whatsapp-square {
  display: grid;
  min-height: 118px;
  place-items: center;
  padding: 18px;
  color: var(--white);
  text-align: center;
  background: #25d366;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.whatsapp-square span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-square strong {
  font-family: Fredoka, Inter, sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1;
}

.giveaway-section {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 201, 40, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff, #fbf1ff);
}

.giveaway-art img {
  width: min(100%, 430px);
  aspect-ratio: 0.72;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.giveaway-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.giveaway-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.giveaway-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.giveaway-list span {
  display: grid;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--grape);
  border-radius: 50%;
  font-family: Fredoka, Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.giveaway-list strong {
  color: var(--grape-dark);
  font-size: 18px;
}

.giveaway-list p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(26px, 6vw, 72px);
}

.social-shots {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
  align-items: center;
}

.social-shots img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 7px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.social-shots img:first-child {
  aspect-ratio: 0.8 / 1;
}

.visit-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.88), rgba(140, 198, 63, 0.45)),
    var(--yellow);
}

.visit-section h2 {
  font-size: clamp(32px, 5vw, 54px);
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #eadcf0;
  background: var(--grape-dark);
}

footer strong {
  font-family: Fredoka, Inter, sans-serif;
  color: var(--yellow);
  font-size: 22px;
}

@media (max-width: 980px) {
  .hero,
  .builder-section,
  .giveaway-section,
  .social-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero-facts,
  .social-shots {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .visit-section,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-order,
  .whatsapp-square {
    width: 100%;
  }

  .size-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }

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

}
