/* ═══════════════════════════════════════════
   SWEET PINK BAKERY — Invitation Styles
   Author: duskyberry
   Methodology: BEM-inspired + CSS variables
   ═══════════════════════════════════════════ */

/* ───────────────────────────────
   1. CSS VARIABLES
─────────────────────────────── */
:root {
  /* Brand palette */
  --color-pink: #e0489a;
  --color-pink-light: #f472b6;
  --color-pink-pale: #fce7f3;
  --color-magenta: #c2185b;
  --color-purple: #9c27b0;
  --color-purple-dark: #6a0080;
  --color-purple-mid: #ab47bc;
  --color-white: #ffffff;
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-20: rgba(255, 255, 255, 0.2);

  /* Gradients */
  --grad-bg: linear-gradient(
    135deg,
    #2d0038 0%,
    #6a0060 35%,
    #b5006e 70%,
    #e0489a 100%
  );
  --grad-hero: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(100, 0, 80, 0.55) 60%,
    rgba(200, 0, 100, 0.9) 100%
  );
  --grad-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  --grad-button: linear-gradient(
    135deg,
    var(--color-pink) 0%,
    var(--color-purple) 100%
  );
  --grad-glow: radial-gradient(
    ellipse at center,
    rgba(224, 72, 154, 0.6) 0%,
    transparent 70%
  );

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --glass-blur: 16px;

  /* Typography */
  --font-display: "Dancing Script", cursive;
  --font-title: "Pacifico", cursive;
  --font-body: "Poppins", sans-serif;

  /* Spacing */
  --space-xs: clamp(0.5rem, 2vw, 0.75rem);
  --space-sm: clamp(0.75rem, 3vw, 1rem);
  --space-md: clamp(1rem, 4vw, 1.5rem);
  --space-lg: clamp(1.5rem, 5vw, 2.5rem);
  --space-xl: clamp(2.5rem, 7vw, 4rem);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ───────────────────────────────
   2. RESET & BASE
─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--grad-bg);
  background-attachment: fixed;
  color: var(--color-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  list-style: none;
}

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

