
      :root {
        --dusty-olive: #748a6e;
        --honeydew: #dbe6d9;
        --pine-teal: #324d3e;
        --ash-grey: #bed1bd;
        --muted-teal: #8ea68c;
        --white: #ffffff;
        --soft-bg: #eff5ed;
        --deep-pine: #263a2e;
        --text-muted: #6b8270;
        --soft-line: rgba(50, 77, 62, 0.1);
        --cream: #f7f5f0;
        --warm-white: #faf9f6;
        --sage-light: #e8efe6;
        --gradient-primary: linear-gradient(135deg, #748a6e, #8ea68c, #bed1bd);
        --gradient-deep: linear-gradient(135deg, #324d3e, #2a3d32, #263a2e);
        --shadow-soft: 0 8px 32px rgba(50, 77, 62, 0.08);
        --shadow-medium: 0 12px 40px rgba(50, 77, 62, 0.12);
        --shadow-large: 0 20px 60px rgba(50, 77, 62, 0.15);
        --shadow-editorial:
          0 1px 3px rgba(50, 77, 62, 0.04), 0 10px 40px rgba(50, 77, 62, 0.08);
        --glow: rgba(116, 138, 110, 0.4);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Inter", "Poppins", "Noto Serif Ethiopic", sans-serif;
        background: var(--honeydew);
        color: var(--pine-teal);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }

      /* ===== ANIMATIONS ===== */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-15px);
        }
      }
      @keyframes particleRise {
        0% {
          transform: translateY(100vh) rotate(0deg);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translateY(-100px) rotate(360deg);
          opacity: 0;
        }
      }
      @keyframes petalFall {
        0% {
          transform: translateY(-50px) rotate(0deg) translateX(0);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        100% {
          transform: translateY(100vh) rotate(360deg) translateX(100px);
          opacity: 0;
        }
      }
      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.6;
        }
        50% {
          transform: scale(1.3);
          opacity: 1;
        }
      }
      @keyframes numFlip {
        0% {
          transform: translateY(-8px);
          opacity: 0;
          filter: blur(2px);
        }
        100% {
          transform: translateY(0);
          opacity: 1;
          filter: blur(0);
        }
      }
      @keyframes heartbeat {
        0%,
        100% {
          transform: scale(1);
        }
        25% {
          transform: scale(1.1);
        }
        50% {
          transform: scale(1);
        }
      }
      @keyframes dotPulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.3);
          opacity: 0.5;
        }
      }
      @keyframes gentleFloat {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        33% {
          transform: translateY(-8px) rotate(1deg);
        }
        66% {
          transform: translateY(4px) rotate(-1deg);
        }
      }
      @keyframes gentleSway {
        0%,
        100% {
          transform: rotate(0deg);
        }
        25% {
          transform: rotate(1.5deg);
        }
        75% {
          transform: rotate(-1.5deg);
        }
      }

      .fade-in-up {
        animation: fadeInUp 1s ease forwards;
        opacity: 0;
      }
      .delay-1 {
        animation-delay: 0.3s;
      }
      .delay-2 {
        animation-delay: 0.6s;
      }
      .delay-3 {
        animation-delay: 0.9s;
      }
      .delay-4 {
        animation-delay: 1.2s;
      }

      /* ===== OPENING SCREEN ===== */
      #opening-screen {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(
          135deg,
          var(--pine-teal) 0%,
          #2a3d32 30%,
          var(--dusty-olive) 60%,
          #263426 100%
        );
        overflow: hidden;
        transition:
          opacity 0.8s ease,
          visibility 0.8s;
      }
      #opening-screen.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }
      .particles-container,
      .petals-container {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 1;
      }
      .particle {
        position: absolute;
        bottom: -10px;
        background: radial-gradient(circle, var(--dusty-olive), transparent);
        border-radius: 50%;
        animation: particleRise linear infinite;
      }
      .petal {
        position: absolute;
        top: -50px;
        animation: petalFall linear infinite;
      }
      .opening-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 2rem;
        max-width: 600px;
      }
      .opening-ornament {
        color: var(--ash-grey);
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
        margin: 1rem 0;
        animation: pulse 3s ease infinite;
      }
      .opening-subtitle {
        font-family: "Inter", sans-serif;
        color: var(--honeydew);
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 0.4rem;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
      }
      .opening-date {
        font-family: "Inter", sans-serif;
        color: var(--ash-grey);
        font-size: 1.1rem;
        font-weight: 300;
        letter-spacing: 0.2rem;
        margin-top: 1.5rem;
      }
      .opening-date-am {
        font-family: "Noto Serif Ethiopic", serif;
        color: var(--honeydew);
        font-size: 1rem;
        opacity: 0.8;
        margin-top: 0.5rem;
      }
      .slide-to-open-container {
        position: relative;
        margin-top: 2.5rem;
        padding: 0 1rem;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }
      .slide-track {
        position: relative;
        width: 100%;
        height: 70px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(190, 209, 189, 0.3);
        border-radius: 50px;
        overflow: hidden;
        backdrop-filter: blur(10px);
      }
      .slide-fill {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0%;
        background: var(--gradient-primary);
        border-radius: 50px;
        transition: width 0.1s ease;
        pointer-events: none;
      }
      .slide-text {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-family: "Noto Serif Ethiopic", serif;
        color: var(--honeydew);
        font-size: 1rem;
        font-weight: 600;
        pointer-events: none;
        z-index: 1;
        transition: opacity 0.3s ease;
        text-align: center;
        width: 100%;
        padding: 0 80px;
      }
      .slide-handle {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border: 3px solid var(--white);
        border-radius: 50%;
        cursor: grab;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.1s ease;
        z-index: 2;
        touch-action: none;
        user-select: none;
      }
      .slide-handle:active {
        cursor: grabbing;
        transform: translateY(-50%) scale(1.05);
      }
      .slide-car {
        position: absolute;
        left: -35px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        transition: left 0.1s ease;
        pointer-events: none;
      }

      #main-content {
        display: none;
      }
      #main-content.active {
        display: block;
      }

      /* ===== SUBTLE SCROLL HINT ===== */
      .scroll-hint {
        position: relative;
        z-index: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        margin: 0 auto calc(1rem + env(safe-area-inset-bottom));
        opacity: 0;
        pointer-events: none;
        user-select: none;
        animation:
          hintIn 1s ease 1.1s forwards,
          hintBreathe 3.6s ease 2.1s infinite;
      }
      .scroll-hint-mouse {
        width: 22px;
        height: 34px;
        border: 1.5px solid rgba(190, 209, 189, 0.5);
        border-radius: 12px;
        display: flex;
        justify-content: center;
        padding-top: 5px;
      }
      .scroll-hint-wheel {
        width: 3px;
        height: 7px;
        border-radius: 3px;
        background: var(--ash-grey);
        animation: hintWheel 1.8s ease infinite;
      }
      .scroll-hint-label {
        font-family: "Inter", sans-serif;
        font-size: 0.58rem;
        font-weight: 400;
        letter-spacing: 0.32rem;
        text-transform: uppercase;
        color: rgba(190, 209, 189, 0.7);
        padding-left: 0.32rem;
        text-shadow: 0 1px 4px rgba(38, 58, 46, 0.8);
      }
      @keyframes hintIn {
        to {
          opacity: 0.75;
        }
      }
      @keyframes hintBreathe {
        0%,
        100% {
          opacity: 0.45;
          transform: translateY(0);
        }
        50% {
          opacity: 0.8;
          transform: translateY(3px);
        }
      }
      @keyframes hintWheel {
        0% {
          transform: translateY(0);
          opacity: 1;
        }
        70% {
          transform: translateY(9px);
          opacity: 0;
        }
        100% {
          transform: translateY(0);
          opacity: 0;
        }
      }
      @media (max-height: 480px) {
        .scroll-hint {
          display: none;
        }
      }

      /* ===== NEW HERO (from updated version) ===== */
      .hero {
        position: relative;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url("/IMG_1137.JPG");
        background-size: cover;
        background-position: center 22%;
        background-repeat: no-repeat;
        z-index: 0;
      }
      .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
          180deg,
          rgba(50, 77, 62, 0.28) 0%,
          rgba(50, 77, 62, 0.18) 30%,
          rgba(38, 58, 46, 0.55) 55%,
          rgba(38, 58, 46, 0.82) 75%,
          rgba(38, 58, 46, 0.97) 100%
        );
      }
      .hero-grain {
        position: absolute;
        inset: 0;
        z-index: 2;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
        pointer-events: none;
      }
      .hero-content {
        position: relative;
        z-index: 5;
        text-align: center;
        padding: 2rem 1.5rem 1.1rem;
        max-width: 680px;
        width: 100%;
      }
      .hero-content::before {
        content: "";
        position: absolute;
        inset: -12% -15% -18%;
        background: radial-gradient(
          ellipse 95% 75% at 50% 100%,
          rgba(38, 58, 46, 0.62) 0%,
          rgba(38, 58, 46, 0.28) 45%,
          rgba(38, 58, 46, 0) 72%
        );
        z-index: -1;
        pointer-events: none;
      }
      .hero-content > * {
        position: relative;
        z-index: 1;
      }
      .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
        background: rgba(38, 58, 46, 0.45);
        border: 1px solid rgba(190, 209, 189, 0.22);
        border-radius: 9999px;
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 20px rgba(38, 58, 46, 0.25);
      }
      .hero-tag-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--ash-grey);
        animation: dotPulse 2s ease infinite;
      }
      .hero-tag-text {
        font-family: "Noto Serif Ethiopic", sans-serif;
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.2rem;
        color: var(--honeydew);
        text-shadow: 0 1px 6px rgba(38, 58, 46, 0.9);
      }
      .hero-invite-text {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: clamp(0.95rem, 2.5vw, 1.2rem);
        font-weight: 400;
        color: var(--honeydew);
        line-height: 1.7;
        margin-bottom: 0.5rem;
        text-shadow:
          0 1px 4px rgba(38, 58, 46, 0.9),
          0 2px 16px rgba(38, 58, 46, 0.6);
      }
      .hero-name {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: clamp(2.2rem, 8vw, 4.5rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.15;
        margin: 0.8rem 0;
        text-shadow:
          0 2px 8px rgba(38, 58, 46, 0.9),
          0 0 80px var(--glow),
          0 4px 30px rgba(0, 0, 0, 0.25);
        letter-spacing: 0.02em;
      }
      .hero-name-deco {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        margin: 0.8rem 0 1.2rem;
      }
      .hero-name-deco-line {
        width: 50px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(190, 209, 189, 0.5),
          transparent
        );
      }
      .hero-name-deco-icon {
        color: var(--ash-grey);
        font-size: 0.6rem;
        opacity: 0.6;
        animation: gentleSway 5s ease infinite;
      }
      .hero-sub-text {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        font-weight: 400;
        color: var(--honeydew);
        line-height: 1.7;
        margin-bottom: 2rem;
        text-shadow:
          0 1px 4px rgba(38, 58, 46, 0.9),
          0 2px 16px rgba(38, 58, 46, 0.6);
      }
      .hero-info-strip {
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.8rem 1.5rem;
        background: rgba(38, 58, 46, 0.5);
        border: 1px solid rgba(190, 209, 189, 0.2);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        box-shadow: 0 6px 24px rgba(38, 58, 46, 0.3);
      }
      .hero-info-item {
        font-family: "Inter", sans-serif;
        font-size: 0.75rem;
        font-weight: 400;
        color: var(--honeydew);
        letter-spacing: 0.08rem;
        text-shadow: 0 1px 5px rgba(38, 58, 46, 0.85);
      }
      .hero-info-item.amharic {
        font-family: "Noto Serif Ethiopic", serif;
        font-weight: 500;
        color: var(--honeydew);
      }
      .hero-info-dot {
        width: 3px;
        height: 3px;
        background: rgba(190, 209, 189, 0.4);
        border-radius: 50%;
      }

      /* ===== SECTION HEADERS ===== */
      .section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-family: "Inter", sans-serif;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.32rem;
        text-transform: uppercase;
        color: var(--muted-teal);
        margin-bottom: 1.2rem;
      }
      .section-eyebrow-icon {
        font-size: 0.95rem;
        opacity: 0.8;
      }
      .editorial-heading {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.4rem, 5vw, 3.6rem);
        font-weight: 500;
        color: var(--pine-teal);
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 0.6rem;
      }
      .editorial-heading em {
        font-style: italic;
        color: var(--dusty-olive);
        font-weight: 400;
      }
      .editorial-sub {
        font-family: "Inter", sans-serif;
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.6;
      }
      .editorial-divider-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        margin: 1.2rem 0 0;
      }
      .editorial-divider-row .line {
        width: 50px;
        height: 1px;
        background: var(--dusty-olive);
        opacity: 0.35;
      }
      .editorial-divider-row .heart {
        color: var(--dusty-olive);
        font-size: 0.85rem;
        opacity: 0.6;
      }

      .section-title-am {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        color: var(--pine-teal);
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease;
      }
      .section-title-am.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .section-subtitle {
        font-family: "Inter", sans-serif;
        font-size: 0.85rem;
        font-weight: 300;
        color: var(--muted-teal);
        letter-spacing: 0.3rem;
        text-transform: uppercase;
        margin-bottom: 1rem;
      }

      /* ===========================================
         CALENDAR/COUNTDOWN
      =========================================== */
      .calendar-section {
        background: var(--warm-white);
        padding: 7rem 1.5rem;
        position: relative;
        overflow: hidden;
      }
      .calendar-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 500px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--dusty-olive),
          transparent
        );
        opacity: 0.2;
      }

      .calendar-inner {
        max-width: 1180px;
        margin: 0 auto;
      }
      .calendar-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .calendar-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.8rem;
        align-items: stretch;
      }
      @media (min-width: 900px) {
        .calendar-grid {
          grid-template-columns: 1fr 1fr;
          gap: 2.2rem;
        }
      }

      /* Countdown Card */
      .countdown-card {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        min-height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 40px rgba(50, 77, 62, 0.18);
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .countdown-card.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .countdown-card-bg {
        position: absolute;
        inset: 0;
        background-image: url("/IMG_1138.JPG");
        background-size: cover;
        background-position: center 30%;
        z-index: 0;
        transition: transform 8s ease;
      }
      .countdown-card:hover .countdown-card-bg {
        transform: scale(1.05);
      }

      .countdown-card-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
          135deg,
          rgba(38, 58, 46, 0.55) 0%,
          rgba(50, 77, 62, 0.5) 50%,
          rgba(42, 61, 50, 0.65) 100%
        );
      }

      .countdown-card-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 2.5rem 1.5rem;
        width: 100%;
      }

      .countdown-eyebrow {
        font-family: "Inter", sans-serif;
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.32rem;
        text-transform: uppercase;
        color: var(--honeydew);
        opacity: 0.85;
        margin-bottom: 1rem;
      }

      .countdown-couple-name {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-weight: 500;
        font-size: clamp(1.7rem, 4vw, 2.4rem);
        color: var(--white);
        letter-spacing: -0.01em;
        margin-bottom: 0.3rem;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
      }
      .countdown-couple-name-am {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        color: rgba(219, 230, 217, 0.9);
        margin-bottom: 2rem;
        font-weight: 500;
      }

      .countdown-numbers-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 1.5rem;
      }
      .countdown-num-cell {
        text-align: center;
        padding: 0 0.3rem;
        position: relative;
      }
      .countdown-num {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.2rem, 5.5vw, 3rem);
        font-weight: 500;
        line-height: 1;
        color: var(--white);
        font-variant-numeric: tabular-nums;
        letter-spacing: -0.02em;
        display: block;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
      }
      .countdown-num-label {
        font-family: "Inter", sans-serif;
        font-size: 0.62rem;
        font-weight: 500;
        letter-spacing: 0.28rem;
        text-transform: uppercase;
        color: rgba(219, 230, 217, 0.85);
        margin-top: 0.6rem;
      }

      /* Calendar Card */
      .calendar-card {
        background: var(--cream);
        border-radius: 24px;
        padding: 2rem 2rem 1.5rem;
        border: 1px solid rgba(50, 77, 62, 0.06);
        box-shadow: 0 4px 20px rgba(50, 77, 62, 0.06);
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
        display: flex;
        flex-direction: column;
      }
      .calendar-card.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .calendar-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1.3rem;
      }
      .calendar-month-label {
        font-family: "Inter", sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.35rem;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
      }
      .calendar-day-chip {
        display: inline-flex;
        align-items: center;
        padding: 0.4rem 0.95rem;
        background: var(--white);
        border: 1px solid rgba(50, 77, 62, 0.1);
        border-radius: 999px;
        font-family: "Noto Serif Ethiopic", "Inter", sans-serif;
        font-size: 0.72rem;
        font-weight: 500;
        color: var(--pine-teal);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
      }

      .cal-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0.15rem;
        flex: 1;
      }
      .cal-weekday {
        font-family: "Inter", sans-serif;
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 0.12rem;
        color: var(--text-muted);
        text-align: center;
        padding: 0.5rem 0 0.7rem;
        text-transform: uppercase;
      }

      .cal-cell {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Inter", sans-serif;
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--pine-teal);
        position: relative;
        border-radius: 50%;
        font-variant-numeric: tabular-nums;
        transition: all 0.25s ease;
        cursor: default;
      }
      .cal-cell.muted {
        color: rgba(50, 77, 62, 0.2);
      }
      .cal-cell:not(.is-wedding):not(.muted):hover {
        background: var(--white);
        color: var(--pine-teal);
        transform: scale(1.08);
        box-shadow: 0 2px 8px rgba(50, 77, 62, 0.06);
      }

      .cal-cell.is-wedding {
        color: var(--white);
        font-weight: 700;
        z-index: 2;
        position: relative;
      }
      .cal-cell.is-wedding .heart-bg {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: -1;
        animation: heartbeat 2.5s ease infinite;
        filter: drop-shadow(0 4px 10px rgba(116, 138, 110, 0.4));
      }
      .cal-cell.is-wedding .heart-bg svg {
        width: 85%;
        height: 85%;
      }
      .cal-cell.is-wedding span {
        position: relative;
        z-index: 1;
      }

      .calendar-card-footer {
        margin-top: 1.4rem;
        padding-top: 1.1rem;
        border-top: 1px solid rgba(50, 77, 62, 0.08);
        text-align: center;
      }
      .calendar-footer-text {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: 0.82rem;
        color: var(--text-muted);
        letter-spacing: 0.02em;
      }
      .calendar-footer-text strong {
        color: var(--pine-teal);
        font-weight: 600;
      }

      /* ===== QUOTES ===== */
      .quotes-section {
        background: var(--white);
        overflow: hidden;
      }
      .section-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 6rem 1.5rem;
        text-align: center;
      }
      .quote-container {
        max-width: 800px;
        margin: 3rem auto;
        padding: 0 1.5rem;
      }
      .quote-card {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
        text-align: center;
        padding: 3rem 2rem;
        position: relative;
      }
      .quote-card.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .quote-verse-am {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        color: var(--dusty-olive);
        line-height: 2;
        margin-bottom: 2rem;
      }
      .quote-reference {
        font-family: "Inter", sans-serif;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--muted-teal);
      }
      .quote-reference-am {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: 0.9rem;
        display: block;
        margin-top: 0.5rem;
        opacity: 0.8;
      }

      /* ===== SCHEDULE ===== */
      .schedule-editorial {
        background: var(--sage-light);
        padding: 7rem 1.5rem;
        position: relative;
      }
      .schedule-editorial::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 500px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--dusty-olive),
          transparent
        );
        opacity: 0.2;
      }
      .schedule-layout {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      @media (min-width: 900px) {
        .schedule-layout {
          grid-template-columns: 320px 1fr;
          gap: 4rem;
          align-items: start;
        }
      }
      .schedule-side {
        position: sticky;
        top: 2rem;
      }
      @media (max-width: 899px) {
        .schedule-side {
          position: static;
        }
      }

      .timeline {
        position: relative;
        padding-left: 70px;
      }
      .timeline::before {
        content: "";
        position: absolute;
        left: 27px;
        top: 18px;
        bottom: 18px;
        width: 2px;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(116, 138, 110, 0.25) 8%,
          rgba(116, 138, 110, 0.25) 92%,
          transparent
        );
      }
      .timeline-item {
        position: relative;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
      }
      .timeline-item.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .timeline-item:last-child {
        margin-bottom: 0;
      }

      .timeline-marker {
        position: absolute;
        left: -70px;
        top: 8px;
        width: 56px;
        height: 56px;
        z-index: 2;
      }
      .timeline-marker-ring {
        position: absolute;
        inset: 0;
        border: 1.5px dashed rgba(116, 138, 110, 0.3);
        border-radius: 50%;
        transition: all 0.4s ease;
      }
      .timeline-marker-inner {
        position: absolute;
        inset: 6px;
        background: var(--white);
        border: 1px solid var(--soft-line);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--pine-teal);
        transition: all 0.4s ease;
        box-shadow: var(--shadow-soft);
      }
      .timeline-item:hover .timeline-marker-ring {
        transform: rotate(45deg);
        border-color: var(--dusty-olive);
        border-style: solid;
      }
      .timeline-item:hover .timeline-marker-inner {
        background: var(--gradient-primary);
        color: var(--white);
        border-color: transparent;
      }
      .timeline-content {
        background: var(--white);
        border: 1px solid var(--soft-line);
        border-radius: 14px;
        padding: 1.3rem 1.6rem;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        gap: 1.2rem;
        min-height: 72px;
      }
      .timeline-item:hover .timeline-content {
        border-color: var(--dusty-olive);
        transform: translateX(6px);
        box-shadow: var(--shadow-medium);
      }
      .timeline-time-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        flex-shrink: 0;
        min-width: 80px;
      }
      .time-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.35rem 0.75rem;
        background: var(--soft-bg);
        border: 1px solid var(--soft-line);
        border-radius: 999px;
        font-family: "Inter", sans-serif;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.08rem;
        color: var(--pine-teal);
        font-variant-numeric: tabular-nums;
      }
      .time-badge.am-text {
        font-family: "Noto Serif Ethiopic", "Inter", sans-serif;
        background: rgba(116, 138, 110, 0.12);
      }
      .time-sub {
        font-family: "Inter", sans-serif;
        font-size: 0.68rem;
        color: var(--text-muted);
        font-variant-numeric: tabular-nums;
      }
      .timeline-titles-col {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        flex: 1;
      }
      .timeline-title {
        font-family: "Playfair Display", serif;
        font-size: 1.15rem;
        font-weight: 500;
        color: var(--pine-teal);
        line-height: 1.3;
      }
      .timeline-title-am {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: 0.88rem;
        color: var(--dusty-olive);
        font-weight: 500;
      }
      .timeline-status {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-family: "Inter", sans-serif;
        font-size: 0.6rem;
        letter-spacing: 0.18rem;
        text-transform: uppercase;
        color: var(--muted-teal);
        font-weight: 500;
        flex-shrink: 0;
      }
      .timeline-status-dot {
        width: 6px;
        height: 6px;
        background: var(--dusty-olive);
        border-radius: 50%;
        animation: dotPulse 2s ease infinite;
      }

      /* ===== MAP SECTION ===== */
      .map-section {
        background: var(--honeydew);
        padding: 7rem 1.5rem;
        position: relative;
      }
      .map-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 500px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--dusty-olive),
          transparent
        );
        opacity: 0.2;
      }
      .map-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .map-header-block {
        text-align: center;
        margin-bottom: 3.5rem;
      }

      .map-card {
        background: var(--white);
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid var(--soft-line);
        box-shadow: var(--shadow-editorial);
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .map-card.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .map-card-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
      }
      @media (min-width: 768px) {
        .map-card-top {
          grid-template-columns: 1fr 1fr;
        }
      }

      .map-embed-wrap {
        position: relative;
        min-height: 400px;
        background: var(--soft-bg);
        overflow: hidden;
      }
      .map-embed-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
        filter: saturate(0.85) contrast(1.05);
        transition: filter 0.4s ease;
      }
      .map-card:hover .map-embed-wrap iframe {
        filter: saturate(1) contrast(1);
      }
      .map-embed-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem 0.9rem;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 999px;
        font-family: "Inter", sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--pine-teal);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(8px);
      }
      .map-embed-badge::before {
        content: "";
        width: 8px;
        height: 8px;
        background: var(--dusty-olive);
        border-radius: 50%;
        animation: dotPulse 2s ease infinite;
      }

      .map-venue-info {
        padding: 2.5rem 2.2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .map-venue-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: "Inter", sans-serif;
        font-size: 0.68rem;
        letter-spacing: 0.28rem;
        text-transform: uppercase;
        color: var(--muted-teal);
        font-weight: 600;
        margin-bottom: 1rem;
      }
      .map-venue-tag-dot {
        width: 6px;
        height: 6px;
        background: var(--dusty-olive);
        border-radius: 50%;
      }
      .map-venue-name {
        font-family: "Playfair Display", serif;
        font-size: 1.6rem;
        color: var(--pine-teal);
        font-weight: 600;
        margin-bottom: 0.3rem;
        line-height: 1.3;
      }
      .map-venue-name-am {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: 1.05rem;
        color: var(--dusty-olive);
        font-weight: 500;
        margin-bottom: 1rem;
      }
      .map-venue-address {
        font-family: "Inter", sans-serif;
        font-size: 0.92rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 0.5rem;
      }
      .map-venue-detail-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: "Inter", sans-serif;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 0.4rem;
      }
      .map-venue-detail-icon {
        font-size: 1rem;
        opacity: 0.7;
      }
      .map-venue-divider {
        height: 1px;
        background: var(--soft-line);
        margin: 1.2rem 0;
      }
      .map-venue-cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 0.5rem;
      }
      .map-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 999px;
        font-family: "Inter", sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
      }
      .map-cta-primary {
        background: var(--gradient-primary);
        color: var(--white);
        border: none;
        box-shadow: 0 4px 16px rgba(116, 138, 110, 0.3);
      }
      .map-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(116, 138, 110, 0.4);
      }
      .map-cta-secondary {
        background: var(--soft-bg);
        color: var(--pine-teal);
        border: 1px solid var(--soft-line);
      }
      .map-cta-secondary:hover {
        background: var(--honeydew);
        border-color: var(--dusty-olive);
        transform: translateY(-2px);
      }
      .map-cta-arrow {
        transition: transform 0.3s ease;
      }
      .map-cta-btn:hover .map-cta-arrow {
        transform: translateX(3px);
      }

      /* ===== WISHES ===== */
      .wishes-section {
        background: var(--soft-bg);
        position: relative;
        overflow: hidden;
      }
      .wishes-form {
        max-width: 600px;
        margin: 2rem auto;
        text-align: left;
      }
      .wishes-form .form-group {
        margin-bottom: 1.5rem;
      }
      .form-group input[type="text"],
      .form-group textarea {
        width: 100%;
        padding: 1rem 1.5rem;
        background: var(--white);
        border: 2px solid rgba(116, 138, 110, 0.2);
        border-radius: 16px;
        font-family: "Inter", "Noto Serif Ethiopic", sans-serif;
        font-size: 1rem;
        color: var(--pine-teal);
        transition: all 0.3s ease;
        outline: none;
      }
      .form-group input:focus,
      .form-group textarea:focus {
        border-color: var(--dusty-olive);
        box-shadow: 0 0 0 4px rgba(116, 138, 110, 0.1);
      }
      .send-wishes-btn {
        width: 100%;
        padding: 1.2rem;
        background: var(--gradient-primary);
        border: none;
        border-radius: 16px;
        color: white;
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-soft);
      }
      .send-wishes-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
      }
      .messages-list {
        max-width: 600px;
        margin: 3rem auto 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .message-card {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        background: var(--white);
        border: 1px solid rgba(116, 138, 110, 0.2);
        border-radius: 20px;
        padding: 1.5rem;
        text-align: left;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
        box-shadow: var(--shadow-soft);
      }
      .message-card.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .message-card:hover {
        transform: translateX(8px);
        box-shadow: var(--shadow-medium);
        border-color: var(--dusty-olive);
      }
      .message-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: "Noto Serif Ethiopic", serif;
        font-size: 1.2rem;
        font-weight: 600;
        flex-shrink: 0;
      }
      .message-content {
        flex: 1;
      }
      .message-name {
        font-family: "Inter", "Noto Serif Ethiopic", sans-serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--pine-teal);
      }
      .message-text {
        font-family: "Inter", "Noto Serif Ethiopic", sans-serif;
        font-size: 0.95rem;
        color: var(--pine-teal);
        line-height: 1.7;
        margin-top: 0.5rem;
      }

      /* ===== FOOTER ===== */
      .wedding-footer {
        position: relative;
        background: linear-gradient(180deg, #2a3d32, var(--pine-teal));
        padding: 5rem 1.5rem 3rem;
        text-align: center;
        overflow: hidden;
      }
      .footer-glow {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: 300px;
        background: radial-gradient(
          ellipse,
          rgba(116, 138, 110, 0.15),
          transparent
        );
        pointer-events: none;
      }
      .footer-content {
        position: relative;
        z-index: 2;
        max-width: 600px;
        margin: 0 auto;
      }
      .footer-title {
        font-family: "Noto Serif Ethiopic", serif;
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        color: var(--honeydew);
        font-weight: 700;
        margin: 1rem 0 0.5rem;
      }
      .footer-subtitle {
        font-family: "Great Vibes", cursive;
        font-size: 1.8rem;
        color: var(--ash-grey);
      }
      .footer-divider {
        color: var(--ash-grey);
        font-size: 1.5rem;
        margin: 2rem 0;
        opacity: 0.5;
      }
      .footer-thanks {
        font-family: "Inter", "Noto Serif Ethiopic", sans-serif;
        color: var(--honeydew);
        font-size: 1.05rem;
        font-weight: 300;
        line-height: 1.8;
        opacity: 0.9;
      }
      .footer-names {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin: 2.5rem 0;
        font-family: "Noto Serif Ethiopic", serif;
        font-size: 1.8rem;
        color: var(--honeydew);
        font-weight: 600;
      }
      .footer-heart {
        color: var(--ash-grey);
        animation: pulse 1.5s ease infinite;
      }
      .footer-copyright {
        font-family: "Inter", sans-serif;
        color: var(--honeydew);
        font-size: 0.85rem;
        font-weight: 300;
        opacity: 0.5;
        margin-top: 3rem;
        line-height: 1.8;
      }

      #opening-screen {
        background: url("/assets/reference-cover.jpg")
          no-repeat center;
        background-size: cover;
      }

      /* ===== MOBILE ===== */
      @media (max-width: 640px) {
        .calendar-section {
          padding: 5rem 1.2rem;
        }
        .countdown-card {
          min-height: 340px;
        }
        .countdown-card-content {
          padding: 2rem 1rem;
        }
        .countdown-num {
          font-size: 1.9rem;
        }
        .countdown-num-label {
          font-size: 0.55rem;
          letter-spacing: 0.22rem;
        }
        .calendar-card {
          padding: 1.5rem 1.3rem 1.2rem;
        }
        .calendar-card-header {
          flex-direction: column;
          gap: 0.8rem;
          align-items: flex-start;
        }
        .cal-cell {
          font-size: 0.8rem;
        }
        .cal-weekday {
          font-size: 0.52rem;
        }
        .schedule-editorial,
        .map-section {
          padding: 5rem 1.2rem;
        }
        .timeline {
          padding-left: 56px;
        }
        .timeline-marker {
          width: 46px;
          height: 46px;
          left: -56px;
        }
        .timeline-marker-inner {
          font-size: 1rem;
        }
        .timeline::before {
          left: 22px;
        }
        .timeline-content {
          padding: 1.1rem 1.2rem;
          flex-direction: column;
          align-items: flex-start;
          gap: 0.6rem;
        }
        .timeline-time-col {
          flex-direction: row;
          gap: 0.5rem;
        }
        .timeline-title {
          font-size: 1.05rem;
        }
        .timeline-title-am {
          font-size: 0.82rem;
        }
        .section-container {
          padding: 4rem 1.2rem;
        }
        .hero-name {
          font-size: clamp(2rem, 9vw, 3rem);
        }
        .hero-content {
          padding: 1.5rem 1.2rem calc(1.1rem + env(safe-area-inset-bottom));
        }
        .hero-info-strip {
          padding: 0.7rem 1rem;
          gap: 0.4rem;
        }
        .hero-info-item {
          font-size: 0.68rem;
        }
        .map-venue-info {
          padding: 1.8rem 1.5rem;
        }
        .map-embed-wrap {
          min-height: 280px;
        }
        .map-venue-name {
          font-size: 1.3rem;
        }
        .map-venue-cta-row {
          flex-direction: column;
        }
        .map-cta-btn {
          justify-content: center;
        }
      }

      /* ===== HERO: desktop uses a landscape crop so it fits wide screens ===== */
      @media (min-width: 768px) {
        .hero-bg {
          background-image: url("/IMG_1137.JPG");
          background-position: center 25%;
        }
      }

      /* ===========================================
         HIDDEN WISHES UNLOCK (password modal)
      =========================================== */
      .cal-cell.is-wedding {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
      }
      .cal-cell.is-wedding:active {
        transform: scale(1.12);
      }

      .wishes-unlock-overlay {
        position: fixed;
        inset: 0;
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        background: rgba(38, 58, 46, 0.45);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
          opacity 0.45s ease,
          visibility 0.45s ease;
      }
      .wishes-unlock-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      .wishes-unlock-modal {
        position: relative;
        width: 100%;
        max-width: 400px;
        background: var(--warm-white);
        border: 1px solid rgba(50, 77, 62, 0.08);
        border-radius: 24px;
        box-shadow: var(--shadow-large);
        padding: 2.6rem 2.2rem 2.2rem;
        text-align: center;
        opacity: 0;
        transform: translateY(28px) scale(0.96);
        transition:
          transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
          opacity 0.4s ease;
      }
      .wishes-unlock-overlay.open .wishes-unlock-modal {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
      .wishes-unlock-modal.shake {
        animation: wishesUnlockShake 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
      }
      @keyframes wishesUnlockShake {
        10%, 90% { transform: translateX(-2px); }
        20%, 80% { transform: translateX(4px); }
        30%, 50%, 70% { transform: translateX(-7px); }
        40%, 60% { transform: translateX(7px); }
      }

      .wishes-unlock-close {
        position: absolute;
        top: 0.9rem;
        right: 0.9rem;
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 50%;
        background: var(--soft-bg);
        color: var(--text-muted);
        font-family: "Inter", sans-serif;
        font-size: 1.15rem;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }
      .wishes-unlock-close:hover {
        background: var(--honeydew);
        color: var(--pine-teal);
        transform: rotate(90deg);
      }

      .wishes-unlock-heart {
        width: 52px;
        height: 52px;
        margin: 0 auto 0.9rem;
        animation: heartbeat 2.5s ease infinite;
        filter: drop-shadow(0 4px 10px rgba(116, 138, 110, 0.35));
      }

      .wishes-unlock-eyebrow {
        font-family: "Inter", sans-serif;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.3rem;
        text-transform: uppercase;
        color: var(--muted-teal);
        margin-bottom: 0.7rem;
      }
      .wishes-unlock-title {
        font-family: "Playfair Display", "Noto Serif Ethiopic", serif;
        font-size: 1.9rem;
        font-weight: 500;
        color: var(--pine-teal);
        letter-spacing: -0.01em;
        margin-bottom: 0.35rem;
      }
      .wishes-unlock-title em {
        font-style: italic;
        color: var(--dusty-olive);
        font-weight: 400;
      }
      .wishes-unlock-sub {
        font-family: "Inter", "Noto Serif Ethiopic", sans-serif;
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-bottom: 1.4rem;
        line-height: 1.6;
      }

      .wishes-unlock-input {
        width: 100%;
        padding: 0.95rem 1.3rem;
        background: var(--white);
        border: 2px solid rgba(116, 138, 110, 0.2);
        border-radius: 14px;
        font-family: "Inter", "Noto Serif Ethiopic", sans-serif;
        font-size: 0.98rem;
        color: var(--pine-teal);
        text-align: center;
        letter-spacing: 0.08em;
        outline: none;
        transition: all 0.3s ease;
      }
      .wishes-unlock-input:focus {
        border-color: var(--dusty-olive);
        box-shadow: 0 0 0 4px rgba(116, 138, 110, 0.12);
      }
      .wishes-unlock-input.is-error {
        border-color: rgba(179, 99, 94, 0.55);
        box-shadow: 0 0 0 4px rgba(179, 99, 94, 0.08);
      }

      .wishes-unlock-error {
        min-height: 1.2rem;
        margin: 0.55rem 0 0.9rem;
        font-family: "Inter", "Noto Serif Ethiopic", sans-serif;
        font-size: 0.78rem;
        line-height: 1.4;
        color: #b4635e;
        opacity: 0;
        transform: translateY(-4px);
        transition: all 0.3s ease;
      }
      .wishes-unlock-error.show {
        opacity: 1;
        transform: translateY(0);
      }

      .wishes-unlock-submit {
        position: relative;
        width: 100%;
        padding: 1rem;
        border: none;
        border-radius: 14px;
        background: var(--gradient-primary);
        color: var(--white);
        font-family: "Inter", "Noto Serif Ethiopic", sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.08rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(116, 138, 110, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
      }
      .wishes-unlock-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
      }
      .wishes-unlock-submit:disabled {
        cursor: wait;
      }
      .wishes-unlock-submit .wishes-unlock-spinner {
        display: none;
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-top-color: var(--white);
        border-radius: 50%;
        animation: wishesUnlockSpin 0.7s linear infinite;
      }
      .wishes-unlock-submit.loading .wishes-unlock-spinner {
        display: inline-block;
      }
      .wishes-unlock-submit.success {
        background: var(--pine-teal);
        cursor: default;
      }
      @keyframes wishesUnlockSpin {
        to {
          transform: rotate(360deg);
        }
      }

      @media (max-width: 480px) {
        .wishes-unlock-modal {
          padding: 2.2rem 1.5rem 1.8rem;
        }
        .wishes-unlock-title {
          font-size: 1.6rem;
        }
      }
