    /* =========================================================
       RESET
    ========================================================= */

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: "Inter", sans-serif;
      background: #f7f1e7;
      color: #292622;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body.locked {
      overflow: hidden;
    }

    img {
      display: block;
      width: 100%;
      max-width: 100%;
    }

    button,
    a {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* =========================================================
       VARIABLES
    ========================================================= */

    :root {
      --ivory: #f7f1e7;
      --cream: #eee3d2;
      --champagne: #c8a86b;
      --gold: #b8924f;
      --soft-gold: #dfc99d;
      --peach: #e8c7b4;
      --sage: #9ba58d;
      --charcoal: #292622;
      --muted: #756f66;
      --white: #fffdf8;
      --border: rgba(94, 76, 48, 0.18);

      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Inter", Arial, sans-serif;
      --elegant: "Cormorant Garamond", Georgia, serif;
      --cap: "Marcellus", Georgia, serif;

      --container: 1180px;
    }

    /* =========================================================
       UTILITY
    ========================================================= */

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding: 110px 0;
      overflow: hidden;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      color: var(--gold);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 28px;
      height: 1px;
      background: var(--champagne);
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(42px, 6vw, 76px);
      font-weight: 400;
      line-height: 0.98;
      letter-spacing: -0.04em;
    }

    .section-description {
      max-width: 580px;
      margin: 22px auto 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.9;
    }

    .center {
      text-align: center;
    }

    /* =========================================================
       OPENING SCREEN
    ========================================================= */

    .opening {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: grid;
      place-items: center;
      padding: 25px;
      background:
        radial-gradient(
          circle at 50% 30%,
          rgba(223, 201, 157, 0.25),
          transparent 40%
        ),
        var(--ivory);
      transition:
        opacity 1s ease,
        visibility 1s ease,
        transform 1s ease;
    }

    .opening.opened {
      opacity: 0;
      visibility: hidden;
      transform: scale(1.04);
      pointer-events: none;
    }

    .opening-card {
      position: relative;
      width: min(100%, 520px);
      min-height: 650px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: 1px solid var(--border);
      background:
        linear-gradient(
          145deg,
          rgba(255,255,255,.65),
          rgba(238,227,210,.45)
        );
      box-shadow:
        0 30px 80px rgba(67, 53, 31, .10),
        inset 0 0 0 10px rgba(255,255,255,.18);
      overflow: hidden;
    }

    .opening-card::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(184, 146, 79, .38);
      pointer-events: none;
    }

    .opening-card::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      right: -120px;
      bottom: -120px;
      background: rgba(155, 165, 141, .18);
      filter: blur(5px);
    }

    .opening-content {
      position: relative;
      z-index: 2;
      padding: 45px 30px;
    }

    .monogram {
      width: 82px;
      height: 82px;
      display: grid;
      place-items: center;
      margin: 0 auto 34px;
      border: 1px solid var(--champagne);
      border-radius: 50%;
      color: var(--gold);
      font-family: var(--serif);
      font-size: 27px;
      position: relative;
    }

    .monogram::before,
    .monogram::after {
      content: "";
      position: absolute;
      width: 110px;
      height: 110px;
      border: 1px solid rgba(200, 168, 107, .28);
      border-radius: 50%;
    }

    .monogram::after {
      width: 125px;
      height: 125px;
      border-style: dashed;
      animation: rotate 25s linear infinite;
    }

    .opening-small {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: .3em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .opening-names {
      font-family: var(--serif);
      font-size: clamp(36px, 8vw, 56px);
      font-weight: 400;
      line-height: .95;
      color: var(--charcoal);
    }

    .opening-names span {
      display: block;
      font-family: var(--sans);
      color: var(--gold);
      font-size: 14px;
      font-weight: 300;
      letter-spacing: .3em;
      margin: 18px 0;
    }

    .opening-names .name {
      font-family: "Great Vibes", cursive;
      font-size: 1.15em;
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: .01em;
      color: #5c1826;
      display: block;
      padding: 2px 0;
    }

    .opening-date {
      margin: 30px 0;
      color: var(--muted);
      font-size: 13px;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .open-button {
      position: relative;
      min-width: 220px;
      padding: 17px 28px;
      background: var(--charcoal);
      color: var(--white);
      letter-spacing: .2em;
      font-size: 10px;
      font-weight: 600;
      transition: transform .35s ease, background .35s ease;
    }

    .open-button:hover {
      transform: translateY(-4px);
      background: var(--gold);
    }

    .open-button::after {
      content: "";
      position: absolute;
      inset: -6px;
      border: 1px solid rgba(184,146,79,.45);
      animation: pulse 2s infinite;
    }

    /* =========================================================
       FLORAL DECOR
    ========================================================= */

    .floral {
      position: absolute;
      width: 260px;
      height: 260px;
      opacity: .6;
      pointer-events: none;
    }

    .floral::before,
    .floral::after {
      content: "";
      position: absolute;
      border-radius: 50% 0 50% 50%;
      transform: rotate(35deg);
    }

    .floral::before {
      width: 160px;
      height: 160px;
      top: 20px;
      left: 40px;
      border: 1px solid var(--sage);
      opacity: .45;
    }

    .floral::after {
      width: 120px;
      height: 120px;
      top: 80px;
      left: 100px;
      border: 1px solid var(--gold);
      opacity: .4;
    }

    .floral-top-left {
      top: -70px;
      left: -80px;
      transform: rotate(-30deg);
    }

    .floral-bottom-right {
      right: -90px;
      bottom: -80px;
      transform: rotate(150deg);
    }

    /* =========================================================
       NAVBAR
    ========================================================= */

    .navbar {
      position: fixed;
      z-index: 500;
      top: 0;
      left: 0;
      width: 100%;
      padding: 22px 0;
      color: var(--white);
      transition:
        background .4s ease,
        color .4s ease,
        padding .4s ease,
        box-shadow .4s ease;
    }

    .navbar.scrolled {
      padding: 13px 0;
      background: rgba(247,241,231,.94);
      backdrop-filter: blur(14px);
      color: var(--charcoal);
      box-shadow: 0 10px 35px rgba(40,30,20,.08);
    }

    .nav-inner {
      width: min(calc(100% - 40px), 1300px);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: var(--serif);
      font-size: 25px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 35px;
    }

    .nav-links a {
      position: relative;
      font-size: 10px;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 0;
      height: 1px;
      background: currentColor;
      transition: width .3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .menu-button {
      display: none;
      width: 42px;
      height: 42px;
      background: transparent;
      color: currentColor;
      position: relative;
    }

    .menu-button span,
    .menu-button span::before,
    .menu-button span::after {
      content: "";
      position: absolute;
      width: 23px;
      height: 1px;
      left: 10px;
      background: currentColor;
      transition: .3s;
    }

    .menu-button span {
      top: 20px;
    }

    .menu-button span::before {
      left: 0;
      top: -7px;
    }

    .menu-button span::after {
      left: 0;
      top: 7px;
    }

    .mobile-menu {
      position: fixed;
      z-index: 450;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--ivory);
      transform: translateY(-100%);
      transition: transform .5s cubic-bezier(.77,0,.18,1);
    }

    .mobile-menu.active {
      transform: translateY(0);
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .mobile-menu-links a {
      font-family: var(--serif);
      font-size: 42px;
    }

    /* =========================================================
       HERO
    ========================================================= */

    .hero {
      min-height: 70vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        linear-gradient(
          180deg,
          rgba(30,25,20,.25),
          rgba(30,25,20,.1)
        ),
        #8f8777;
      color: white;
    }

    .hero-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: .9;
      filter: saturate(.75);
      animation: kenburns 24s ease-in-out infinite alternate;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          180deg,
          rgba(24,20,16,.5) 0%,
          rgba(24,20,16,.1) 40%,
          rgba(24,20,16,.55) 100%
        );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 150px 0 90px;
      text-align: center;
    }

    .hero-content .hero-eyebrow,
    .hero-content .hero-names,
    .hero-content .hero-date {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 1.1s ease,
        transform 1.1s cubic-bezier(.22, 1, .36, 1);
    }

    .hero-content > :first-child {
      transition-delay: .15s;
    }

    .hero-content > :nth-child(2) {
      transition-delay: .38s;
    }

    .hero-content > :nth-child(3) {
      transition-delay: .6s;
    }

    .hero-content > :nth-child(4) {
      transition-delay: .8s;
    }

    body:not(.locked) .hero-content .hero-eyebrow,
    body:not(.locked) .hero-content .hero-names,
    body:not(.locked) .hero-content .hero-date {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-eyebrow {
      font-family: var(--cap);
      font-size: 16px;
      letter-spacing: .4em;
      margin-bottom: 25px;
      text-transform: uppercase;
    }

    .hero-names {
      font-family: var(--elegant);
      font-size: clamp(44px, 7vw, 80px);
      line-height: .82;
      font-weight: 500;
      letter-spacing: -.01em;
    }

    .hero-names span {
      display: block;
      margin: 18px 0;
      font-family: var(--cap);
      font-size: 17px;
      font-weight: 400;
      letter-spacing: .55em;
      text-transform: uppercase;
    }

    .hero-date {
      margin-top: 40px;
      font-family: var(--cap);
      font-size: 16px;
      letter-spacing: .3em;
    }

    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 30px;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      font-size: 8px;
      letter-spacing: .25em;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: rgba(255,255,255,.7);
      animation: scrollLine 2s infinite;
    }

    /* =========================================================
       COUNTDOWN
    ========================================================= */

    .countdown-section {
      background: var(--ivory);
      border-bottom: 1px solid var(--border);
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 850px;
      margin: 60px auto 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .count-box {
      position: relative;
      padding: 30px 15px;
      text-align: center;
    }

    .count-box:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 25%;
      right: 0;
      width: 1px;
      height: 50%;
      background: var(--border);
    }

    .count-number {
      font-family: var(--serif);
      font-size: clamp(38px, 6vw, 65px);
      font-weight: 400;
    }

    .count-label {
      margin-top: 8px;
      color: var(--muted);
      font-size: 9px;
      letter-spacing: .25em;
      text-transform: uppercase;
    }

    /* =========================================================
       COUPLE
    ========================================================= */

    .couple {
      background: #f0eae0;
    }

    .couple-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 950px;
      margin: 70px auto 0;
    }

    .person {
      text-align: center;
    }

    .portrait {
      position: relative;
      width: min(100%, 340px);
      aspect-ratio: 3 / 4;
      margin: auto;
      overflow: hidden;
      border: 1px solid rgba(184,146,79,.45);
      padding: 9px;
    }

    .portrait::before {
      content: "";
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255,255,255,.65);
      z-index: 2;
      pointer-events: none;
    }

    .portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.78);
      transition: transform .7s ease;
    }

    .person:hover .portrait img {
      transform: scale(1.04);
    }

    .person-name {
      margin-top: 30px;
      font-family: var(--serif);
      font-size: 38px;
      font-weight: 400;
    }

    .person-role {
      margin-top: 8px;
      color: var(--gold);
      font-size: 9px;
      letter-spacing: .28em;
      text-transform: uppercase;
    }

    .person-description {
      max-width: 300px;
      margin: 18px auto 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.8;
    }

    /* =========================================================
       COUPLE PHOTO
    ========================================================= */

    .couple-photo-section {
      background: var(--ivory);
      border-bottom: 1px solid var(--border);
    }

    .couple-photo-frame {
      max-width: 720px;
      margin: 50px auto 0;
    }

    .couple-photo-border {
      position: relative;
      border: 1px solid rgba(184,146,79,.45);
      padding: 9px;
      overflow: hidden;
    }

    .couple-photo-border::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(255,255,255,.65);
      z-index: 2;
      pointer-events: none;
    }

    .couple-photo-img {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center;
      filter: saturate(.78);
      transition: transform .7s ease;
    }

    .couple-photo-frame:hover .couple-photo-img {
      transform: scale(1.03);
    }

    /* =========================================================
       EVENTS
    ========================================================= */

    .events {
      background: var(--ivory);
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      max-width: 1050px;
      margin: 70px auto 0;
    }

    .event-card {
      position: relative;
      padding: 45px 35px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.35);
      transition:
        transform .4s ease,
        box-shadow .4s ease;
    }

    .event-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(57,44,26,.09);
    }

    .event-number {
      color: var(--champagne);
      font-family: var(--serif);
      font-size: 20px;
    }

    .event-title {
      margin: 30px 0 22px;
      font-family: var(--serif);
      font-size: 42px;
      font-weight: 400;
    }

    .event-date {
      color: var(--gold);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    .event-details {
      margin-top: 28px;
      padding-top: 25px;
      border-top: 1px solid var(--border);
    }

    .event-detail {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 20px;
      padding: 10px 0;
      font-size: 12px;
    }

    .event-detail span:first-child {
      flex-shrink: 0;
      width: 80px;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .event-detail span:last-child {
      text-align: right;
      flex: 1;
    }

    .event-description {
      margin-top: 20px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.8;
    }

    .map-button {
      display: inline-flex;
      align-items: center;
      margin-top: 28px;
      padding: 13px 20px;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 9px;
      letter-spacing: .2em;
      text-transform: uppercase;
      transition: .3s;
      min-height: 44px;
    }

    .map-button:hover {
      background: var(--gold);
      color: white;
    }

    /* =========================================================
       VENUE
    ========================================================= */

    .venue {
      background: #e7dfd0;
    }
    .venue-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      max-width: 1100px;
      margin: 70px auto 0;
    }

    .venue-image {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border: 1px solid rgba(184,146,79,.4);
      padding: 9px;
    }

    .venue-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.7);
    }

    .venue-content {
      padding: 20px;
    }

    .venue-name {
      margin: 20px 0;
      font-family: var(--serif);
      font-size: clamp(42px, 5vw, 62px);
      font-weight: 400;
      line-height: 1;
    }

    .venue-address {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.9;
    }

    .venue-meta {
      margin-top: 30px;
      padding: 25px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .venue-meta p {
      margin: 8px 0;
      font-size: 12px;
    }

    .venue-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .venue-button {
      padding: 14px 22px;
      background: var(--charcoal);
      color: white;
      font-size: 9px;
      letter-spacing: .2em;
      text-transform: uppercase;
      transition: .3s;
    }

    .venue-button:hover {
      background: var(--gold);
      transform: translateY(-3px);
    }

    .venue-button.secondary {
      background: transparent;
      color: var(--charcoal);
      border: 1px solid var(--charcoal);
    }

    .venue-button.secondary:hover {
      background: var(--charcoal);
      color: white;
    }

    /* =========================================================
       QUOTE
    ========================================================= */

    .quote {
      padding: 150px 20px;
      background: var(--charcoal);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .quote::before {
      content: "“";
      position: absolute;
      left: 50%;
      top: 20px;
      transform: translateX(-50%);
      color: rgba(200,168,107,.18);
      font-family: var(--serif);
      font-size: 300px;
      line-height: 1;
    }

    .quote-text {
      position: relative;
      max-width: 800px;
      margin: auto;
      font-family: var(--serif);
      font-size: clamp(22px, 3.5vw, 38px);
      line-height: 1.3;
      font-weight: 400;
    }

    .quote-author {
      margin-top: 30px;
      color: var(--soft-gold);
      font-size: 9px;
      letter-spacing: .3em;
      text-transform: uppercase;
    }

    /* =========================================================
       FOOTER
    ========================================================= */

    footer {
      padding: 80px 20px 45px;
      background: #22201d;
      color: white;
      text-align: center;
    }

    .footer-names {
      font-family: var(--serif);
      font-size: clamp(45px, 8vw, 80px);
      font-weight: 400;
    }

    .footer-date {
      margin-top: 18px;
      color: var(--soft-gold);
      font-size: 10px;
      letter-spacing: .3em;
      text-transform: uppercase;
    }

    .footer-message {
      max-width: 450px;
      margin: 35px auto 0;
      color: rgba(255,255,255,.58);
      font-size: 12px;
      line-height: 1.9;
    }

    .footer-message-next {
      margin-top: 18px;
    }

    .footer-line {
      width: 70px;
      height: 1px;
      margin: 50px auto 25px;
      background: var(--champagne);
    }

    .footer-copy {
      color: rgba(255,255,255,.35);
      font-size: 8px;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    /* =========================================================
       FALLING FLOWERS + HEARTS
    ========================================================= */

    .petals,
    .particles {
      position: fixed;
      inset: 0;
      z-index: 10000;
      pointer-events: none;
      overflow: hidden;
    }

    .petal {
      position: absolute;
      top: -30px;
      border-radius: 100% 0 100% 0;
      animation-name: fallPetal;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    .heart {
      position: absolute;
      top: -30px;
      font-family: Georgia, "Times New Roman", serif;
      line-height: 1;
      animation-name: fallHeart;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(198,208,190,.6);
      animation: floatParticle 5s ease-in-out infinite;
    }

    /* =========================================================
       REVEAL ANIMATIONS
    ========================================================= */

    .reveal {
      opacity: 0;
      transform: translateY(35px);
      transition:
        opacity .9s ease,
        transform .9s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 {
      transition-delay: .1s;
    }

    .delay-2 {
      transition-delay: .2s;
    }

    .delay-3 {
      transition-delay: .3s;
    }

    /* =========================================================
       ANIMATIONS
    ========================================================= */

    @keyframes kenburns {
      0% {
        transform: scale(1) translateY(0);
      }

      100% {
        transform: scale(1.12) translateY(-12px);
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: .7;
      }

      50% {
        transform: scale(1.03);
        opacity: .2;
      }
    }

    @keyframes rotate {
      to {
        transform: rotate(395deg);
      }
    }

    @keyframes scrollLine {
      0% {
        transform: scaleY(0);
        transform-origin: top;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
      }

      51% {
        transform-origin: bottom;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }

    @keyframes fallPetal {
      0% {
        transform: translate3d(0, -10vh, 0) rotate(0deg);
      }

      25% {
        transform: translate3d(-30px, 28vh, 0) rotate(120deg);
      }

      50% {
        transform: translate3d(24px, 60vh, 0) rotate(240deg);
      }

      75% {
        transform: translate3d(-18px, 90vh, 0) rotate(340deg);
      }

      100% {
        transform: translate3d(20px, 115vh, 0) rotate(500deg);
      }
    }

    @keyframes fallHeart {
      0% {
        transform: translate3d(0, -10vh, 0) rotate(-8deg) scale(.9);
      }

      25% {
        transform: translate3d(26px, 30vh, 0) rotate(10deg) scale(1);
      }

      50% {
        transform: translate3d(-20px, 62vh, 0) rotate(-6deg) scale(1.05);
      }

      75% {
        transform: translate3d(16px, 92vh, 0) rotate(8deg) scale(1);
      }

      100% {
        transform: translate3d(-14px, 115vh, 0) rotate(-4deg) scale(.92);
      }
    }

    @keyframes floatParticle {
      0%, 100% {
        transform: translateY(0);
        opacity: .2;
      }

      50% {
        transform: translateY(-25px);
        opacity: .8;
      }
    }

    /* =========================================================
       RESPONSIVE
    ========================================================= */

    @media (max-width: 800px) {

      .section {
        padding: 85px 0;
      }

      .nav-links {
        display: none;
      }

      .menu-button {
        display: block;
      }

      .couple-grid,
      .events-grid,
      .venue-grid {
        grid-template-columns: 1fr;
      }

      .couple-grid {
        gap: 70px;
      }

      .events-grid {
        gap: 18px;
      }

      .venue-grid {
        gap: 35px;
      }

      .venue-content {
        padding: 0;
      }

      .hero-content {
        padding-top: 130px;
      }

      .hero-names {
        font-size: clamp(56px, 14vw, 92px);
      }

      .opening-card {
        min-height: 600px;
      }
    }

    @media (max-width: 550px) {

      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .section {
        padding: 75px 0;
      }

      .opening-card {
        min-height: auto;
        padding: 0;
      }

      .opening-content {
        padding: 40px 20px;
      }

      .opening-names {
        font-size: clamp(36px, 11vw, 49px);
      }

      .opening-names span {
        margin: 14px 0;
        font-size: 12px;
      }

      .opening-date {
        margin: 22px 0;
        font-size: 10px;
      }

      .monogram {
        width: 65px;
        height: 65px;
        font-size: 22px;
        margin-bottom: 28px;
      }

      .countdown {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-content {
        padding: 110px 16px 70px;
      }

      .hero-names {
        font-size: clamp(46px, 15vw, 64px);
        letter-spacing: -.005em;
      }

      .hero-names span {
        margin: 12px 0;
        font-size: 14px;
        letter-spacing: .4em;
      }

      .hero-eyebrow {
        font-size: 12px;
        letter-spacing: .25em;
      }

      .hero-date {
        font-size: 12px;
        letter-spacing: .15em;
        line-height: 1.8;
      }

      .scroll-indicator {
        bottom: 18px;
      }

      .scroll-line {
        height: 35px;
      }

      .count-box:nth-child(2)::after {
        display: none;
      }

      .count-box:nth-child(1),
      .count-box:nth-child(2) {
        border-bottom: 1px solid var(--border);
      }

      .count-number {
        font-size: clamp(30px, 8vw, 50px);
      }

      .count-label {
        font-size: 8px;
      }

      .event-card {
        padding: 30px 22px;
      }

      .event-number {
        font-size: 16px;
      }

      .event-title {
        font-size: clamp(28px, 7vw, 36px);
        margin: 22px 0 18px;
      }

      .event-detail {
        flex-direction: column;
        gap: 3px;
      }

      .event-detail span:first-child {
        width: auto;
        font-size: 11px;
      }

      .event-detail span:last-child {
        text-align: left;
        font-size: 12px;
      }

      .event-description {
        font-size: 11px;
      }

      .map-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }

      .venue-name {
        font-size: clamp(32px, 8vw, 50px);
        margin: 15px 0;
      }

      .venue-address {
        font-size: 12px;
      }

      .venue-meta p {
        font-size: 11px;
      }

      .venue-buttons {
        flex-direction: column;
      }

      .venue-button {
        text-align: center;
        width: 100%;
        padding: 15px 20px;
      }

      .venue-image {
        aspect-ratio: 16 / 10;
      }

      .quote {
        padding: 100px 20px;
      }

      .quote-text {
        font-size: clamp(22px, 6vw, 40px);
        line-height: 1.35;
      }

      .quote-author {
        margin-top: 22px;
        font-size: 8px;
      }

      .quote::before {
        font-size: 200px;
        top: 15px;
      }

      footer {
        padding: 60px 20px 35px;
      }

      .footer-names {
        font-size: clamp(36px, 10vw, 60px);
      }

      .footer-date {
        font-size: 9px;
        letter-spacing: .22em;
      }

      .footer-message {
        font-size: 11px;
        line-height: 1.8;
        margin-top: 28px;
      }

      .footer-line {
        margin: 40px auto 20px;
      }

      .footer-copy {
        font-size: 7px;
      }

      .eyebrow {
        font-size: 9px;
        gap: 10px;
      }

      .eyebrow::before,
      .eyebrow::after {
        width: 20px;
      }

      .section-description {
        font-size: 13px;
      }
    }

    @media (max-width: 380px) {

      .container {
        width: calc(100% - 20px);
      }

      .section {
        padding: 65px 0;
      }

      .opening {
        padding: 15px;
      }

      .opening-content {
        padding: 32px 16px;
      }

      .opening-names {
        font-size: clamp(30px, 10vw, 40px);
      }

      .monogram {
        width: 58px;
        height: 58px;
        font-size: 20px;
        margin-bottom: 22px;
      }

      .open-button {
        min-width: 190px;
        padding: 15px 24px;
        font-size: 9px;
      }

      .hero {
        min-height: 65vh;
      }

      .hero-content {
        padding: 100px 14px 60px;
      }

      .hero-names {
        font-size: clamp(40px, 14vw, 56px);
      }

      .hero-names span {
        font-size: 12px;
        letter-spacing: .35em;
      }

      .hero-eyebrow {
        font-size: 12px;
        letter-spacing: .2em;
      }

      .hero-date {
        font-size: 12px;
        letter-spacing: .12em;
      }

      .countdown {
        max-width: 100%;
      }

      .count-box {
        padding: 22px 10px;
      }

      .count-number {
        font-size: clamp(26px, 8vw, 40px);
      }

      .event-card {
        padding: 26px 18px;
      }

      .event-title {
        font-size: clamp(24px, 7vw, 30px);
      }

      .venue-buttons {
        gap: 10px;
      }

      .quote {
        padding: 80px 16px;
      }

      .quote-text {
        font-size: clamp(20px, 5.5vw, 32px);
      }

      .quote::before {
        font-size: 160px;
      }

      .footer-names {
        font-size: clamp(30px, 9vw, 50px);
      }

      .footer-message {
        font-size: 10px;
      }

      .nav-logo {
        font-size: 22px;
      }

      .mobile-menu-links a {
        font-size: 32px;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
