/* =========================
   BASE
========================= */

:root {
  --white: #ffffff;
  --ivory: #fcfaf6;
  --beige: #f3ecdf;
  --beige-2: #e8dcc9;
  --sand: #d9c5a7;
  --gold: #b99558;
  --gold-light: #d5bb86;
  --gold-dark: #8f6c35;
  --ink: #2e2a24;
  --ink-soft: #6c645a;
  --line: rgba(143, 108, 53, 0.18);
  --shadow: 0 25px 80px rgba(76, 62, 43, 0.12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Noto Kufi Arabic", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.container {
  width: min(1160px, calc(100% - 42px));
  margin-inline: auto;
}

.narrow {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .026;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.95'/%3E%3C/svg%3E");
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  transition: .35s ease;
}

.site-header.scrolled {
  background: rgba(252, 250, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Aref Ruqaa", serif;
  font-size: 24px;
  font-weight: 700;
  z-index: 102;
}

.brand-mark {
  line-height: 1;
}

.brand-divider {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  color: var(--ink-soft);
}

.main-nav a {
  position: relative;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.main-nav a:hover {
  color: var(--gold-dark);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  right: 11px;
  transition: transform .25s ease, top .25s ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle.active span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 70px;
  background:
    radial-gradient(circle at 84% 18%, rgba(213, 187, 134, 0.15), transparent 25%),
    radial-gradient(circle at 12% 76%, rgba(232, 220, 201, 0.5), transparent 30%),
    linear-gradient(135deg, var(--white) 0%, var(--ivory) 52%, #f8f2e7 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.glow-one {
  width: 500px;
  height: 500px;
  top: -220px;
  left: -190px;
  background: rgba(185, 149, 88, 0.10);
}

.glow-two {
  width: 420px;
  height: 420px;
  bottom: -220px;
  right: -160px;
  background: rgba(217, 197, 167, 0.24);
}

.gold-line {
  position: absolute;
  width: 1px;
  height: 210px;
  background: linear-gradient(180deg, transparent, rgba(185, 149, 88, .65), transparent);
}

.gold-line-left {
  left: 7%;
  top: 20%;
}

.gold-line-right {
  right: 7%;
  bottom: 14%;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold-dark);
  font-weight: 600;
}

.bismillah {
  font-family: "Aref Ruqaa", serif;
  font-size: 21px;
  color: var(--ink);
  margin: 24px 0 8px;
}

.verse {
  font-family: "Aref Ruqaa", serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 2;
  color: #62594e;
  max-width: 610px;
  margin: 0 0 26px;
}

.hero-names {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Aref Ruqaa", serif;
  font-size: clamp(74px, 8vw, 122px);
  line-height: .9;
  letter-spacing: -3px;
  margin: 12px 0 24px;
}

.hero-names b {
  font-family: Georgia, serif;
  font-size: .33em;
  font-weight: 400;
  color: var(--gold);
  transform: translateY(8px);
}

.hero-subtitle {
  max-width: 570px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  width: fit-content;
  padding: 16px 20px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(185, 149, 88, .18);
  box-shadow: 0 12px 35px rgba(96, 76, 47, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
}

.hero-meta > div:not(.hero-meta-separator) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-meta span {
  color: #9a8b79;
  font-size: 9px;
}

.hero-meta strong {
  font-size: 12px;
  font-weight: 500;
}

.hero-meta-separator {
  width: 1px;
  height: 32px;
  background: var(--line);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--white);
  background: linear-gradient(135deg, #a57d3d, #c6a56c);
  box-shadow: 0 12px 30px rgba(165, 125, 61, .22);
}

.btn-gold:hover {
  box-shadow: 0 16px 35px rgba(165, 125, 61, .30);
}

.btn-light {
  color: var(--gold-dark);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(185, 149, 88, .23);
}

.hero-art {
  min-height: 610px;
  position: relative;
  display: grid;
  place-items: center;
}

.monogram-card {
  width: min(430px, 82%);
  aspect-ratio: .78;
  padding: 1px;
  border-radius: 220px 220px 40px 40px;
  background: linear-gradient(145deg, #d7bb86, #9e7b44 52%, #e4d2b1);
  box-shadow: 0 40px 95px rgba(92, 73, 44, .18);
  position: relative;
  z-index: 2;
}

.monogram-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .82), transparent 20%),
    linear-gradient(145deg, #fbf8f2, #eee1cf 52%, #dac6a7);
  border: 9px solid rgba(255, 255, 255, .62);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.monogram-inner::before,
.monogram-inner::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(185, 149, 88, .18);
  border-radius: 50%;
}

.monogram-inner::before {
  width: 330px;
  height: 330px;
}

.monogram-inner::after {
  width: 245px;
  height: 245px;
}

.mini-date,
.mini-caption {
  z-index: 1;
  font-family: Georgia, serif;
  color: rgba(109, 81, 40, .66);
  font-size: 10px;
  letter-spacing: 3px;
}

.mini-date {
  margin-bottom: 44px;
}

.mini-caption {
  margin-top: 44px;
}

.monogram {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Aref Ruqaa", serif;
  font-size: 100px;
  line-height: 1;
  color: #7a5c30;
  text-shadow: 0 5px 24px rgba(115, 86, 43, .12);
}

.monogram i {
  display: block;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(185, 149, 88, .20);
}

.halo-one {
  width: 530px;
  height: 530px;
}

.halo-two {
  width: 600px;
  height: 600px;
  border-color: rgba(185, 149, 88, .10);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(185, 149, 88, .18);
  box-shadow: 0 12px 40px rgba(66, 52, 32, .08);
  border-radius: 999px;
  color: #846637;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 2px;
}

.chip-one {
  top: 21%;
  right: -2%;
}

.chip-two {
  bottom: 17%;
  left: -3%;
}

.scroll-indicator {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 52px;
  border: 1px solid rgba(143, 108, 53, .35);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 3px;
  height: 9px;
  border-radius: 10px;
  background: var(--gold);
  animation: scrollDot 1.7s infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(23px); }
}

/* =========================
   COMMON SECTIONS
========================= */

.section {
  padding: 125px 0;
}

.section h2 {
  font-family: "Aref Ruqaa", serif;
  font-size: clamp(45px, 6vw, 72px);
  line-height: 1.12;
  font-weight: 400;
  margin: 10px 0 0;
}

.section-label.light {
  color: var(--gold-light);
}

.lead {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.2;
  max-width: 670px;
  margin: 0 auto;
}

.ornament {
  width: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 28px;
  color: var(--gold);
}

.ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.ornament i {
  font-style: normal;
  font-size: 11px;
}

/* =========================
   STORY / DETAILS
========================= */

.story-section {
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 65px;
}

.info-card {
  min-height: 260px;
  position: relative;
  padding: 35px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(249, 245, 238, .96));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 18px 55px rgba(77, 62, 42, .06);
  transition: transform .35s var(--ease), box-shadow .35s ease;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(77, 62, 42, .10);
}

.info-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(185, 149, 88, .13);
  border-radius: 50%;
  left: -35px;
  bottom: -40px;
}

