    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --blush: #f9c6d0;
      --rose: #e8899a;
      --dusty: #d4687a;
      --petal: #fde8ed;
      --soft: #fff0f3;
      --cream: #fffaf9;
      --white: #ffffff;
      --text-dark: #3b1f26;
      --text-mid: #7a4652;
      --text-light: #c9909c;
      --gold: #d4a8a0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Tenor Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--petal);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--rose);
      border-radius: 10px;
    }


    /* ════════════════════════════
       HERO
    ════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      overflow: hidden;
      background: linear-gradient(160deg, #fff6f8 0%, #ffe8ef 50%, #ffd6e3 100%);
      padding-top: 80px;
    }

    /* Floating petal decorations */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 15% 20%, rgba(249, 198, 208, .35) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 75%, rgba(232, 137, 154, .25) 0%, transparent 70%),
        radial-gradient(ellipse 30% 30% at 50% 10%, rgba(255, 255, 255, .6) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Decorative ring */
    .hero-ring {
      position: absolute;
      width: min(520px, 90vw);
      height: min(520px, 90vw);
      border-radius: 50%;
      border: 1px solid rgba(232, 137, 154, .3);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: breathe 6s ease-in-out infinite;
    }

    .hero-ring::after {
      content: '';
      position: absolute;
      inset: 16px;
      border-radius: 50%;
      border: 1px dashed rgba(232, 137, 154, .2);
    }

    @keyframes breathe {

      0%,
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .7;
      }

      50% {
        transform: translate(-50%, -50%) scale(1.04);
        opacity: 1;
      }
    }

    /* Corner florals */
    .floral {
      position: absolute;
      font-size: clamp(3rem, 8vw, 7rem);
      opacity: .15;
      line-height: 1;
      user-select: none;
    }

    .floral-tl {
      top: 1rem;
      left: 1rem;
      transform: rotate(-20deg);
    }

    .floral-tr {
      top: 1rem;
      right: 1rem;
      transform: rotate(20deg);
    }

    .floral-bl {
      bottom: 1rem;
      left: 1rem;
      transform: rotate(20deg) scaleX(-1);
    }

    .floral-br {
      bottom: 1rem;
      right: 1rem;
      transform: rotate(-20deg) scaleX(-1);
    }

    .hero-eyebrow {
      font-family: 'Tenor Sans', sans-serif;
      font-size: clamp(.65rem, 1.5vw, .8rem);
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--dusty);
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp .8s ease .2s forwards;
    }

    .hero-script {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(3.5rem, 12vw, 8rem);
      color: var(--dusty);
      line-height: 1;
      margin-bottom: .3rem;
      opacity: 0;
      animation: fadeUp .9s ease .4s forwards;
      text-shadow: #d4687a 0px 4px 12px;
    }

    .hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.1rem, 3.5vw, 2rem);
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp .9s ease .6s forwards;
    }

    /* Photo placeholder */
    .hero-photo-wrap {
      position: relative;
      width: min(240px, 62vw);
      height: min(300px, 75vw);
      margin: 0 auto 2.5rem;
      opacity: 0;
      animation: fadeUp 1s ease .8s forwards;
    }

    .hero-photo-frame {
      width: 100%;
      height: 100%;
      border-radius: 50% 50% 48% 52% / 55% 55% 45% 45%;
      overflow: hidden;
      border: 4px solid rgba(232, 137, 154, .45);
      box-shadow:
        0 0 0 10px rgba(249, 198, 208, .25),
        0 20px 60px rgba(212, 104, 122, .2);
      background: linear-gradient(135deg, #fde8ed, #f9c6d0, #e8899a);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: .5rem;
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .hero-photo-frame:hover {
      transform: scale(1.02);
      box-shadow: 0 0 0 12px rgba(249, 198, 208, .3), 0 30px 80px rgba(212, 104, 122, .28);
    }

    .hero-photo-frame .ph-icon {
      font-size: 2.5rem;
      opacity: .55;
    }

    .hero-photo-frame .ph-label {
      font-family: 'Tenor Sans', sans-serif;
      font-size: .65rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--white);
      opacity: .75;
      background-image: url(assets/img/main-pic.jpg);
      background-size: contain;
      background-position: center;
    }

    /* Tiny petal dots around frame */
    .petal-dot {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--rose);
      opacity: .5;
    }

    .petal-dot:nth-child(1) {
      top: 5%;
      right: -6px;
    }

    .petal-dot:nth-child(2) {
      bottom: 10%;
      left: -6px;
    }

    .petal-dot:nth-child(3) {
      top: 40%;
      left: -10px;
      width: 5px;
      height: 5px;
    }

    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(.95rem, 2.2vw, 1.2rem);
      color: var(--text-mid);
      margin-bottom: 2.8rem;
      opacity: 0;
      animation: fadeUp .9s ease 1s forwards;
    }

    .hero-date-block {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      opacity: 0;
      animation: fadeUp .9s ease 1.2s forwards;
    }

    .hero-date-block .divider {
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--rose), transparent);
    }

    .hero-date-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(.9rem, 2vw, 1.05rem);
      letter-spacing: .18em;
      color: var(--dusty);
      text-transform: uppercase;
    }

    .scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      opacity: 0;
      animation: fadeIn 1s ease 2s forwards;
    }

    .scroll-hint span {
      font-size: .6rem;
      letter-spacing: .2em;
      color: var(--text-light);
      text-transform: uppercase;
    }

    .scroll-arrow {
      width: 18px;
      height: 18px;
      border-right: 1.5px solid var(--rose);
      border-bottom: 1.5px solid var(--rose);
      transform: rotate(45deg);
      animation: bounce 1.6s ease-in-out infinite;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: rotate(45deg) translateY(0)
      }

      50% {
        transform: rotate(45deg) translateY(5px)
      }
    }

    /* ════════════════════════════
       NAV
    ════════════════════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      justify-content: center;
      padding: 1rem 2rem;
      background: rgba(255, 250, 249, .85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(232, 137, 154, .12);
      transition: all .3s ease;
    }

    .hero {
      padding-top: 80px;
    }

    nav a.active {
      color: var(--dusty);
    }

    nav a.active::after {
      transform: scaleX(1);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: clamp(1rem, 3vw, 2.5rem);
      flex-wrap: wrap;
      justify-content: center;
    }

    nav a {
      font-family: 'Tenor Sans', sans-serif;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--text-mid);
      transition: color .2s;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -3px;
      height: 1px;
      background: var(--rose);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }

    nav a:hover {
      color: var(--dusty);
    }

    nav a:hover::after {
      transform: scaleX(1);
    }

    /* ════════════════════════════
       SECTION BASE
    ════════════════════════════ */
    section {
      padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      display: block;
      font-size: .65rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: .8rem;
    }

    h2 {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(2.5rem, 8vw, 5rem);
      color: var(--dusty);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .section-rule {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, var(--rose), var(--blush));
      margin: 1.2rem 0;
    }

    /* ════════════════════════════
       ABOUT / MESSAGE
    ════════════════════════════ */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 6vw, 5rem);
      align-items: center;
    }

    @media (max-width: 700px) {
      #about {
        grid-template-columns: 1fr;}
        .hero { padding-top: 120px; }
    }

    .about-photo {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 4px 40% 4px 40% / 4px 4px 40% 40%;
      background: linear-gradient(160deg, var(--petal), var(--blush), var(--rose));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .7rem;
      box-shadow: 12px 18px 50px rgba(212, 104, 122, .18);
      min-height: 320px;
      position: relative;
      overflow: hidden;
    }

    .about-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(255, 255, 255, .1), transparent);
    }

    .about-photo .ph-icon {
      font-size: 2.8rem;
      opacity: .45;
      position: relative;
      z-index: 1;
    }

    .about-photo .ph-label {
      font-size: .65rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: white;
      opacity: .7;
      position: relative;
      z-index: 1;
    }

    .about-text p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2vw, 1.15rem);
      line-height: 1.85;
      color: var(--text-mid);
      margin-bottom: 1rem;
    }

    .about-text blockquote {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      color: var(--dusty);
      border-left: 3px solid var(--blush);
      padding-left: 1.2rem;
      margin: 1.5rem 0;
    }

    /* ════════════════════════════
       GALLERY
    ════════════════════════════ */
    #gallery {
      background: linear-gradient(160deg, #fff6f8, #ffe8ef);
      max-width: 100%;
      padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 6vw, 5rem);
    }

    #gallery>.inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 14px;
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-item.tall {
        grid-row: span 1;
      }
    }

    .gallery-item {
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--petal), var(--blush));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease;
      position: relative;
    }

    .gallery-item:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 40px rgba(212, 104, 122, .22);
    }

    .gallery-item.tall {
      aspect-ratio: auto;
      grid-row: span 2;
    }

    .gallery-item .ph-icon {
      font-size: 2rem;
      opacity: .5;
    }

    .gallery-item .ph-label {
      font-size: .6rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text-mid);
      opacity: .7;
    }

    .gallery-item .ph-num {
      position: absolute;
      top: .6rem;
      right: .8rem;
      font-size: .55rem;
      letter-spacing: .1em;
      color: var(--text-light);
      font-family: 'Tenor Sans', sans-serif;
    }

    .gallery-item:nth-child(odd) {
      background: linear-gradient(160deg, #fde8ed, #f9c6d0);
    }

    .gallery-item:nth-child(3n) {
      background: linear-gradient(160deg, #f9c6d0, #e8899a44, #fde8ed);
    }

    /* ════════════════════════════
       DETAILS
    ════════════════════════════ */
    #details {
      text-align: center;
    }

    .details-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .details-card {
      background: var(--white);
      border: 1px solid rgba(232, 137, 154, .2);
      border-radius: 12px;
      padding: 2rem 1.5rem;
      box-shadow: 0 4px 24px rgba(212, 104, 122, .07);
      transition: transform .3s ease, box-shadow .3s ease;
      position: relative;
      overflow: hidden;
    }

    .details-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blush), var(--rose), var(--blush));
    }

    .details-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 50px rgba(212, 104, 122, .15);
    }

    .card-icon {
      font-size: 2rem;
      margin-bottom: .8rem;
      display: block;
    }

    .card-title {
      font-family: 'Tenor Sans', sans-serif;
      font-size: .65rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: .6rem;
    }

    .card-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.35rem);
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.4;
    }

    .card-sub {
      font-size: .8rem;
      color: var(--text-light);
      margin-top: .4rem;
      line-height: 1.5;
    }

    /* ════════════════════════════
       PROGRAM / SCHEDULE
    ════════════════════════════ */
    #program {
      background: linear-gradient(160deg, #fff0f3, #fde8ed 60%, #fff6f8);
      max-width: 100%;
      padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 6vw, 5rem);
    }

    #program>.inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .timeline {
      margin-top: 3rem;
      position: relative;
      padding-left: 2rem;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--blush), var(--rose), var(--blush), transparent);
    }

    .tl-item {
      position: relative;
      padding: 0 0 2.5rem 1.8rem;
      opacity: 0;
      transform: translateX(-20px);
      animation: slideIn .6s ease forwards;
    }

    .tl-item:nth-child(1) {
      animation-delay: .1s
    }

    .tl-item:nth-child(2) {
      animation-delay: .25s
    }

    .tl-item:nth-child(3) {
      animation-delay: .4s
    }

    .tl-item:nth-child(4) {
      animation-delay: .55s
    }

    .tl-item:nth-child(5) {
      animation-delay: .7s
    }

    .tl-item:nth-child(6) {
      animation-delay: .85s
    }

    @keyframes slideIn {
      to {
        opacity: 1;
        transform: none;
      }
    }

    .tl-dot {
      position: absolute;
      left: -1.95rem;
      top: .25rem;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--rose);
      box-shadow: 0 0 0 4px rgba(232, 137, 154, .15);
    }

    .tl-time {
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: .25rem;
    }

    .tl-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2.2vw, 1.2rem);
      font-weight: 500;
      color: var(--text-dark);
    }

    .tl-desc {
      font-size: .83rem;
      color: var(--text-light);
      margin-top: .2rem;
      line-height: 1.5;
    }

    /* ════════════════════════════
       18 ROSES / CANDLES
    ════════════════════════════ */
    #roses {
      text-align: center;
    }

    .roses-intro {
      max-width: 600px;
      margin: 0 auto 3rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2vw, 1.1rem);
      color: var(--text-mid);
      line-height: 1.8;
    }

    .roses-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .tab-btn {
      padding: .6rem 1.8rem;
      border-radius: 99px;
      border: 1.5px solid var(--rose);
      background: transparent;
      font-family: 'Tenor Sans', sans-serif;
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--dusty);
      cursor: pointer;
      transition: all .25s ease;
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: var(--rose);
      color: var(--white);
    }

    .roses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(160px, 42vw), 1fr));
      gap: 1rem;
    }

    .rose-card {
      background: var(--white);
      border: 1px solid rgba(232, 137, 154, .18);
      border-radius: 12px;
      padding: 1.2rem 1rem;
      text-align: center;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .rose-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(212, 104, 122, .12);
    }

    .rose-num {
      font-family: 'Great Vibes', cursive;
      font-size: 2.2rem;
      color: var(--rose);
      display: block;
      line-height: 1;
    }

    .rose-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: .95rem;
      font-weight: 500;
      color: var(--text-dark);
      margin: .4rem 0 .2rem;
    }

    .rose-rel {
      font-size: .7rem;
      color: var(--text-light);
      letter-spacing: .08em;
    }

    .rose-icon {
      font-size: 1.2rem;
      display: block;
      margin-bottom: .4rem;
    }

    /* ════════════════════════════
       RSVP
    ════════════════════════════ */
    #rsvp {
      background: linear-gradient(160deg, var(--blush) 0%, var(--rose) 100%);
      max-width: 100%;
      padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 6vw, 5rem);
    }

    #rsvp>.inner {
      max-width: 580px;
      margin: 0 auto;
      text-align: center;
    }

    #rsvp h2,
    #rsvp .section-label {
      color: var(--white);
    }

    #rsvp .section-rule {
      background: rgba(255, 255, 255, .4);
    }

    #rsvp p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2vw, 1.1rem);
      color: rgba(255, 255, 255, .88);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .rsvp-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .rsvp-form input,
    .rsvp-form select,
    .rsvp-form textarea {
      width: 100%;
      padding: .9rem 1.2rem;
      border-radius: 8px;
      border: 1.5px solid rgba(255, 255, 255, .4);
      background: rgba(255, 255, 255, .2);
      color: var(--white);
      font-family: 'Tenor Sans', sans-serif;
      font-size: .85rem;
      outline: none;
      backdrop-filter: blur(6px);
      transition: border-color .25s ease, background .25s ease;
    }

    .rsvp-form input::placeholder,
    .rsvp-form textarea::placeholder {
      color: rgba(255, 255, 255, .65);
    }

    .rsvp-form select option {
      color: var(--text-dark);
      background: white;
    }

    .rsvp-form input:focus,
    .rsvp-form select:focus,
    .rsvp-form textarea:focus {
      border-color: rgba(255, 255, 255, .85);
      background: rgba(255, 255, 255, .3);
    }

    .rsvp-form textarea {
      resize: vertical;
      min-height: 90px;
    }

    .btn-rsvp {
      margin-top: .5rem;
      padding: 1rem 2.5rem;
      border-radius: 99px;
      border: 2px solid var(--white);
      background: var(--white);
      color: var(--dusty);
      font-family: 'Tenor Sans', sans-serif;
      font-size: .75rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s ease;
      align-self: center;
    }

    .btn-rsvp:hover {
      background: transparent;
      color: var(--white);
    }

    /* ════════════════════════════
       FOOTER
    ════════════════════════════ */
    footer {
      text-align: center;
      padding: 3rem 2rem;
      background: var(--cream);
      border-top: 1px solid rgba(232, 137, 154, .12);
    }

    footer .footer-script {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(1.8rem, 5vw, 3rem);
      color: var(--rose);
    }

    footer .footer-tagline {
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-top: .5rem;
    }

    footer .footer-hearts {
      margin-top: 1.5rem;
      font-size: .85rem;
      color: var(--blush);
      letter-spacing: .5em;
    }

    /* ════════════════════════════
       ANIMATIONS
    ════════════════════════════ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* Intersection observer fade-ins */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ════════════════════════════
       COUNTDOWN
    ════════════════════════════ */
    .countdown {
      display: flex;
      gap: clamp(1rem, 3vw, 2rem);
      justify-content: center;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }

    .count-box {
      background: var(--white);
      border: 1px solid rgba(232, 137, 154, .2);
      border-radius: 12px;
      padding: 1rem 1.2rem;
      min-width: 72px;
      box-shadow: 0 4px 20px rgba(212, 104, 122, .08);
      text-align: center;
    }

    .count-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 300;
      color: var(--dusty);
      display: block;
      line-height: 1;
    }

    .count-label {
      font-size: .55rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-top: .3rem;
    }

    /* ════════════════════════════
       DRESS CODE STRIP
    ════════════════════════════ */
    .dress-strip {
      background: var(--white);
      border-top: 1px solid rgba(232, 137, 154, .12);
      border-bottom: 1px solid rgba(232, 137, 154, .12);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .dress-label {
      font-size: .65rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--rose);
    }

    .dress-swatch {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid rgba(232, 137, 154, .25);
      cursor: pointer;
      transition: transform .2s;
      position: relative;
    }

    .dress-swatch:hover {
      transform: scale(1.2);
    }

    .dress-swatch[title]::after {
      content: attr(title);
      position: absolute;
      bottom: 110%;
      left: 50%;
      transform: translateX(-50%);
      background: var(--text-dark);
      color: white;
      font-size: .55rem;
      padding: .2rem .5rem;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }

    .dress-swatch:hover::after {
      opacity: 1;
    }

    .dress-note {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .9rem;
      color: var(--text-mid);
    }