/* ───────────────────────────────
   3. CORNER DONUTS (fixed decorative)
─────────────────────────────── */
.corner-donut {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Top-left */
.corner-donut--tl {
  top: -40px;
  left: -50px;
  width: clamp(120px, 22vw, 200px);
  transform-origin: center center;
}

/* Top-right */
.corner-donut--tr {
  top: -30px;
  right: -45px;
  width: clamp(100px, 18vw, 170px);
  transform-origin: center center;
}

/* Bottom-left */
.corner-donut--bl {
  bottom: -40px;
  left: -40px;
  width: clamp(90px, 16vw, 150px);
  transform-origin: center center;
}

/* Bottom-right */
.corner-donut--br {
  bottom: -30px;
  right: -35px;
  width: clamp(110px, 20vw, 180px);
  transform-origin: center center;
}

/* ───────────────────────────────
   4. GLASS CARD — reusable
─────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ───────────────────────────────
   5. SECTION WRAPPER
─────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  text-align: center;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(200, 0, 120, 0.6);
  margin-bottom: var(--space-sm);
}

.section__subtitle {
  text-align: center;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: var(--color-white-80);
  margin-bottom: var(--space-lg);
}

/* ───────────────────────────────
   6. BUTTONS — reusable
─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 1.6em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition-fast);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.08);
}
.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--grad-button);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(224, 72, 154, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 72, 154, 0.7);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  transform: translateY(-2px);
  border-color: var(--color-pink-light);
  box-shadow: 0 4px 20px rgba(224, 72, 154, 0.35);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.btn--amazon {
  background: linear-gradient(135deg, #ff9900, #e47911);
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 153, 0, 0.45);
}
.btn--amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 153, 0, 0.6);
}

.btn--full {
  width: 100%;
}

/* ───────────────────────────────
   7. HERO
─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 1;
}

/* Glow background */
.hero__bg-glow {
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from {
    opacity: 0.6;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Hero image */
.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md) var(--space-xl);
  width: 100%;
  max-width: 560px;
}

.hero__pre {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  color: var(--color-white-80);
  letter-spacing: 0.04em;
  margin-bottom: 0.3em;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 20vw, 9rem);
  line-height: 1;
  color: var(--color-white);
  text-shadow: 0 0 30px rgba(224, 72, 154, 0.9),
    0 0 60px rgba(224, 72, 154, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.15em;
}

.hero__sub {
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  color: var(--color-pink-pale);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.hero__badge {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 0.5em 1.4em;
  font-size: clamp(0.75rem, 2.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-pink-pale);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-white-60);
  animation: scroll-bounce 1.6s ease-in-out infinite;
  box-shadow: 0 10px 0 var(--color-white-20), 0 20px 0 rgba(255, 255, 255, 0.05);
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}

/* ───────────────────────────────
   8. REVEAL ANIMATIONS
─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.8s var(--transition-med) forwards;
}
.reveal--delay1 {
  animation-delay: 0.3s;
}
.reveal--delay2 {
  animation-delay: 0.6s;
}
.reveal--delay3 {
  animation-delay: 0.9s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered reveal */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────────────────────
   9. SPIRITUAL MESSAGE
─────────────────────────────── */
.spiritual__card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.spiritual__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.spiritual__text {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.9;
  color: var(--color-white-80);
  font-style: italic;
}

/* ───────────────────────────────
   10. COUNTDOWN
─────────────────────────────── */
.countdown {
  text-align: center;
}

.countdown__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 1.5vw, 0.6rem);
  flex-wrap: nowrap;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.countdown__cap {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: clamp(0.5rem, 2vw, 0.9rem) clamp(0.6rem, 2.5vw, 1.1rem);
  min-width: clamp(58px, 18vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.countdown__num {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 7vw, 2.8rem);
  line-height: 1;
  color: var(--color-white);
  text-shadow: 0 0 20px rgba(224, 72, 154, 0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.countdown__num.bump {
  transform: scale(1.25);
}

.countdown__label {
  font-size: clamp(0.6rem, 1.8vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-pink-light);
  text-transform: uppercase;
}

.countdown__sep {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  color: var(--color-pink-light);
  opacity: 0.8;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.2;
  }
}

.countdown__date {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: var(--color-white-80);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ───────────────────────────────
   11. GALLERY (CSS-only slider)
─────────────────────────────── */
.gallery {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.gallery .section__title,
.gallery .section__subtitle {
  padding: 0 var(--space-md);
}

/* Horizontal scroll container */
.gallery__track {
  display: flex;
  gap: clamp(0.75rem, 3vw, 1.25rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-sm) var(--space-md) var(--space-lg);
  scrollbar-width: none; /* Firefox */
}

.gallery__track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.gallery__item {
  flex: 0 0 clamp(220px, 70vw, 300px);
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.gallery__item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 40px rgba(224, 72, 154, 0.4);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ───────────────────────────────
   12. EVENT DETAILS
─────────────────────────────── */
.event-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.event-details__card {
  padding: var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
}

.event-details__card--full {
  grid-column: 1 / -1;
}

.event-details__icon {
  font-size: 1.8rem;
}

.event-details__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-pink-light);
}

.event-details__value {
  font-family: var(--font-title);
  font-size: clamp(1rem, 4vw, 1.4rem);
  color: var(--color-white);
  line-height: 1.2;
}

.event-details__sub {
  font-size: 0.8rem;
  color: var(--color-white-60);
}

.event-details__btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

@media (min-width: 420px) {
  .event-details__btns {
    flex-direction: row;
    justify-content: center;
  }
}

/* ───────────────────────────────
   13. ITINERARY / TIMELINE
─────────────────────────────── */
.timeline {
  position: relative;
  padding-left: clamp(1.5rem, 5vw, 2rem);
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: clamp(0.9rem, 2.5vw, 1.2rem);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--color-pink) 10%,
    var(--color-purple) 90%,
    transparent
  );
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 3vw, 1.25rem);
  margin-bottom: var(--space-md);
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 16px rgba(224, 72, 154, 0.4);
  position: relative;
  z-index: 1;
}