.card-number {
  position: absolute;
  top: 20px;
  left: 22px;
  color: rgba(143, 108, 53, .38);
  font-family: Georgia, serif;
  font-size: 11px;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border: 1px solid rgba(185, 149, 88, .25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
}

.card-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card > span:not(.card-number) {
  color: #a28b68;
  font-size: 10px;
}

.info-card h3 {
  font-family: "Aref Ruqaa", serif;
  font-size: 29px;
  margin: 8px 0 3px;
  font-weight: 400;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

/* =========================
   COUNTDOWN
========================= */

.countdown-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0 135px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(213, 187, 134, .13), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(185, 149, 88, .12), transparent 24%),
    linear-gradient(135deg, #302a21, #1e1b17 58%, #28231c);
}

.countdown-wrap {
  position: relative;
  z-index: 2;
}

.countdown-heading {
  text-align: center;
}

.countdown-heading h2 {
  font-family: "Aref Ruqaa", serif;
  font-weight: 400;
  font-size: clamp(50px, 6.5vw, 80px);
  margin: 10px 0 5px;
}

.countdown-heading p {
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: #d4c5aa;
}

.countdown-grid {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 930px;
  margin: 54px auto 0;
}

.time-card {
  min-height: 185px;
  border: 1px solid rgba(213, 187, 134, .22);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.time-card strong {
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -3px;
}

.time-card span {
  color: #cbbda7;
  font-size: 10px;
  margin-top: 7px;
}

.countdown-message {
  min-height: 22px;
  text-align: center;
  margin: 28px 0 0;
  color: #ddceb4;
  font-size: 12px;
}

.countdown-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(213, 187, 134, .10);
}

.orbit-one {
  width: 650px;
  height: 650px;
  right: -370px;
  top: -320px;
}

.orbit-two {
  width: 500px;
  height: 500px;
  left: -270px;
  bottom: -270px;
}

/* =========================
   LOCATION
========================= */

.location-section {
  background: var(--beige);
}

.location-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 86px;
  align-items: center;
}

.location-copy h2 em {
  color: var(--gold-dark);
  font-style: normal;
}

.location-copy > p {
  max-width: 560px;
  color: var(--ink-soft);
  line-height: 2.1;
  font-size: 13px;
  margin: 24px 0 32px;
}

.location-details {
  border-top: 1px solid rgba(143, 108, 53, .20);
  margin-bottom: 30px;
}

.location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(143, 108, 53, .20);
}

