/* ============================================================
   Pizzamania Founding Member Landing Page
   Mobile-first, Mediterranean olive palette, WCAG AA compliant
   ============================================================ */

/* --- Google Fonts --- */

/* --- Custom Properties --- */
:root {
  /* Core palette */
  --color-primary: #5C6B4F;
  --color-primary-light: #85956A;
  --color-primary-lighter: #AEBA9F;
  --color-primary-dark: #3E4935;
  --color-secondary: #8B7D3C;
  --color-secondary-light: #C4B472;
  --color-accent: #C41E3A;

  /* Backgrounds — LIGHT theme */
  --color-bg-page: #F5F5EC;
  --color-bg-section: #FAFAF5;
  --color-bg-card: #FEFEFE;
  --color-bg-card-hover: #F2F4EF;

  /* Text — dark on light */
  --color-text-primary: #2A2F25;
  --color-text-secondary: #5A5F53;
  --color-text-muted: #767B70;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Sizing */
  --max-width: 1120px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(92, 107, 79, 0.12);
  --shadow-glow: 0 0 40px rgba(92, 107, 79, 0.08);

  /* Borders */
  --color-border: #DDDDD0;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-secondary);
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Utility: Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

/* --- Utility: Screen reader only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   HEADER / HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

/* Light gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(92, 107, 79, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(139, 125, 60, 0.06) 0%, transparent 60%),
    var(--color-bg-section);
  z-index: 0;
}

/* Noise texture overlay — very subtle on light */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* Decorative elements — olive/gold, subtle on light */
.hero__deco {
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 220px;
  opacity: 0.04;
  pointer-events: none;
}

.hero__deco--top-right {
  top: -40px;
  right: -40px;
  background: conic-gradient(from 0deg at 0% 100%, var(--color-secondary-light) 0deg, var(--color-primary-light) 90deg, transparent 90deg);
  border-radius: 0 0 0 100%;
}

.hero__deco--bottom-left {
  bottom: -30px;
  left: -30px;
  background: conic-gradient(from 180deg at 100% 0%, var(--color-secondary-light) 0deg, var(--color-primary-light) 90deg, transparent 90deg);
  border-radius: 0 100% 0 0;
}

/* Logo */
.hero__logo {
  display: block;
  margin: 0 auto var(--space-xl);
  max-width: 180px;
  height: auto;
  border-radius: 50%;
  animation: fadeInUp 0.6s ease-out both;
}

/* Badge — accent red for scarcity */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: 100px;
  background: rgba(196, 30, 58, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.2);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease-out both;
}

.hero__badge::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s 0.15s ease-out both;
}

.hero__title span {
  display: inline;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  animation: fadeInUp 0.6s 0.3s ease-out both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(92, 107, 79, 0.3);
  animation: fadeInUp 0.6s 0.45s ease-out both;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(92, 107, 79, 0.4);
  color: #fff;
}

.hero__cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.hero__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.hero__cta:hover svg {
  transform: translateY(2px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  animation: fadeInUp 0.6s 0.6s ease-out both;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid #9DA198;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #9DA198;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60% { transform: translateX(-50%) translateY(10px); opacity: 0; }
  61% { transform: translateX(-50%) translateY(0); opacity: 0; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   BENEFITS / VALUE PROPS
   ============================================================ */
.benefits {
  padding: var(--space-4xl) 0;
  position: relative;
  background: var(--color-bg-page);
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 107, 79, 0.2), transparent);
}

.benefits__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: var(--space-3xl);
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.benefit-card {
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border: 1px solid #E4E8DF;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #C9D1BF;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  border-radius: 14px;
  font-size: 1.5rem;
}

.benefit-card__icon--discount {
  background: rgba(92, 107, 79, 0.1);
  color: var(--color-primary);
}

.benefit-card__icon--early {
  background: rgba(139, 125, 60, 0.1);
  color: var(--color-secondary);
}

.benefit-card__icon--birthday {
  background: rgba(139, 125, 60, 0.12);
  color: var(--color-secondary);
}

.benefit-card__icon--exclusive {
  background: rgba(196, 180, 114, 0.15);
  color: #8B7D3C;
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

.benefit-card__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-proof {
  padding: var(--space-2xl) 0 var(--space-4xl);
  text-align: center;
  background: var(--color-bg-page);
}

.social-proof__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, rgba(92, 107, 79, 0.06), rgba(139, 125, 60, 0.06));
  border: 1px solid rgba(92, 107, 79, 0.15);
}

