:root {
    --cream: #FDFAF5;
    --cream-warm: #F9F4EB;
    --sand: #EAE0CF;
    --warm: #D4BA94;
    --brown: #9A7B5A;
    --brown-deep: #6B4F36;
    --dark: #1E1C1A;
    --gold: #C6953A;
    --gold-light: #E8D09A;
    --gold-shine: #F4DDA0;
    --white: #FFFFFF;
    --green-dark: #1A2E1A;
    --green-mid: #2D4A2D;
    --shadow-soft: 0 4px 24px rgba(154,123,90,0.08);
    --shadow-hover: 0 12px 40px rgba(154,123,90,0.18);
    --shadow-gold: 0 8px 32px rgba(198,149,58,0.25);
    --shadow-luxury: 0 20px 60px rgba(30,28,26,0.15);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    background:
      radial-gradient(circle at 20% 10%, rgba(212,186,148,0.08) 0%, transparent 40%),
      radial-gradient(circle at 80% 90%, rgba(198,149,58,0.05) 0%, transparent 50%),
      #FDFAF5;
    font-family: 'Jost', sans-serif;
    color: var(--dark);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ═════════ TOP BAR ═════════ */
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(253,250,245,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,186,148,0.3);
    z-index: 90;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }
  .topbar.visible { transform: translateY(0); }
  .topbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    letter-spacing: 6px; color: var(--dark);
  }
  .topbar-actions { display: flex; gap: 8px; }
  .top-btn {
    background: transparent;
    border: 1px solid var(--warm);
    color: var(--brown-deep);
    padding: 8px 14px;
    font-size: 10px; letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    border-radius: 2px;
    display: flex; align-items: center; gap: 6px;
  }
  .top-btn:hover, .top-btn:focus {
    background: var(--dark);
    color: var(--gold-light);
    border-color: var(--dark);
  }
  .top-btn svg { width: 14px; height: 14px; }

  /* ═════════ HERO ═════════ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: var(--dark);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.08);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.18); }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(30,28,26,0.3) 0%, rgba(30,28,26,0.55) 50%, rgba(30,28,26,0.85) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px;
    animation: heroIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-ornament {
    font-size: 14px; letter-spacing: 24px;
    color: var(--gold-light); margin-bottom: 32px;
  }
  .hero-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 11vw, 110px);
    font-weight: 300;
    letter-spacing: clamp(8px, 2vw, 22px);
    line-height: 1;
    margin-bottom: 14px;
    color: var(--white);
  }
  .hero-sub {
    font-size: 11px; font-weight: 500;
    letter-spacing: 8px; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 36px;
  }
  .hero-rule {
    display: flex; align-items: center; gap: 18px;
    justify-content: center; margin-bottom: 24px;
  }
  .hero-rule span {
    width: clamp(40px, 8vw, 80px);
    height: 1px; background: var(--gold);
  }
  .hero-rule em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: clamp(16px, 3vw, 22px);
    color: var(--gold-light); font-weight: 400;
  }
  .hero-tag {
    font-size: 11px; letter-spacing: 4px;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
  }
  .hero-stats {
    margin-top: 60px;
    display: flex; gap: clamp(30px, 8vw, 80px);
    justify-content: center; flex-wrap: wrap;
  }
  .hero-stat { text-align: center; }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 6vw, 48px);
    color: var(--gold-light); font-weight: 500;
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 9px; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    margin-top: 8px;
  }
  .hero-scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light); font-size: 10px;
    letter-spacing: 4px; text-transform: uppercase;
    animation: bounce 2s ease infinite;
    z-index: 2;
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
  }

  /* ═════════ PAGE CONTENT ═════════ */
  .page { max-width: 1080px; margin: 0 auto; padding: 80px 44px; }

  /* ═════════ INTRO ═════════ */
  .intro {
    text-align: center;
    max-width: 720px; margin: 0 auto 80px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .intro.visible { opacity: 1; transform: translateY(0); }
  .intro-eyebrow {
    font-size: 10px; letter-spacing: 5px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px;
  }
  .intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400; line-height: 1.3;
    color: var(--dark); margin-bottom: 22px;
  }
  .intro-title em { font-style: italic; color: var(--brown); }
  .intro-text {
    font-size: 14px; line-height: 1.8;
    color: var(--brown-deep);
  }

  /* ═════════ INSTRUCTIONS BANNER ═════════ */
  .instructions {
    background: linear-gradient(135deg, rgba(198,149,58,0.08), rgba(212,186,148,0.04));
    border: 1px solid var(--warm);
    padding: 20px 24px;
    margin-bottom: 60px;
    text-align: center;
    font-size: 12px; letter-spacing: 1px;
    color: var(--brown-deep); border-radius: 2px;
  }
  .instructions strong { color: var(--gold); font-weight: 500; letter-spacing: 2px; }

  /* ═════════ SECTION ═════════ */
  .section { margin-bottom: 90px; }
  .section.animate-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .section.animate-in.visible { opacity: 1; transform: translateY(0); }

  .section-head {
    display: flex; align-items: center; gap: 22px;
    margin-bottom: 40px; position: relative;
  }
  .section-emoji {
    font-size: 38px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(198,149,58,0.3));
    animation: emojiFloat 3s ease-in-out infinite;
  }
  @keyframes emojiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
  .section-title-wrap { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5.5vw, 52px);
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--brown-deep) 0%, var(--gold) 50%, var(--brown-deep) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--brown-deep);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    animation: titleShine 6s ease-in-out infinite;
  }
  @supports not (-webkit-text-fill-color: transparent) {
    .section-title {
      color: var(--brown-deep);
      -webkit-text-fill-color: initial;
    }
  }
  .section-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 60px; height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
  }
  @keyframes titleShine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
  }
  .section-title-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(14px, 2.4vw, 19px);
    color: var(--brown);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 4px;
  }
  .section-line {
    flex: 1; height: 1px; min-width: 30px;
    background: linear-gradient(to right, var(--warm) 0%, transparent 100%);
  }

  /* ═════════ PACKAGE GRID ═════════ */
  .pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pkg-grid.four { grid-template-columns: repeat(2, 1fr); }

  /* ═════════ PACKAGE CARD ═════════ */
  .pkg {
    background: var(--white);
    border: 1px solid var(--sand);
    padding: 28px 24px 24px;
    display: flex; flex-direction: column;
    cursor: pointer; position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  .pkg::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
  }
  .pkg:hover {
    border-color: var(--gold);
    box-shadow:
      0 12px 40px rgba(154,123,90,0.18),
      0 0 0 1px rgba(198,149,58,0.2),
      inset 0 0 80px rgba(198,149,58,0.02);
    transform: translateY(-5px);
  }
  .pkg:hover .pkg-bignum {
    color: var(--gold);
    opacity: 0.4;
    transform: scale(1.05);
    transition: all 0.4s ease;
  }
  .pkg:hover::before { transform: scaleX(1); }
  .pkg.open {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
  }
  .pkg.open::before { transform: scaleX(1); }


  /* Numero pacchetto watermark */
  .pkg .pkg-bignum {
    position: absolute;
    top: 16px; right: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--sand);
    line-height: 1;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -2px;
  }
  .pkg.open .pkg-bignum {
    color: var(--gold);
    opacity: 0.25;
  }
  .pkg > *:not(.pkg-bignum) { position: relative; z-index: 1; }

  .pkg-level { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--brown); margin-bottom: 6px; }
  .pkg-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 500;
    color: var(--dark); margin-bottom: 6px;
    letter-spacing: 0.5px;
  }
  .pkg-desc {
    font-size: 10.5px; color: #999; font-style: italic;
    margin-bottom: 18px; line-height: 1.5; min-height: 32px;
  }
  .pkg-list { list-style: none; flex: 1; margin-bottom: 18px; }
  .pkg-list li {
    font-size: 11px; padding: 7px 0;
    border-bottom: 1px solid var(--sand);
    display: flex; gap: 8px; line-height: 1.45;
    color: #3a3a3a;
  }
  .pkg-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
  .pkg-price-bar {
    border-top: 1px solid var(--warm); padding-top: 14px;
    display: flex; justify-content: space-between; align-items: flex-end;
  }
  .pkg-price-wrap { display: flex; flex-direction: column; }
  .pkg-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 400; line-height: 1;
    color: var(--dark);
  }
  .pkg-price-note {
    font-size: 9.5px; letter-spacing: 1px;
    color: #bbb; text-transform: uppercase; margin-top: 3px;
  }
  .pkg-expand {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--warm);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    color: var(--brown); font-size: 18px;
    font-weight: 300; flex-shrink: 0;
  }
  .pkg:hover .pkg-expand {
    background: var(--gold); border-color: var(--gold);
    color: var(--white);
  }
  .pkg.open .pkg-expand {
    background: var(--gold); border-color: var(--gold);
    color: var(--white); transform: rotate(45deg);
  }

  /* ═════════ GALLERY ═════════ */
  .pkg-gallery {
    max-height: 0; overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 -24px -24px;
  }
  .pkg.open .pkg-gallery { max-height: 1400px; }

  .gallery-inner {
    padding: 24px;
    background: linear-gradient(180deg, rgba(247,243,236,0.6), rgba(234,224,207,0.3));
    border-top: 1px solid var(--gold);
    margin-top: 18px;
  }
  .gallery-label {
    font-size: 9px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px; font-weight: 500;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px; margin-bottom: 16px;
  }
  .gallery-img {
    aspect-ratio: 1;
    background: var(--sand);
    border-radius: 2px;
    color: var(--brown);
    font-size: 9px; letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative; overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
    background-size: cover; background-position: center;
  }
  .gallery-img:hover { transform: scale(1.05); }
  .gallery-img::before {
    content: '+ Foto';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--sand), rgba(212,186,148,0.5));
    color: var(--brown);
    font-size: 10px; letter-spacing: 1.5px;
    opacity: 1; transition: opacity 0.3s ease;
  }
  .gallery-img.filled::before { opacity: 0; }
  .gallery-img.filled { background-color: transparent; cursor: zoom-in; }

  .gallery-note {
    font-size: 11px; color: var(--brown);
    font-style: italic; line-height: 1.6;
    padding: 12px 0 0;
    border-top: 1px solid rgba(212,186,148,0.4);
  }
  .gallery-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 14px; background: var(--dark);
    color: var(--gold-light); padding: 12px 22px;
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.3s ease; border-radius: 2px;
    -webkit-tap-highlight-color: transparent;
  }
  .gallery-cta:hover { background: var(--gold); color: var(--white); }
  .gallery-cta:active { transform: scale(0.97); }


  /* BADGES */
  .badge-popular {
    position: absolute;
    top: 12px; left: -8px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8862F 100%);
    color: var(--white);
    font-size: 8px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 12px 5px 16px;
    box-shadow: 0 4px 12px rgba(198,149,58,0.4);
    z-index: 5;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
  }
  .badge-popular::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #5a4020 transparent transparent;
  }

  /* ═════════ SPECTACLE ═════════ */
  .pkg-spectacle {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #1E1C1A 0%, #2A2622 100%);
    border: 1px solid var(--gold);
    padding: 40px 36px 32px;
    color: var(--white); position: relative;
  }
  .pkg-spectacle::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 0%, rgba(198,149,58,0.18), transparent 60%);
    pointer-events: none;
  }
  .pkg-spectacle > * { position: relative; z-index: 1; }
  .pkg-spectacle .pkg-level { color: var(--gold-light); }
  .pkg-spectacle .pkg-name { color: var(--gold); font-size: 38px; }
  .pkg-spectacle .pkg-desc { color: rgba(255,255,255,0.5); font-size: 12px; min-height: auto; }
  .pkg-spectacle .pkg-list li { color: rgba(255,255,255,0.82); border-bottom-color: rgba(255,255,255,0.08); }
  .pkg-spectacle .pkg-list li::before { color: var(--gold); }
  .pkg-spectacle .pkg-price-bar { border-top-color: var(--gold); }
  .pkg-spectacle .pkg-price { color: var(--gold-light); font-size: 48px; }
  .pkg-spectacle .pkg-price-note { color: rgba(255,255,255,0.35); }
  .pkg-spectacle .pkg-expand { border-color: var(--gold); color: var(--gold); }
  .pkg-spectacle:hover .pkg-expand { background: var(--gold); color: var(--dark); }
  .pkg-spectacle .gallery-inner { background: rgba(255,255,255,0.03); border-top-color: var(--gold); }
  .pkg-spectacle .gallery-img { background: rgba(255,255,255,0.05); color: var(--gold-light); }
  .pkg-spectacle .gallery-img::before { background: rgba(198,149,58,0.1); color: var(--gold-light); }
  .pkg-spectacle .gallery-note { color: rgba(255,255,255,0.5); border-top-color: rgba(198,149,58,0.3); }
  .pkg-spectacle .pkg-gallery { margin: 0 -36px -32px; }

  .badge-exclusive {
    display: inline-block; background: var(--gold);
    color: var(--dark); font-size: 8px;
    font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; padding: 4px 12px;
    margin-bottom: 14px;
  }

  .spectacle-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  }
  .spectacle-content > div:nth-child(2) { padding-top: 38px; }
  .pkg-spectacle .pkg-price-bar { grid-column: 1 / -1; margin-top: 14px; }

  /* ═════════ DIVIDER ═════════ */
  .divider {
    text-align: center;
    margin: 70px 0;
    display: flex; align-items: center; justify-content: center; gap: 22px;
  }
  .divider span.line {
    flex: 0 0 80px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .divider span.ornament {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 8px;
    font-family: 'Cormorant Garamond', serif;
  }

  /* ═════════ EXTRAS ═════════ */
  .extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .extra {
    background: var(--white); border: 1px solid var(--sand);
    padding: 16px 18px;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s ease;
  }
  .extra:hover {
    border-color: var(--warm); transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
  }
  .extra-label { font-size: 11px; }
  .extra-val { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--brown); }

  /* ═════════ TESTIMONIALS ═════════ */
  .testimonials {
    background: var(--cream-warm);
    padding: 70px 0;
    margin: 80px -100vw;
    padding-left: max(44px, calc((100vw - 1080px)/2 + 44px));
    padding-right: max(44px, calc((100vw - 1080px)/2 + 44px));
  }
  .testi-wrap { max-width: 1080px; margin: 0 auto; }
  .testi-eyebrow {
    text-align: center; font-size: 10px;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .testi-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500; color: var(--dark);
    margin-bottom: 50px; letter-spacing: 0.5px;
  }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  }
  .testi-card {
    background: var(--white); padding: 28px 24px;
    border: 1px solid var(--sand);
    position: relative;
  }
  .testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px; color: var(--gold);
    line-height: 0.5;
    position: absolute; top: 20px; left: 18px;
    opacity: 0.3;
  }
  .testi-stars {
    color: var(--gold); font-size: 13px;
    letter-spacing: 2px; margin-bottom: 14px;
  }
  .testi-text {
    font-size: 12.5px; line-height: 1.7;
    color: var(--brown-deep); font-style: italic;
    margin-bottom: 16px;
  }
  .testi-author {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brown);
    font-weight: 500;
  }
  .testi-event {
    font-size: 9px; color: #aaa;
    margin-top: 4px; letter-spacing: 1px;
  }

  /* ═════════ ALFA SECTION ═════════ */
  .alfa-wrap {
    background: linear-gradient(135deg, var(--green-dark) 0%, #243A24 100%);
    padding: 80px 0 70px;
    margin: 80px 0 0;
    color: var(--white); position: relative;
    overflow: hidden;
  }
  .alfa-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 10% 20%, rgba(198,149,58,0.08), transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(74,124,74,0.15), transparent 50%);
    pointer-events: none;
  }
  .alfa-page { max-width: 1080px; margin: 0 auto; padding: 0 44px; position: relative; z-index: 1; }
  .alfa-header { text-align: center; margin-bottom: 50px; }
  .alfa-collab {
    font-size: 9px; letter-spacing: 5px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 12px;
  }
  .alfa-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 68px);
    font-weight: 600; letter-spacing: clamp(6px, 1.5vw, 10px);
    color: var(--gold); line-height: 1;
    text-shadow: 0 2px 20px rgba(198,149,58,0.3);
  }
  .alfa-title-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 3vw, 26px);
    font-style: italic;
    color: rgba(255,255,255,0.6); margin-top: 8px;
    letter-spacing: 4px;
  }
  .alfa-rule { width: 60px; height: 1px; background: var(--gold); margin: 22px auto; }
  .alfa-desc {
    font-size: 12px; color: rgba(255,255,255,0.55);
    letter-spacing: 3px; text-transform: uppercase;
  }

  .alfa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }

  .alfa-pkg {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(198,149,58,0.3);
    padding: 28px 22px 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    -webkit-tap-highlight-color: transparent;
  }
  .alfa-pkg:hover {
    border-color: var(--gold);
    background: rgba(198,149,58,0.08);
    transform: translateY(-3px);
  }
  .alfa-pkg.open, .alfa-pkg.featured {
    border-color: var(--gold);
    background: rgba(198,149,58,0.1);
  }
  .alfa-pkg-tag {
    font-size: 8px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 10px;
  }
  .alfa-pkg-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 500;
    color: var(--white); margin-bottom: 14px;
  }
  .alfa-pkg-list { list-style: none; flex: 1; margin-bottom: 18px; }
  .alfa-pkg-list li {
    font-size: 10.5px; color: rgba(255,255,255,0.7);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 8px; line-height: 1.4;
  }
  .alfa-pkg-list li::before { content: '✦'; color: var(--gold); font-size: 7px; flex-shrink: 0; margin-top: 3px; }
  .alfa-price-bar {
    border-top: 1px solid rgba(198,149,58,0.4);
    padding-top: 14px;
    display: flex; justify-content: space-between; align-items: flex-end;
  }
  .alfa-price {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.1; color: var(--gold-light); font-weight: 400;
  }
  .alfa-price-main { font-size: 26px; }
  .alfa-price-plus {
    font-size: 11px; color: rgba(255,255,255,0.5);
    letter-spacing: 1px; margin: 4px 0 2px;
  }
  .alfa-price-note { font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 1px; margin-top: 4px; }
  .alfa-expand {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(198,149,58,0.5);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 16px;
    transition: all 0.3s ease; flex-shrink: 0; font-weight: 300;
  }
  .alfa-pkg.open .alfa-expand {
    background: var(--gold); color: var(--dark);
    transform: rotate(45deg);
  }
  .alfa-pkg .pkg-gallery { margin: 0 -22px -24px; }
  .alfa-pkg .gallery-inner { background: rgba(0,0,0,0.2); border-top: 1px solid var(--gold); }
  .alfa-pkg .gallery-img { background: rgba(255,255,255,0.05); color: var(--gold-light); }
  .alfa-pkg .gallery-img::before { background: rgba(198,149,58,0.1); color: var(--gold-light); }
  .alfa-pkg .gallery-note { color: rgba(255,255,255,0.5); border-top-color: rgba(198,149,58,0.3); }
  .alfa-pkg .gallery-label { color: var(--gold-light); }

  .alfa-included {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(198,149,58,0.2);
    padding: 26px 30px; margin-top: 16px;
  }
  .alfa-included-title {
    font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px; text-align: center; font-weight: 500;
  }
  .alfa-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 36px; }
  .alfa-included-item {
    font-size: 11px; color: rgba(255,255,255,0.65);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 8px;
  }
  .alfa-included-item::before { content: '✦'; color: var(--gold); font-size: 7px; flex-shrink: 0; margin-top: 3px; }

  .alfa-tagline {
    text-align: center; margin-top: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 19px;
    color: rgba(255,255,255,0.5); letter-spacing: 1px;
  }
  .alfa-tagline strong { color: var(--gold); font-style: normal; font-weight: 500; }
  .alfa-instagram {
    text-align: center; margin-top: 22px;
    font-size: 10px; letter-spacing: 3px;
    color: rgba(255,255,255,0.35); text-transform: uppercase;
  }

  /* ═════════ FOOTER ═════════ */
  .footer-wrap { background: var(--cream); padding: 70px 44px 130px; }
  .footer {
    max-width: 1080px; margin: 0 auto;
    border-top: 1px solid var(--warm); padding-top: 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    margin-bottom: 50px;
  }
  .footer-note { font-size: 11px; color: #999; line-height: 2; }
  .footer-note strong { color: var(--brown); font-weight: 500; }
  .footer-brand { text-align: right; }
  .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; letter-spacing: 8px; }
  .footer-contact { font-size: 10px; color: var(--brown); letter-spacing: 1px; margin-top: 6px; }
  .footer-ig { font-size: 11px; color: var(--gold); margin-top: 8px; letter-spacing: 2px; }

  .footer-final {
    max-width: 1080px; margin: 0 auto;
    text-align: center; padding-top: 40px;
    border-top: 1px solid var(--warm);
  }
  .footer-final-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 20px;
    color: var(--brown-deep); margin-bottom: 12px;
  }
  .footer-final-sub {
    font-size: 10px; letter-spacing: 4px;
    color: var(--gold); text-transform: uppercase;
  }

  /* ═════════ FLOATING ACTIONS ═════════ */
  .cta-float {
    position: fixed;
    bottom: 24px; right: 24px;
    background: var(--dark);
    color: var(--gold-light);
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    z-index: 95;
    display: flex; align-items: center; gap: 8px;
    -webkit-tap-highlight-color: transparent;
  }
  .cta-float:hover {
    background: #25D366; color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  }
  .cta-float:active { transform: scale(0.95); }

  .top-fab {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 46px; height: 46px;
    background: var(--dark);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 95;
    border: none;
    font-family: inherit;
  }
  .top-fab.visible { opacity: 1; transform: translateY(0); }
  .top-fab:hover { background: var(--gold); color: var(--white); }

  /* ═════════ SHARE MODAL ═════════ */
  .share-modal {
    display: none;
    position: fixed; inset: 0;
    background: rgba(30,28,26,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    align-items: center; justify-content: center;
    padding: 20px;
  }
  .share-modal.active { display: flex; }
  .share-box {
    background: var(--white);
    max-width: 420px; width: 100%;
    padding: 36px 30px;
    border-radius: 4px;
    position: relative;
    animation: shareIn 0.3s ease;
  }
  @keyframes shareIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .share-close {
    position: absolute; top: 14px; right: 18px;
    background: none; border: none;
    font-size: 22px; color: var(--brown);
    cursor: pointer; line-height: 1; font-family: inherit;
  }
  .share-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 500;
    color: var(--dark); margin-bottom: 6px;
    letter-spacing: 0.5px;
  }
  .share-sub {
    font-size: 11px; color: #999; letter-spacing: 1px;
    margin-bottom: 24px;
  }
  .share-options {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .share-btn {
    background: var(--cream-warm);
    border: 1px solid var(--sand);
    padding: 14px;
    font-size: 11px; letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brown-deep);
    cursor: pointer; transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 2px;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    text-decoration: none;
  }
  .share-btn:hover {
    background: var(--dark); color: var(--gold-light);
    border-color: var(--dark);
    transform: translateY(-2px);
  }
  .share-btn svg { width: 22px; height: 22px; }
  .share-copy-msg {
    margin-top: 16px; text-align: center;
    font-size: 11px; color: var(--gold);
    opacity: 0; transition: opacity 0.3s ease;
    letter-spacing: 1px;
  }
  .share-copy-msg.visible { opacity: 1; }

  /* ═════════ LOADER ═════════ */
  .loader {
    position: fixed; inset: 0;
    background: var(--dark);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  .loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .loader-content { text-align: center; color: var(--gold-light); }
  .loader-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; letter-spacing: 14px;
    color: var(--gold); margin-bottom: 18px;
    animation: loaderPulse 1.5s ease-in-out infinite;
  }
  @keyframes loaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .loader-sub {
    font-size: 10px; letter-spacing: 4px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
  }

  /* ═════════ LIGHTBOX ═════════ */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.92);
    align-items: center; justify-content: center;
    cursor: zoom-out; padding: 20px;
  }
  .lightbox.active { display: flex; }
  .lightbox-img {
    max-width: 92vw; max-height: 88vh;
    object-fit: contain; border-radius: 2px;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
    animation: lbIn 0.3s ease;
  }
  @keyframes lbIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
  .lightbox-close {
    position: fixed; top: 20px; right: 24px;
    color: rgba(255,255,255,0.6); font-size: 28px;
    cursor: pointer; z-index: 1001;
    font-weight: 300; line-height: 1;
    background: none; border: none; font-family: inherit;
  }
  .lightbox-close:hover { color: white; }

  /* ═════════ MOBILE ═════════ */
  @media (max-width: 768px) {
    .page { padding: 50px 20px; }
    .topbar { padding: 10px 16px; }
    .topbar-brand { font-size: 18px; letter-spacing: 4px; }
    .top-btn { padding: 7px 10px; font-size: 9px; letter-spacing: 1px; }
    .top-btn span { display: none; }
    .hero-content { padding: 30px 20px; }
    .hero-stats { gap: 24px; margin-top: 40px; }
    .section { margin-bottom: 60px; }
    .section-head { gap: 14px; }
    .section-emoji { font-size: 24px; }
    .pkg-grid, .pkg-grid.four, .alfa-grid { grid-template-columns: 1fr; }
    .spectacle-content { grid-template-columns: 1fr; gap: 0; }
    .spectacle-content > div:nth-child(2) { padding-top: 0; }
    .pkg-spectacle { padding: 28px 22px; }
    .pkg-spectacle .pkg-gallery { margin: 0 -22px -22px; }
    .pkg-spectacle .pkg-name { font-size: 30px; }
    .pkg-spectacle .pkg-price { font-size: 40px; }
    .extras { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; gap: 14px; }
    .testimonials { padding: 50px 0; margin: 60px -20px; padding-left: 20px; padding-right: 20px; }
    .footer, .alfa-included-grid { grid-template-columns: 1fr; }
    .footer-brand { text-align: left; }
    .alfa-page { padding: 0 20px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-float { padding: 12px 18px; font-size: 10px; bottom: 16px; right: 16px; }
    .top-fab { width: 42px; height: 42px; bottom: 16px; left: 16px; }
    .divider { letter-spacing: 8px; margin: 40px 0; }
    .footer-wrap { padding: 50px 20px 120px; }
    .share-options { grid-template-columns: 1fr; }
  }


  /* VALUES */
  .values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0 80px;
  }
  .value-card {
    text-align: center;
    padding: 36px 22px;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--sand);
    transition: all 0.4s ease;
    position: relative;
  }
  .value-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(154,123,90,0.12);
  }
  .value-icon {
    font-size: 36px;
    margin-bottom: 16px;
    filter: drop-shadow(0 3px 6px rgba(198,149,58,0.25));
  }
  .value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--brown-deep);
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .value-text {
    font-size: 12px;
    color: var(--brown);
    line-height: 1.7;
  }

  /* PROCESS */
  .process {
    background: linear-gradient(180deg, rgba(234,224,207,0.3) 0%, rgba(247,243,236,0.8) 100%);
    padding: 70px 44px;
    margin: 0 -44px 80px;
    border-radius: 0;
  }
  .process-wrap {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
  }
  .process-eyebrow {
    font-size: 10px; letter-spacing: 5px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 12px;
  }
  .process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
    color: var(--brown-deep);
    margin-bottom: 50px;
    letter-spacing: 1px;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 38px; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--warm) 20%, var(--warm) 80%, transparent);
  }
  .process-step {
    text-align: center;
    position: relative;
  }
  .process-step-num {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(198,149,58,0.15);
    transition: all 0.4s ease;
  }
  .process-step:hover .process-step-num {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.08);
  }
  .process-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--brown-deep);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }
  .process-step-text {
    font-size: 11px;
    color: var(--brown);
    line-height: 1.6;
  }

  /* FAQ */
  .faq-section {
    margin: 90px 0;
  }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .faq-item.open {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(154,123,90,0.08);
  }
  .faq-q {
    padding: 18px 24px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--brown-deep);
    font-weight: 400;
    letter-spacing: 0.3px;
    -webkit-tap-highlight-color: transparent;
  }
  .faq-q::after {
    content: '+';
    color: var(--gold);
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .faq-item.open .faq-q::after {
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
  }
  .faq-a-inner {
    padding: 0 24px 20px;
    font-size: 12.5px;
    color: var(--brown);
    line-height: 1.8;
    font-style: italic;
  }

  /* QUOTE PULL */
  .quote-pull {
    margin: 70px auto;
    max-width: 720px;
    text-align: center;
    padding: 30px 20px;
  }
  .quote-pull-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
  }
  .quote-pull-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    line-height: 1.4;
    color: var(--brown-deep);
    font-weight: 400;
    margin-bottom: 16px;
  }
  .quote-pull-author {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
  }

  @media (max-width: 768px) {
    .values { grid-template-columns: 1fr; gap: 12px; }
    .process { padding: 50px 20px; margin: 0 -20px 60px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
    .process-steps::before { display: none; }
  }

  /* ═════════ PRINT / PDF ═════════ */
  @media print {
    .topbar, .cta-float, .top-fab, .share-modal, .lightbox, .hero-scroll, .instructions { display: none !important; }
    body { background: white; }
    .hero { min-height: auto; padding: 40px; page-break-after: always; }
    .hero-bg { display: none; }
    .hero-overlay { display: none; }
    .hero { background: var(--dark); }
    .section { page-break-inside: avoid; margin-bottom: 40px; }
    .pkg { page-break-inside: avoid; }
    .pkg-gallery { max-height: none !important; }
    .pkg-expand { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
  }
  .gallery-img:not(.filled) { display: none !important; }
  .gallery-img picture { position: absolute; inset: 0; display: block; }
  .gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pkg:focus-visible, .alfa-pkg:focus-visible, .faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