.location-row span {
  color: #967f5d;
  font-size: 10px;
}

.location-row strong {
  font-size: 12px;
  font-weight: 500;
}

.location-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.venue-art {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.venue-frame {
  width: min(390px, 82%);
  aspect-ratio: .76;
  border-radius: 200px 200px 28px 28px;
  padding: 1px;
  background: linear-gradient(160deg, #c7a76d, #886631, #e2cc9e);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.venue-inner {
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.2), transparent 25%),
    linear-gradient(145deg, #f8f2e7, #e4d4bd);
  border: 8px solid rgba(255,255,255,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.venue-topline,
.venue-month,
.venue-year {
  font-family: Georgia, serif;
  letter-spacing: 3px;
  color: #896b3f;
}

.venue-topline {
  font-size: 11px;
  margin-bottom: 28px;
}

.venue-date {
  font-family: Georgia, serif;
  font-size: 106px;
  line-height: .88;
  color: #72552f;
}

.venue-month {
  font-size: 13px;
  margin-top: 11px;
}

.venue-year {
  font-size: 10px;
  margin-top: 8px;
}

.venue-divider {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b8955d, transparent);
  margin: 30px 0 20px;
}

.venue-names {
  font-family: "Aref Ruqaa", serif;
  font-size: 35px;
  color: #765a33;
}

.venue-ring {
  position: absolute;
  border: 1px solid rgba(143, 108, 53, .18);
  border-radius: 50%;
}

.ring-a {
  width: 480px;
  height: 480px;
}

.ring-b {
  width: 560px;
  height: 560px;
  border-color: rgba(143, 108, 53, .10);
}

/* =========================
   CLOSING / FOOTER
========================= */

.closing-section {
  background: var(--white);
  text-align: center;
}

.closing-mark {
  width: 94px;
  height: 94px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(185, 149, 88, .26);
  color: var(--gold-dark);
  font-family: "Aref Ruqaa", serif;
  font-size: 24px;
  background: linear-gradient(145deg, #fff, #faf4ea);
}

.closing-section h2 {
  margin-bottom: 22px;
}

.signature {
  margin-top: 34px;
  font-family: "Aref Ruqaa", serif;
  font-size: 40px;
  color: var(--gold-dark);
}

.site-footer {
  background: #faf6ef;
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 78px;
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: #9a8260;
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .hero-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .verse,
  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-names {
    justify-content: center;
  }

  .hero-meta {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    min-height: 530px;
  }

  .monogram-card {
    width: min(390px, 74vw);
  }

  .location-copy {
    text-align: center;
  }

  .location-copy > p {
    margin-inline: auto;
  }

  .venue-art {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 8px 0;
  }

  .nav-shell {
    height: 60px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(252, 250, 246, .98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    font-family: "Aref Ruqaa", serif;
    font-size: 34px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .3s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 76px;
  }

  .hero-layout {
    gap: 42px;
  }

  .bismillah {
    font-size: 18px;
  }

  .verse {
    font-size: 17px;
    line-height: 1.95;
  }

  .hero-names {
    font-size: 76px;
    gap: 10px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-meta {
    width: 100%;
    justify-content: center;
    gap: 16px;
    padding: 14px;
  }

  .hero-meta strong {
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-art {
    min-height: 430px;
  }

  .monogram-card {
    width: min(320px, 82vw);
  }

  .halo-one {
    width: 390px;
    height: 390px;
  }

  .halo-two {
    width: 430px;
    height: 430px;
  }

  .monogram {
    font-size: 78px;
  }

  .monogram i {
    height: 64px;
  }

  .mini-date {
    margin-bottom: 30px;
  }

  .mini-caption {
    margin-top: 30px;
  }

  .chip-one {
    right: 0;
  }

  .chip-two {
    left: 0;
  }

  .scroll-indicator {
    display: none;
  }

  .section,
  .countdown-section {
    padding: 90px 0;
  }

  .section h2,
  .countdown-heading h2 {
    font-size: 47px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .info-card {
    min-height: 220px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 40px;
  }

  .time-card {
    min-height: 135px;
    border-radius: 21px;
  }

  .time-card strong {
    font-size: 49px;
  }

  .location-row {
    text-align: right;
  }

  .venue-art {
    min-height: 440px;
  }

  .venue-frame {
    width: min(320px, 82vw);
  }

  .venue-date {
    font-size: 82px;
  }

  .ring-a {
    width: 370px;
    height: 370px;
  }

  .ring-b {
    width: 420px;
    height: 420px;
  }

  .footer-inner {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
  }
}

@media (max-width: 420px) {
  .hero-names {
    font-size: 66px;
  }

  .hero-meta {
    align-items: stretch;
  }

  .hero-meta strong {
    font-size: 10px;
  }

  .hero-meta-separator {
    height: 38px;
  }

  .hero-art {
    min-height: 390px;
  }

  .monogram-card {
    width: 285px;
  }

  .monogram {
    font-size: 68px;
  }

  .floating-chip {
    font-size: 8px;
  }

  .section h2,
  .countdown-heading h2 {
    font-size: 42px;
  }

  .time-card {
    min-height: 122px;
  }

  .time-card strong {
    font-size: 43px;
  }

  .venue-art {
    min-height: 400px;
  }

  .venue-frame {
    width: 285px;
  }

  .ring-a {
    width: 330px;
    height: 330px;
  }

  .ring-b {
    width: 370px;
    height: 370px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================
   SAVE THE DATE
========================= */

.save-date-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(213, 187, 134, .18), transparent 24%),
    radial-gradient(circle at 14% 82%, rgba(232, 220, 201, .55), transparent 28%),
    linear-gradient(135deg, #fffdfa 0%, #f7f0e5 100%);
}

.save-date-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 88px;
  align-items: center;
}

.save-date-copy h2 em {
  color: var(--gold-dark);
  font-style: normal;
}

.save-date-copy > p {
  max-width: 540px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2.15;
}

.save-date-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.save-image-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.save-image-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.save-image-btn.is-saving {
  pointer-events: none;
  opacity: .74;
}

.save-hint {
  color: #9a8565;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 1.6px;
}

.save-date-preview-wrap {
  display: grid;
  place-items: center;
  padding: 20px 0;
}

.save-date-preview {
  width: min(455px, 100%);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255,255,255,.95), transparent 22%),
    linear-gradient(145deg, #fffdf8 0%, #f2e7d6 58%, #eadac1 100%);
  box-shadow: 0 35px 90px rgba(85, 65, 38, .16);
  isolation: isolate;
}

.save-date-preview::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(161, 124, 63, .34);
  z-index: 2;
  pointer-events: none;
}

.save-date-preview::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(185, 149, 88, .14);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  z-index: 0;
}

.save-card-border {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(185, 149, 88, .15);
  z-index: 2;
  pointer-events: none;
}

.save-card-corner {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(185, 149, 88, .22);
  border-radius: 50%;
  z-index: 0;
}

.corner-top-right {
  top: -105px;
  right: -105px;
}

.corner-bottom-left {
  bottom: -110px;
  left: -100px;
}

.save-card-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 58px 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.save-card-kicker {
  direction: ltr;
  color: #9c7740;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 4.8px;
}

.save-card-small {
  margin-top: 24px;
  color: #87735a;
  font-family: "Aref Ruqaa", serif;
  font-size: 14px;
}

.save-card-monogram {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 30px 0 12px;
  color: #896532;
  font-family: "Aref Ruqaa", serif;
  font-size: 76px;
  line-height: 1;
}

.save-card-monogram i {
  width: 1px;
  height: 72px;
  background: linear-gradient(180deg, transparent, #b99558, transparent);
}

.save-card-names {
  font-family: "Aref Ruqaa", serif;
  font-size: 42px;
  color: #6f5631;
  line-height: 1.1;
}

.save-card-content > p {
  max-width: 290px;
  margin: 13px 0 27px;
  color: #776b5d;
  font-size: 9px;
  line-height: 2;
}

.save-card-date {
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #7a5b2e;
}

.save-card-date strong {
  padding-right: 15px;
  border-right: 1px solid rgba(185,149,88,.34);
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: .9;
}

.save-card-date > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.save-card-date span,
.save-card-date b {
  font-family: Georgia, serif;
  letter-spacing: 2px;
}

.save-card-date span {
  font-size: 10px;
}

.save-card-date b {
  font-size: 13px;
  font-weight: 400;
}

.save-card-location {
  margin-top: auto;
  padding-top: 25px;
  color: #8b7557;
  font-size: 8px;
  letter-spacing: .2px;
}

.save-date-glow {
  position: absolute;
  border: 1px solid rgba(185,149,88,.12);
  border-radius: 50%;
}

.save-date-glow-one {
  width: 520px;
  height: 520px;
  left: -300px;
  top: -220px;
}

.save-date-glow-two {
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -190px;
}

@media (max-width: 980px) {
  .save-date-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .save-date-copy {
    text-align: center;
  }

  .save-date-copy > p {
    margin-inline: auto;
  }

  .save-date-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .save-date-preview-wrap {
    padding-bottom: 0;
  }

  .save-date-preview {
    width: min(390px, 92vw);
  }

  .save-date-actions {
    flex-direction: column;
  }

  .save-image-btn {
    width: min(390px, 100%);
  }

  .save-card-content {
    padding: 45px 34px 38px;
  }

  .save-card-monogram {
    font-size: 66px;
    margin-top: 22px;
  }

  .save-card-names {
    font-size: 38px;
  }

  .save-card-date strong {
    font-size: 48px;
  }
}