.social-proof__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2rem);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-proof__text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-align: left;
  line-height: 1.3;
}

/* ============================================================
   SIGNUP FORM
   ============================================================ */
.signup {
  padding: var(--space-4xl) 0;
  position: relative;
  background: var(--color-bg-page);
}

.signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(92, 107, 79, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.signup__wrapper {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid #E4E8DF;
  box-shadow: var(--shadow-glow);
}

@media (min-width: 640px) {
  .signup__wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.signup__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  text-align: center;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.signup__subheading {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-2xl);
}

/* Form elements */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.01em;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="date"] {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-section);
  border: 1px solid #DDDDD0;
  border-radius: var(--border-radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(92, 107, 79, 0.15);
}

.form-group input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}

.form-group input[aria-invalid="true"] {
  border-color: var(--color-accent);
}

/* Error text */
.form-error {
  display: none;
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-top: var(--space-xs);
}

.form-error[aria-hidden="false"] {
  display: block;
}


.birthday-selects {
  display: flex;
  gap: var(--space-sm);
}

.birthday-selects select {
  flex: 1;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23767B70' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.birthday-selects select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(92, 107, 79, 0.2);
}

.birthday-selects select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}

/* Style the placeholder option */
.birthday-selects select option[value=""] {
  color: var(--color-text-muted);
}

/* Checkbox consent */
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-section);
  border: 1px solid #ECECE0;
}

.consent-group input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.consent-group input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.consent-group label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.consent-group label a {
  color: var(--color-primary);
  font-weight: 500;
}

/* Submit button — olive green */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 0.95rem var(--space-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 16px rgba(92, 107, 79, 0.25);
  position: relative;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(92, 107, 79, 0.35);
}

.btn-submit:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Loading spinner */
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-submit.is-loading .spinner {
  display: block;
}

.btn-submit.is-loading .btn-submit__text {
  visibility: hidden;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Status messages */
.form-status {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  text-align: center;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  background: rgba(92, 107, 79, 0.08);
  border: 1px solid rgba(92, 107, 79, 0.2);
  color: #3E4935;
}

.form-status--duplicate {
  background: rgba(139, 125, 60, 0.08);
  border: 1px solid rgba(139, 125, 60, 0.2);
  color: var(--color-secondary);
}

.form-status--error {
  background: rgba(196, 30, 58, 0.06);
  border: 1px solid rgba(196, 30, 58, 0.15);
  color: var(--color-accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid #ECECE0;
  text-align: center;
  background: var(--color-bg-page);
}

.site-footer__copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.site-footer__links a {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--color-primary);
}

.site-footer__links a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   LEGAL PAGES (Privacy, Impressum)
   ============================================================ */
.legal-page {
  min-height: 100vh;
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--color-bg-section);
}

.legal-page .container {
  max-width: 760px;
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  margin-bottom: var(--space-2xl);
  transition: color 0.2s ease;
}

.legal-page__back:hover {
  color: var(--color-primary);
}

.legal-page__back::before {
  content: '\2190';
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.legal-page h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.legal-page p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.legal-page ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.legal-page li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.legal-page strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-page address {
  font-style: normal;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* ============================================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (min-width: 768px) {
  .signup__wrapper {
    padding: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .hero__deco {
    width: 340px;
    height: 340px;
  }
}
