    :root {
      --cream: #e8dfc8;
      --warm-beige: #d4c9a8;
      --dark-brown: #2a2219;
      --medium-brown: #4a3c2a;
      --light-tan: #c9bc9e;
      --sepia: #8b7355;
      --dark-bg: #1e1a14;
      --text-body: #3d3020;
      --accent: #6b5a3e;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: var(--cream);
      color: var(--text-body);
      font-family: 'EB Garamond', serif;
      overflow-x: hidden;
    }

    /* ── HERO ─────────────────────────────────────── */
    .hero {
      position: relative;
      background-color: var(--dark-bg);
      height: 100vh;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-image: url(assets/photo-01.jpg);
      background-size: cover;
      background-position: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(180, 155, 100, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(120, 95, 55, 0.15) 0%, transparent 55%);
      pointer-events: none;
    }

    /* floral texture overlay */
    .hero-texture {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='rgba(180,155,100,0.08)' stroke-width='1'/%3E%3Ccircle cx='160' cy='160' r='30' fill='none' stroke='rgba(180,155,100,0.08)' stroke-width='1'/%3E%3Ccircle cx='40' cy='160' r='20' fill='none' stroke='rgba(180,155,100,0.06)' stroke-width='1'/%3E%3Ccircle cx='160' cy='40' r='20' fill='none' stroke='rgba(180,155,100,0.06)' stroke-width='1'/%3E%3C/svg%3E");
      opacity: 0.6;
      pointer-events: none;
    }

    .hero-date {
      position: absolute;
      top: 36px;
      left: 48px;
      font-family: 'EB Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.25em;
      color: rgba(200, 180, 140, 0.7);
      text-transform: uppercase;
    }

    .hero-venue {
      position: absolute;
      top: 36px;
      right: 48px;
      font-family: 'EB Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.25em;
      color: rgba(200, 180, 140, 0.7);
      text-transform: uppercase;
      text-align: right;
    }

    .hero-names {
      font-family: "Pinyon Script";
      font-style: italic;
      font-weight: 300;
      font-size: clamp(64px, 10vw, 130px);
      color: var(--cream);
      text-align: center;
      line-height: 1;
      letter-spacing: -0.01em;
      animation: fadeUp 1.2s ease forwards;
      opacity: 0;
    }

    .hero-names .ampersand {
      font-size: 0.7em;
      color: var(--warm-beige);
      margin: 0 0.1em;
    }

    .hero-sub {
      font-family: 'EB Garamond', serif;
      font-size: clamp(11px, 1.5vw, 14px);
      letter-spacing: 0.35em;
      color: rgba(200, 180, 140, 0.8);
      text-transform: uppercase;
      margin-top: 14px;
      animation: fadeUp 1.2s 0.3s ease forwards;
      opacity: 0;
    }

    .hero-divider {
      width: 1px;
      height: 80px;
      background: linear-gradient(to bottom, transparent, rgba(200, 180, 140, 0.5), transparent);
      margin: 40px auto 0;
      animation: fadeUp 1.2s 0.5s ease forwards;
      opacity: 0;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── STORY SECTION ────────────────────────────── */
    .story {
      background-color: var(--cream);
      padding: 100px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .story-label-left {
      font-family: 'EB Garamond', serif;
      font-size: clamp(20px, 3vw, 36px);
      font-style: italic;
      color: var(--medium-brown);
      line-height: 1.3;
      text-align: right;
      padding-right: 48px;
      opacity: 0.85;
    }

    .story-image {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--light-tan);
      border: 1px solid var(--warm-beige);
      overflow: hidden;
      position: relative;
    }

    .story-image-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #c9bc9e 0%, #a89070 50%, #8b7355 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
    }

    .story-image-placeholder svg {
      opacity: 0.3;
    }

    .story-label-right {
      font-family: 'EB Garamond', serif;
      font-size: clamp(20px, 3vw, 36px);
      font-style: italic;
      color: var(--medium-brown);
      line-height: 1.3;
      text-align: left;
      padding-left: 48px;
      opacity: 0.85;
    }

    .story-text {
      max-width: 780px;
      margin: 0 auto;
      padding: 0 48px 80px;
      text-align: center;
      font-size: 16px;
      line-height: 1.85;
      color: var(--text-body);
    }

    /* ── HERO PHOTO STRIP ─────────────────────────── */
    .photo-strip {
      width: 100%;
      height: 100vh;
      background: var(--dark-bg);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url(assets/photo-03.jpg);
      background-size: cover;
      background-position: center;
    }

    .photo-strip-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, #1e1a14 0%, #2e2518 50%, #1e1a14 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .photo-strip-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(36px, 6vw, 72px);
      color: rgba(200, 180, 140, 0.12);
      letter-spacing: 0.05em;
      text-align: center;
      user-select: none;
      padding: 0 40px;
    }

    /* garden silhouette decoration */
    .garden-deco {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(to top, rgba(30, 26, 20, 0.8), transparent);
      pointer-events: none;
    }

    /* ── PROGRAM + RECEPTION ──────────────────────── */
    .info-section {
      background-color: var(--cream);
      padding: 90px 48px;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .info-block h2 {
      font-family: 'EB Garamond', serif;
      font-size: 13px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--sepia);
      margin-bottom: 36px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--light-tan);
    }

    .program-item {
      display: flex;
      gap: 24px;
      margin-bottom: 22px;
      align-items: baseline;
    }

    .program-time {
      font-family: 'EB Garamond', serif;
      font-size: 12px;
      letter-spacing: 0.15em;
      color: var(--sepia);
      white-space: nowrap;
      min-width: 56px;
      font-weight: 500;
    }

    .program-label {
      font-family: 'EB Garamond', serif;
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.5;
    }

    .reception-item {
      margin-bottom: 28px;
    }

    .reception-item h3 {
      font-family: 'EB Garamond', serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--medium-brown);
      margin-bottom: 8px;
      letter-spacing: 0.05em;
    }

    .reception-item p {
      font-family: 'EB Garamond', serif;
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-body);
      opacity: 0.85;
    }

    /* ── PHOTO GALLERY STRIP ──────────────────────── */
    .gallery {
      padding: 60px 0;
      display: flex;
      gap: 35px;
      justify-content: center;
      overflow: hidden;
      background-image: url(assets/photo-04.jpg);
      background-size: cover;
      height: 80vh;
      background-position: center;
      align-items: center;
    }

    .gallery-item {
      flex-shrink: 0;
      width: 260px;
      height: 400px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .gallery-item:nth-child(2) {
      transform: rotate(-1.5deg) translateY(8px);
    }

    .gallery-item:nth-child(3) {
      transform: rotate(1deg) translateY(-4px);
    }

    .gallery-item:nth-child(4) {
      transform: rotate(-0.5deg) translateY(6px);
    }

    .gallery-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(180, 155, 100, 0.1), rgba(100, 80, 50, 0.2));
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(180, 155, 100, 0.2);
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 12px;
      letter-spacing: 0.1em;
    }

    /* ── NOTE SECTION ─────────────────────────────── */
    .note-section {
      background: var(--cream);
      padding: 90px 48px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      max-width: 1000px;
      margin: 0 auto;
      align-items: center;
    }

    .note-image {
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #c9bc9e 0%, #a89070 100%);
      border: 1px solid var(--warm-beige);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(80, 60, 30, 0.25);
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 14px;
      width: 360px;
    }

    .note-image>img {
      height: 60vh;
      object-fit: cover;
    }

    .note-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(26px, 4vw, 44px);
      color: var(--medium-brown);
      line-height: 1.3;
      margin-bottom: 24px;
    }

    .note-content p {
      font-family: 'EB Garamond', serif;
      font-size: 16px;
      line-height: 1.85;
      color: var(--text-body);
      margin-bottom: 14px;
      opacity: 0.9;
    }

    .note-content strong {
      color: var(--medium-brown);
      font-weight: 500;
    }

    /* ── FOOTER ───────────────────────────────────── */
    footer {
      background: var(--dark-bg);
      padding: 80px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(180, 155, 100, 0.1) 0%, transparent 60%);
      pointer-events: none;
    }

    .footer-title {
      font-family: "Pinyon Script";
      font-style: italic;
      font-weight: 300;
      font-size: clamp(48px, 8vw, 96px);
      color: var(--cream);
      margin-bottom: 32px;
      position: relative;
    }

    .footer-date-line {
      font-family: 'EB Garamond', serif;
      font-size: 12px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(200, 180, 140, 0.5);
      margin-top: 48px;
    }

    .footer-photo {
      width: 880px;
      height: 465px;
      background: linear-gradient(135deg, #3a3020 0%, #2a2018 100%);
      border: 1px solid rgba(180, 155, 100, 0.15);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(180, 155, 100, 0.15);
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 12px;
    }

    .footer-photo>img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 768px) {
      .story {
        grid-template-columns: 1fr;
        padding: 60px 24px;
      }

      .story-label-left {
        text-align: center;
        padding-right: 0;
        padding-bottom: 24px;
      }

      .story-label-right {
        text-align: center;
        padding-left: 0;
        padding-top: 24px;
      }

      .story-text {
        padding: 0 24px 60px;
      }

      .info-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .info-section {
        padding: 60px 24px;
      }

      .note-section {
        grid-template-columns: 1fr;
        padding: 60px 24px;
      }

      .hero-date,
      .hero-venue {
        font-size: 9px;
        letter-spacing: 0.15em;
      }

      .gallery {
        gap: 8px;
      }

      .gallery-item {
        width: 140px;
        height: 180px;
      }
    }

    /* ── DECORATIVE LINE ──────────────────────────── */
    .ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin: 40px auto;
      max-width: 300px;
    }

    .ornament-line {
      height: 1px;
      flex: 1;
      background: linear-gradient(to right, transparent, var(--light-tan));
    }

    .ornament-line.right {
      background: linear-gradient(to left, transparent, var(--light-tan));
    }

    .ornament-diamond {
      width: 6px;
      height: 6px;
      background: var(--sepia);
      transform: rotate(45deg);
      opacity: 0.6;
    }

    /* Mobile polish overrides */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .hero {
        min-height: 540px;
        max-height: 50vh;
        padding: 72px 20px 40px;
      }

      .hero-date,
      .hero-venue {
        position: static;
        width: 100%;
        text-align: center;
        font-size: 10px;
        letter-spacing: 0.16em;
      }

      .hero-venue {
        margin-top: 8px;
      }

      .hero-names {
        margin-top: 24px;
        padding: 0 12px;
        font-size: 49px;
      }

      .hero-sub {
        padding: 0 12px;
        text-align: center;
        letter-spacing: 0.24em;
      }

      .hero-divider {
        height: 60px;
        margin-top: 24px;
      }

      .photo-strip {
        height: 60vh;
        min-height: 360px;
      }

      .gallery {
        height: auto;
        min-height: 0;
        padding: 36px 16px;
        gap: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
      }

      .gallery-item {
        width: min(58vw, 220px);
        height: min(76vw, 300px);
        scroll-snap-align: center;
      }

      .note-image {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
      }

      .note-image>img {
        width: 100%;
        height: auto;
        max-height: none;
      }

      .footer-date-line {
        letter-spacing: 0.15em;
        line-height: 1.6;
        padding: 0 8px;
      }

      .footer-photo {
        width: 100%;
        max-width: 100%;
        height: 150px;
        min-height: 180px;
      }

      section[style*="padding: 80px 48px"] {
        padding: 60px 24px !important;
      }

      section[style*="padding-top: 80px"] {
        padding-top: 60px !important;
      }
    }

    @media (max-width: 480px) {
      .program-item {
        gap: 14px;
      }

      .program-label {
        font-size: 15px;
      }

      .story-text,
      .reception-item p,
      .note-content p {
        font-size: 15px;
        line-height: 1.75;
      }
    }