    /* ===== Root Variables ===== */
    :root {
      --bg: #f8fbf9;
      --bg-soft: #eaf1ed;
      --panel: rgba(255, 255, 255, 0.85);
      --panel-strong: rgba(255, 255, 255, 0.95);
      --line: rgba(56, 112, 89, 0.2);
      --gold: #c28b27;
      --gold-bright: #dea335;
      --cream: #142a20;
      --mint: #458f6b;
      --emerald: #14362a;
      --emerald-bright: #285d4c;
      --text: #193829;
      --text-soft: rgba(25, 56, 41, 0.8);
      --shadow: 0 30px 60px rgba(25, 56, 41, 0.12);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --max-width: 1200px;
      --transition: 0.5s cubic-bezier(.22, 1, .36, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 20% 20%, rgba(227, 196, 110, 0.08), transparent 22%),
        radial-gradient(circle at 80% 15%, rgba(89, 184, 135, 0.12), transparent 18%),
        radial-gradient(circle at 50% 80%, rgba(227, 196, 110, 0.06), transparent 24%),
        linear-gradient(180deg, #f0f7f2 0%, #e2eee6 40%, #d5e5db 100%);
      overflow-x: hidden;
    }

    body.revealed {
      overflow-x: hidden;
    }

    body.modal-open {
      overflow: hidden;
    }

    a,
    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

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

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

    /* ===== Background Effects ===== */
    #cursor-canvas,
    #sparkle-canvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
    }

    #sparkle-canvas {
      z-index: 8;
    }

    .site-shell {
      position: relative;
      z-index: 3;
    }

    .stars,
    .stars::before,
    .stars::after {
      position: fixed;
      inset: 0;
      content: "";
      background-image:
        radial-gradient(circle at 15% 22%, rgba(255,255,255,0.8) 0 1px, transparent 2px),
        radial-gradient(circle at 80% 28%, rgba(255,255,255,0.65) 0 1px, transparent 2px),
        radial-gradient(circle at 40% 70%, rgba(255,255,255,0.75) 0 1px, transparent 2px),
        radial-gradient(circle at 55% 15%, rgba(227,196,110,0.8) 0 1.5px, transparent 3px),
        radial-gradient(circle at 67% 62%, rgba(255,255,255,0.85) 0 1px, transparent 2px),
        radial-gradient(circle at 24% 84%, rgba(255,255,255,0.55) 0 1px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(227,196,110,0.75) 0 1.25px, transparent 2.5px);
      background-size: 100% 100%;
      opacity: 0.6;
      pointer-events: none;
      z-index: 0;
      animation: twinkle 10s linear infinite;
    }

    .stars::before {
      opacity: 0.42;
      transform: scale(1.2);
      animation-duration: 14s;
    }

    .stars::after {
      opacity: 0.32;
      transform: scale(1.4);
      animation-duration: 18s;
    }

    /* ===== Loader ===== */
    .loader {
      position: fixed;
      inset: 0;
      z-index: 20;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at top, rgba(227, 196, 110, 0.18), transparent 28%),
        linear-gradient(180deg, #f0f7f2 0%, #d5e5db 100%);
      transition: opacity 0.9s ease, visibility 0.9s ease;
    }

    .loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loader-box {
      display: grid;
      gap: 1rem;
      place-items: center;
      text-align: center;
      padding: 2rem;
    }

    .loader-moon {
      width: 98px;
      height: 98px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, rgba(255, 238, 186, 0.95), rgba(227, 196, 110, 0.9) 42%, rgba(227, 196, 110, 0.15) 58%, transparent 60%);
      box-shadow: 0 0 35px rgba(227, 196, 110, 0.55);
      position: relative;
      animation: float 3.8s ease-in-out infinite;
    }

    .loader-moon::after {
      content: "";
      position: absolute;
      inset: 14px 12px 10px 28px;
      border-radius: 50%;
      background: linear-gradient(180deg, #e4efe8 0%, #cfe0d6 100%);
    }

    .loader p {
      margin: 0;
      color: var(--text-soft);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-size: 0.75rem;
    }

    /* ===== Intro / Opening Screen ===== */
    .intro-overlay {
      position: fixed;
      inset: 0;
      z-index: 15;
      display: grid;
      place-items: center;
      padding: 1.5rem;
      overflow-x: hidden;
      overflow-y: auto;
      background:
        radial-gradient(circle at 50% 15%, rgba(194, 139, 39, 0.25), transparent 18%),
        linear-gradient(180deg, rgba(230, 240, 234, 0.6), rgba(215, 230, 221, 0.95)),
        linear-gradient(180deg, #eaf2ed 0%, #d4e5da 100%);
      transition: opacity 0.7s ease, visibility 0.7s ease;
    }

    .intro-overlay.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .intro-overlay.transitioning .door-panel.left {
      transform: translateX(-102%);
    }

    .intro-overlay.transitioning .door-panel.right {
      transform: translateX(102%);
    }

    .intro-overlay.transitioning .light-burst {
      opacity: 1;
      transform: scale(1.05);
    }

    .intro-overlay.transitioning .intro-content {
      opacity: 0;
      transform: translateY(18px) scale(0.98);
    }

    .door-panel {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 50%;
      z-index: 0;
      transition: transform 1.35s cubic-bezier(.76, 0, .24, 1);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 248, 0.98)),
        repeating-linear-gradient(90deg, rgba(194, 139, 39, 0.08) 0 2px, transparent 2px 60px);
      box-shadow: inset 0 0 0 1px rgba(194, 139, 39, 0.2);
    }

    .door-panel.left {
      left: 0;
      border-right: 1px solid rgba(194, 139, 39, 0.25);
    }

    .door-panel.right {
      right: 0;
      border-left: 1px solid rgba(194, 139, 39, 0.25);
    }

    .door-panel::before,
    .door-panel::after {
      content: "";
      position: absolute;
      inset: 10%;
      border: 1px solid rgba(194, 139, 39, 0.2);
      border-radius: 28px;
    }

    .door-panel::after {
      inset: 18%;
      clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0 100%, 0 35%);
    }

    .light-burst {
      position: absolute;
      inset: -10%;
      background:
        radial-gradient(circle, rgba(255, 241, 192, 0.72) 0%, rgba(255, 238, 184, 0.2) 18%, rgba(255, 238, 184, 0.08) 35%, transparent 58%);
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 1.1s ease, transform 1.1s ease;
      z-index: 1;
      pointer-events: none;
    }

    .intro-content {
      position: relative;
      z-index: 2;
      width: min(900px, 100%);
      max-width: 100%;
      max-height: calc(100vh - 3rem);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
      padding: clamp(2rem, 5vh, 4rem) 1.5rem clamp(2.5rem, 6vh, 4.5rem);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .moon {
      width: clamp(108px, 14vh, 140px);
      height: clamp(108px, 14vh, 140px);
      margin: 0 auto;
      position: relative;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 35%, rgba(255,240,177,1), rgba(227,196,110,0.92) 42%, rgba(227,196,110,0.18) 58%, transparent 64%);
      box-shadow:
        0 0 40px rgba(227, 196, 110, 0.45),
        0 0 80px rgba(227, 196, 110, 0.22);
      animation: moonPulse 5s ease-in-out infinite;
    }

    .moon::after {
      content: "";
      position: absolute;
      inset: 15px 10px 12px 44px;
      border-radius: 50%;
      background: linear-gradient(180deg, #f4f9f6, #ecf4f0);
    }

    .hero-decor {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .lantern,
    .ketupat {
      position: absolute;
      filter: drop-shadow(0 0 20px rgba(227, 196, 110, 0.18));
      animation: float 6s ease-in-out infinite;
    }

    .lantern {
      width: 52px;
      height: 72px;
      border-radius: 18px 18px 12px 12px;
      background:
        linear-gradient(180deg, rgba(247, 228, 171, 0.95), rgba(227, 196, 110, 0.72)),
        linear-gradient(90deg, rgba(0,0,0,0.08) 48%, rgba(255,255,255,0.08) 50%);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), 0 0 24px rgba(227,196,110,0.26);
    }

    .lantern::before,
    .lantern::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .lantern::before {
      top: -18px;
      width: 2px;
      height: 20px;
      background: rgba(227, 196, 110, 0.5);
    }

    .lantern::after {
      bottom: -16px;
      width: 20px;
      height: 16px;
      border-radius: 0 0 10px 10px;
      border-bottom: 2px solid rgba(227, 196, 110, 0.55);
    }

    .ketupat {
      width: 62px;
      height: 62px;
      transform: rotate(45deg);
      background:
        linear-gradient(90deg, #5ba57a 0 50%, #3f7f5c 50% 100%);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 0 20px rgba(91,165,122,0.16);
    }

    .ketupat::before,
    .ketupat::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.14) 0 4px, transparent 4px 11px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 4px, transparent 4px 11px);
    }

    .ketupat::after {
      inset: auto 50% -32px auto;
      width: 2px;
      height: 40px;
      background: linear-gradient(180deg, rgba(227, 196, 110, 0.7), transparent);
      transform: rotate(-45deg);
      transform-origin: top center;
    }

    .lantern.one { top: 16%; left: 12%; animation-delay: -1s; }
    .lantern.two { top: 24%; right: 14%; animation-delay: -2.5s; }
    .ketupat.one { bottom: 18%; left: 16%; animation-delay: -1.5s; }
    .ketupat.two { bottom: 14%; right: 18%; animation-delay: -3s; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0;
      color: var(--gold);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 54px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(227, 196, 110, 0.7), transparent);
    }

    h1,
    h2,
    h3 {
      font-family: "Cormorant Garamond", serif;
      line-height: 0.95;
      letter-spacing: 0.01em;
      margin: 0;
    }

    .intro-title {
      font-size: clamp(3rem, 8vw, 7rem);
      line-height: 0.88;
      text-shadow: 0 0 30px rgba(227, 196, 110, 0.18);
    }

    .intro-title span {
      display: block;
      color: var(--gold-bright);
    }

    .intro-subtitle {
      margin: 0;
      max-width: 680px;
      color: var(--text-soft);
      font-size: clamp(1rem, 2vw, 1.16rem);
      line-height: 1.75;
    }

    .glow-button,
    .ghost-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      min-width: 220px;
      padding: 1rem 1.5rem;
      margin-top: 0.75rem;
      border-radius: 999px;
      color: #ffffff;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold));
      box-shadow: 0 18px 40px rgba(227, 196, 110, 0.28), inset 0 1px 1px rgba(255,255,255,0.6);
      font-weight: 800;
      letter-spacing: 0.04em;
      position: relative;
      z-index: 3;
      transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    }

    .glow-button:hover,
    .ghost-button:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 20px 50px rgba(227, 196, 110, 0.34), inset 0 1px 1px rgba(255,255,255,0.6);
      filter: saturate(1.05);
    }

    .ghost-button {
      color: var(--text);
      background: rgba(25, 56, 41, 0.04);
      border: 1px solid rgba(227, 196, 110, 0.28);
      box-shadow: inset 0 0 0 1px rgba(25, 56, 41, 0.04), 0 14px 32px rgba(0, 0, 0, 0.18);
    }

    /* ===== Main Content ===== */
    .main-content {
      position: relative;
      opacity: 0;
      transform: translateY(48px);
      transition: opacity 1.2s ease, transform 1.2s ease;
      pointer-events: none;
    }

    .main-content.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    section {
      position: relative;
      padding: 6rem 1.25rem;
    }

    .container {
      width: min(var(--max-width), 100%);
      margin: 0 auto;
      position: relative;
    }

    .motif-divider {
      width: min(620px, 100%);
      margin: 0 auto 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: rgba(227, 196, 110, 0.78);
    }

    .motif-divider::before,
    .motif-divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(227, 196, 110, 0.38), transparent);
    }

    .motif-divider span {
      width: 72px;
      height: 18px;
      position: relative;
      display: inline-block;
    }

    .motif-divider span::before,
    .motif-divider span::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(227, 196, 110, 0.44);
      transform: skewX(-35deg);
      border-radius: 4px;
    }

    .motif-divider span::after {
      inset: 3px 14px;
      transform: skewX(35deg);
    }

    /* ===== Greeting Card ===== */
    .greeting-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
      align-items: center;
    }

    .card-shell {
      position: relative;
      padding: 1px;
      border-radius: calc(var(--radius-xl) + 1px);
      background: linear-gradient(135deg, rgba(227, 196, 110, 0.88), rgba(139, 199, 165, 0.32), rgba(227, 196, 110, 0.55));
      box-shadow: var(--shadow);
      overflow: hidden;
      isolation: isolate;
      animation: float 8s ease-in-out infinite;
    }

    .card-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 24%),
        radial-gradient(circle at 80% 0%, rgba(227,196,110,0.18), transparent 30%);
      z-index: -1;
    }

    .greeting-card {
      position: relative;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 247, 0.95)),
        radial-gradient(circle at top, rgba(227,196,110,0.08), transparent 40%);
      padding: 2.4rem;
      min-height: 100%;
      overflow: hidden;
    }

    .greeting-card::before,
    .greeting-card::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(227, 196, 110, 0.22);
      pointer-events: none;
    }

    .greeting-card::before {
      inset: 18px;
      border-radius: 26px;
    }

    .greeting-card::after {
      inset: 34px;
      border-radius: 20px;
      clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
    }

    .card-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .pill {
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      background: rgba(25, 56, 41, 0.04);
      color: var(--gold);
      border: 1px solid rgba(227, 196, 110, 0.24);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 800;
    }

    .ornament {
      display: inline-grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 1px solid rgba(227, 196, 110, 0.24);
      color: var(--gold);
      background: rgba(255, 255, 255, 0.03);
      font-size: 1.5rem;
    }

    .greeting-card h2 {
      font-size: clamp(2.7rem, 6vw, 4.6rem);
      margin-bottom: 1rem;
    }

    .recipient-wrap {
      display: grid;
      gap: 0.9rem;
      margin: 1.8rem 0;
    }

    .recipient-wrap label,
    .translation-toggle span {
      color: var(--text-soft);
      font-size: 0.95rem;
    }

    .recipient-input {
      width: 100%;
      padding: 0.95rem 1rem;
      border-radius: 16px;
      border: 1px solid rgba(227, 196, 110, 0.22);
      color: var(--text);
      background: rgba(25, 56, 41, 0.04);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .recipient-input:focus {
      border-color: rgba(227, 196, 110, 0.48);
      box-shadow: 0 0 0 4px rgba(227, 196, 110, 0.12);
      background: rgba(40, 93, 76, 0.08);
    }

    .recipient-display {
      font-family: "Cormorant Garamond", serif;
      color: var(--gold-bright);
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.05;
      margin-bottom: 1rem;
    }

    .card-message {
      color: var(--text-soft);
      line-height: 1.9;
      font-size: 1rem;
      margin: 0;
    }

    .translation-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      margin-top: 1.6rem;
      padding: 0.6rem 0.85rem;
      border-radius: 999px;
      background: rgba(25, 56, 41, 0.04);
      border: 1px solid rgba(194, 139, 39, 0.25);
    }

    .switch {
      position: relative;
      width: 58px;
      height: 30px;
      background: rgba(40, 93, 76, 0.15);
      border-radius: 999px;
      cursor: pointer;
      transition: background var(--transition);
    }

    .switch::after {
      content: "";
      position: absolute;
      top: 3px;
      left: 3px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold));
      box-shadow: 0 6px 16px rgba(227, 196, 110, 0.28);
      transition: transform var(--transition);
    }

    .switch.active {
      background: rgba(78, 164, 122, 0.28);
    }

    .switch.active::after {
      transform: translateX(28px);
    }

    .english-copy {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.6s ease, opacity 0.4s ease, margin-top 0.4s ease;
      color: rgba(249, 244, 232, 0.7);
      line-height: 1.8;
    }

    .english-copy.visible {
      max-height: 180px;
      opacity: 1;
      margin-top: 1rem;
    }

    .side-panel {
      display: grid;
      gap: 1.4rem;
    }

    .detail-box {
      position: relative;
      padding: 1.6rem;
      border-radius: var(--radius-lg);
      background: rgba(25, 56, 41, 0.04);
      border: 1px solid rgba(194, 139, 39, 0.25);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(14px);
    }

    .detail-box h3 {
      font-size: 2rem;
      margin-bottom: 0.6rem;
    }

    .detail-box p {
      margin: 0;
      color: var(--text-soft);
      line-height: 1.85;
    }

    .icon-row {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-top: 1.1rem;
    }

    .mini-icon {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(227, 196, 110, 0.18);
      background: rgba(25, 56, 41, 0.04);
      color: var(--gold);
      font-size: 1.5rem;
      animation: float 5s ease-in-out infinite;
    }

    .mini-icon:nth-child(2) { animation-delay: -1.3s; }
    .mini-icon:nth-child(3) { animation-delay: -2.6s; }

    /* ===== Narrative Section ===== */
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      margin-bottom: 0.9rem;
    }

    .section-header p {
      width: min(760px, 100%);
      margin: 0 auto;
      color: var(--text-soft);
      line-height: 1.9;
    }

    .message-columns {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.4rem;
    }

    .message-panel {
      padding: 1.8rem;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
      border: 1px solid rgba(194, 139, 39, 0.25);
      backdrop-filter: blur(12px);
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .message-panel.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .message-panel h3 {
      font-size: 1.9rem;
      margin-bottom: 0.8rem;
      color: var(--gold-bright);
    }

    .message-panel p {
      margin: 0;
      color: var(--text-soft);
      line-height: 1.95;
    }

    .message-form-wrap {
      margin-top: 2rem;
    }

    .message-form-card {
      padding: 2rem;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(245,250,247,0.85)),
        radial-gradient(circle at top right, rgba(227,196,110,0.1), transparent 26%);
      border: 1px solid rgba(227, 196, 110, 0.18);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    }

    .message-form-card h3 {
      margin: 0.35rem 0 0.7rem;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--gold-bright);
    }

    .message-form-card p {
      margin: 0 0 1.5rem;
      color: var(--text-soft);
      line-height: 1.85;
    }

    .message-form {
      display: grid;
      gap: 1rem;
    }

    .message-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .message-form label {
      display: grid;
      gap: 0.45rem;
    }

    .message-form span {
      color: var(--gold-bright);
      font-size: 0.95rem;
      letter-spacing: 0.03em;
    }

    .message-form input,
    .message-form textarea {
      width: 100%;
      padding: 0.95rem 1rem;
      border-radius: 16px;
      border: 1px solid rgba(227, 196, 110, 0.18);
      background: rgba(40, 93, 76, 0.05);
      color: var(--text);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .message-form textarea {
      min-height: 160px;
      resize: vertical;
    }

    .message-form input::placeholder,
    .message-form textarea::placeholder {
      color: rgba(249, 244, 232, 0.42);
    }

    .message-form input:focus,
    .message-form textarea:focus {
      border-color: rgba(227, 196, 110, 0.45);
      box-shadow: 0 0 0 4px rgba(194, 139, 39, 0.2);
      background: rgba(40, 93, 76, 0.08);
    }

    .message-form-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 0.25rem;
    }

    .message-form-actions .glow-button {
      margin-top: 0;
      min-width: 210px;
    }

    .message-form-actions .glow-button[disabled] {
      opacity: 0.7;
      cursor: wait;
      transform: none;
    }

    .form-status {
      margin: 0;
      min-height: 1.5rem;
      color: var(--text-soft);
    }

    .form-status.is-error {
      color: #ffb8b8;
    }

    .form-status.is-success {
      color: #a4efc4;
    }

    /* ===== Interactive Section ===== */
    .interactive-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .interactive-card {
      padding: 2rem;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(245,250,247,0.85)),
        radial-gradient(circle at top left, rgba(227,196,110,0.09), transparent 28%);
      border: 1px solid rgba(227, 196, 110, 0.18);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
    }

    .interactive-card h3 {
      font-size: 2.2rem;
      margin-bottom: 0.6rem;
    }

    .interactive-card p {
      margin: 0 0 1.6rem;
      color: var(--text-soft);
      line-height: 1.85;
    }

    .button-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .button-row button {
      margin-top: 0;
      min-width: 180px;
    }

    .duit-popup {
      margin-top: 1.4rem;
      padding: 1rem 1.15rem;
      border-radius: 18px;
      color: var(--cream);
      background: rgba(78, 164, 122, 0.14);
      border: 1px solid rgba(78, 164, 122, 0.3);
      opacity: 0;
      transform: translateY(14px);
      pointer-events: none;
      transition: opacity var(--transition), transform var(--transition);
    }

    .duit-popup.show {
      opacity: 1;
      transform: translateY(0);
    }

    .glow-orb {
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(227,196,110,0.18), transparent 65%);
      top: 50%;
      right: -60px;
      transform: translateY(-50%);
      filter: blur(8px);
      pointer-events: none;
    }

    /* ===== Gallery ===== */
    .gallery-wrap {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      padding: 1rem;
      background: rgba(255,255,255,0.6);
      border: 1px solid rgba(227, 196, 110, 0.14);
    }

    .gallery-slider {
      width: 100%;
      height: 100%;
      padding-bottom: 0.2rem;
    }

    .gallery-card {
      position: relative;
      height: 380px;
      border-radius: calc(var(--radius-lg) + 2px);
      overflow: hidden;
      background: rgba(25, 56, 41, 0.04);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 22px 40px rgba(0,0,0,0.24);
      transition: transform var(--transition), border-color var(--transition);
    }

    .gallery-card:hover {
      transform: translateY(-6px);
      border-color: rgba(227, 196, 110, 0.26);
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .gallery-card:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      inset: auto 0 0;
      padding: 1.2rem;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95));
    }

    .gallery-overlay h3 {
      font-size: 1.85rem;
      margin-bottom: 0.35rem;
    }

    .gallery-overlay p {
      margin: 0;
      color: rgba(25, 56, 41, 0.8);
      line-height: 1.75;
      font-size: 0.95rem;
    }

    .gallery-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.2rem;
      margin-top: 1.5rem;
    }

    .gallery-controls button {
      width: 48px;
      height: 48px;
      min-width: 0;
      padding: 0;
      border-radius: 50%;
      margin-top: 0;
      z-index: 2;
    }

    .gallery-controls button.swiper-button-disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
      filter: none;
    }

    .swiper-pagination-custom {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .swiper-pagination-custom .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: rgba(227, 196, 110, 0.3);
      opacity: 1;
      border-radius: 4px;
      margin: 0 !important;
      transition: width var(--transition), background var(--transition);
    }

    .swiper-pagination-custom .swiper-pagination-bullet-active {
      width: 24px;
      background: var(--gold-bright);
    }

    /* ===== Closing Section ===== */
    .closing {
      padding-top: 7rem;
      padding-bottom: 8rem;
      text-align: center;
    }

    .closing-card {
      position: relative;
      width: min(920px, 100%);
      margin: 0 auto;
      padding: 3rem 2rem;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 247, 0.96)),
        radial-gradient(circle at top, rgba(227,196,110,0.1), transparent 34%);
      border: 1px solid rgba(227, 196, 110, 0.22);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .closing-card::before {
      content: "";
      position: absolute;
      inset: 16px;
      border-radius: 28px;
      border: 1px solid rgba(194, 139, 39, 0.25);
      pointer-events: none;
    }

    .closing-card h2 {
      font-size: clamp(3rem, 7vw, 5.4rem);
      margin-bottom: 1rem;
    }

    .closing-card p {
      margin: 0 auto;
      width: min(720px, 100%);
      color: var(--text-soft);
      line-height: 1.95;
      font-size: 1.02rem;
    }

    .signature {
      margin-top: 2rem;
      color: var(--gold-bright);
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2rem, 4vw, 3rem);
    }

    /* ===== Modal ===== */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 25;
      display: grid;
      place-items: center;
      padding: 1.25rem;
      background: rgba(254, 255, 254, 0.68);
      backdrop-filter: blur(12px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .modal.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-card {
      position: relative;
      width: min(560px, 100%);
      padding: 2rem;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,249,0.98));
      border: 1px solid rgba(227, 196, 110, 0.18);
      box-shadow: var(--shadow);
      transform: translateY(20px) scale(0.98);
      transition: transform 0.35s ease;
    }

    .modal.open .modal-card {
      transform: translateY(0) scale(1);
    }

    .modal-card h3 {
      font-size: 2.4rem;
      margin-bottom: 0.8rem;
    }

    .modal-card p {
      margin: 0;
      color: var(--text-soft);
      line-height: 1.9;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 42px;
      height: 42px;
      min-width: 0;
      padding: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      border: 1px solid rgba(194, 139, 39, 0.25);
      margin-top: 0;
    }

    /* ===== Floating Controls ===== */
    .floating-control {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 12;
      display: grid;
      gap: 0.8rem;
    }

    .music-toggle,
    .back-top {
      width: 58px;
      height: 58px;
      min-width: 0;
      padding: 0;
      border-radius: 50%;
      margin-top: 0;
      color: var(--text);
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(227, 196, 110, 0.24);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(14px);
    }

    .music-toggle.playing {
      color: #ffffff;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    }

    /* ===== Mosque Silhouette ===== */
    .mosque {
      position: absolute;
      inset: auto 0 0;
      height: 140px;
      pointer-events: none;
      opacity: 0.44;
      background:
        radial-gradient(circle at 16% 100%, rgba(215, 230, 221, 0.95) 0 22%, transparent 22.5%),
        radial-gradient(circle at 30% 100%, rgba(215, 230, 221, 0.95) 0 28%, transparent 28.5%),
        radial-gradient(circle at 50% 100%, rgba(215, 230, 221, 0.95) 0 42%, transparent 42.5%),
        radial-gradient(circle at 70% 100%, rgba(215, 230, 221, 0.95) 0 28%, transparent 28.5%),
        radial-gradient(circle at 84% 100%, rgba(215, 230, 221, 0.95) 0 22%, transparent 22.5%),
        linear-gradient(180deg, transparent 0 52%, rgba(205, 222, 212, 0.95) 52% 100%);
      filter: drop-shadow(0 -12px 18px rgba(227, 196, 110, 0.08));
    }

    .mosque::before,
    .mosque::after {
      content: "";
      position: absolute;
      bottom: 0;
      width: 44px;
      background: linear-gradient(180deg, transparent, rgba(205, 222, 212, 0.96) 22%);
    }

    .mosque::before {
      left: 10%;
      height: 110px;
      clip-path: polygon(35% 0, 65% 0, 78% 12%, 78% 100%, 22% 100%, 22% 12%);
    }

    .mosque::after {
      right: 12%;
      height: 95px;
      clip-path: polygon(35% 0, 65% 0, 78% 12%, 78% 100%, 22% 100%, 22% 12%);
    }

    /* ===== Scroll Reveal (Handled by GSAP, keeping opacity 0 by default) ===== */
    .reveal {
      opacity: 0;
      transform: translateY(34px);
    }
    
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== Animations ===== */
    @keyframes twinkle {
      0%, 100% { opacity: 0.58; }
      50% { opacity: 0.82; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-12px) rotate(1deg); }
    }

    @keyframes moonPulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(227,196,110,0.45), 0 0 80px rgba(227,196,110,0.22); }
      50% { transform: scale(1.04); box-shadow: 0 0 48px rgba(227,196,110,0.52), 0 0 100px rgba(227,196,110,0.3); }
    }

    @keyframes shimmer {
      0% { transform: translateX(-120%); }
      100% { transform: translateX(120%); }
    }

    /* ===== Responsive ===== */
    @media (max-width: 980px) {
      .greeting-grid,
      .message-columns,
      .interactive-grid {
        grid-template-columns: 1fr;
      }

      .intro-content {
        padding-top: 6rem;
      }

      .lantern.one { left: 6%; }
      .lantern.two { right: 6%; }
      .ketupat.one { left: 10%; }
      .ketupat.two { right: 10%; }
    }

    @media (max-height: 820px) {
      .intro-overlay {
        place-items: start center;
      }

      .intro-content {
        gap: 0.8rem;
        max-height: none;
        padding-top: 1.5rem;
        padding-bottom: 2.25rem;
      }

      .intro-title {
        font-size: clamp(2.7rem, 7vw, 5.6rem);
      }

      .intro-subtitle {
        font-size: 0.96rem;
        line-height: 1.65;
      }

      .glow-button,
      .ghost-button {
        margin-top: 0.4rem;
      }
    }

    @media (max-width: 720px) {
      section {
        padding: 4.75rem 1rem;
      }

      .intro-title {
        font-size: clamp(3rem, 13vw, 5rem);
      }

      .intro-subtitle {
        font-size: 0.98rem;
      }

      .greeting-card,
      .detail-box,
      .interactive-card,
      .closing-card,
      .modal-card {
        padding: 1.45rem;
      }

      .card-topline {
        flex-wrap: wrap;
      }

      .button-row {
        flex-direction: column;
      }

      .button-row button {
        width: 100%;
      }

      .message-form-grid {
        grid-template-columns: 1fr;
      }

      .message-form-actions .glow-button {
        width: 100%;
      }

      .gallery-card {
        min-height: 320px;
      }

      .floating-control {
        right: 14px;
        bottom: 14px;
      }
    }

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