.timeline__card {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.timeline__time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-pink-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.timeline__event {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  font-weight: 600;
  color: var(--color-white);
}

/* ───────────────────────────────
   14. GIFTS
─────────────────────────────── */
.gifts__card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.gifts__icon {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite alternate;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.gifts__title {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--color-white);
}

.gifts__text {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: var(--color-white-80);
  line-height: 1.7;
  max-width: 380px;
}

/* ───────────────────────────────
   15. SPOTIFY
─────────────────────────────── */
.spotify__wrap {
  padding: var(--space-sm);
  overflow: hidden;
  border-radius: var(--radius-md);
}

.spotify__wrap iframe {
  border-radius: var(--radius-sm);
  display: block;
}

/* ───────────────────────────────
   16. RSVP / FORM
─────────────────────────────── */
.rsvp__card {
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rsvp__field {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.rsvp__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white-80);
  letter-spacing: 0.04em;
  border: none;
  padding: 0;
}

.rsvp__input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.8em 1.2em;
  font-family: var(--font-body);
  font-size: 1rem; /* ≥16px prevents iOS zoom */
  color: var(--color-white);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}

.rsvp__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.rsvp__input:focus {
  border-color: var(--color-pink-light);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.25);
}

.rsvp__fieldset {
  border: none;
}

.rsvp__options {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin-top: 0.5em;
}

@media (min-width: 400px) {
  .rsvp__options {
    flex-direction: row;
  }
}

.rsvp__option {
  display: flex;
  align-items: center;
  gap: 0.6em;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-white-80);
  padding: 0.6em 1em;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--transition-fast),
    border-color var(--transition-fast);
  flex: 1;
  justify-content: center;
}

.rsvp__option:has(input:checked) {
  background: rgba(224, 72, 154, 0.25);
  border-color: var(--color-pink-light);
}

.rsvp__option input[type="radio"] {
  accent-color: var(--color-pink-light);
}

/* ───────────────────────────────
   17. CONTACT
─────────────────────────────── */
.contact__card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.contact__icon {
  font-size: 2.5rem;
  animation: float 2.5s ease-in-out infinite alternate;
}

.contact__text {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--color-white-80);
  line-height: 1.7;
}

/* ───────────────────────────────
   18. FOOTER
─────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-sm);
}

.footer__text {
  font-size: 0.95rem;
  color: var(--color-white-80);
  margin-bottom: 0.3em;
}

.footer__text strong {
  color: var(--color-pink-light);
  font-weight: 700;
}

.footer__sub {
  font-size: 0.75rem;
  color: var(--color-white-60);
}

/* ───────────────────────────────
   19. SPARKLES decoration (pseudo)
─────────────────────────────── */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

/* ───────────────────────────────
   20. RESPONSIVE TWEAKS
─────────────────────────────── */
@media (min-width: 480px) {
  .event-details__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 600px) {
  .timeline {
    padding-left: 3rem;
  }
  .timeline::before {
    left: 1.5rem;
  }
}
/* ───────────────────────────────
   OVERRIDE PRO DONUTS (más grandes + más wow)
─────────────────────────────── */

.corner-donut {
  opacity: 0.95;
  filter: drop-shadow(0 12px 25px rgba(255, 0, 150, 0.25));
}

/* Top-left */
.corner-donut--tl {
  top: -80px;
  left: -90px;
  width: clamp(200px, 35vw, 360px);
}

/* Top-right */
.corner-donut--tr {
  top: -70px;
  right: -85px;
  width: clamp(180px, 32vw, 320px);
}

/* Bottom-left */
.corner-donut--bl {
  bottom: -80px;
  left: -80px;
  width: clamp(170px, 30vw, 300px);
}

/* Bottom-right */
.corner-donut--br {
  bottom: -70px;
  right: -75px;
  width: clamp(190px, 34vw, 340px);
}
/* ───────────────────────────────
   EXTRA BOOST (TL + BR más grandes)
─────────────────────────────── */

/* Top-left (la MÁS protagonista) */
.corner-donut--tl {
  top: -110px;
  left: -120px;
  width: clamp(260px, 48vw, 460px);
}

/* Bottom-right (segunda protagonista) */
.corner-donut--br {
  bottom: -100px;
  right: -110px;
  width: clamp(240px, 46vw, 420px);
}
