:root {
  --bg: #14110f;
  --bg-soft: #1e1a17;
  --panel: #241f1b;
  --panel-2: #efe8dc;
  --text: #f7f0e4;
  --muted: #cdbfaa;
  --ink: #1f1a16;
  --gold: #d7b36f;
  --gold-light: #f3dfae;
  --line: rgba(215, 179, 111, 0.28);
  --white-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 179, 111, 0.20), transparent 34rem),
    linear-gradient(180deg, #100e0d 0%, var(--bg) 52%, #0f0d0c 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(20, 17, 15, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--white-line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-monogram {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  color: var(--gold-light);
  line-height: 0.88;
  white-space: nowrap;
}

.brand-wordmark span {
  font-family: "Cormorant Garamond", Didot, "Bodoni 72", "Bodoni MT", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-wordmark span:last-child {
  font-size: 1.02rem;
  letter-spacing: 0.34em;
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a {
  transition: color 180ms ease, border-color 180ms ease;
}

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

.nav-cta {
  border: 1px solid var(--line);
  padding: 11px 16px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.section {
  padding: clamp(78px, 9vw, 132px) clamp(20px, 6vw, 84px);
}

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 15% 8% auto auto;
  width: 28vw;
  height: 28vw;
  border: 1px solid var(--line);
  border-radius: 999px;
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 13% 10%;
  width: 17vw;
  height: 17vw;
  border: 1px solid rgba(243, 223, 174, 0.14);
  border-radius: 999px;
}

.hero-content {
  max-width: 950px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 650;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

h1 {
  font-size: clamp(2.9rem, 6.5vw, 6.15rem);
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.55rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17110b;
  box-shadow: 0 18px 44px rgba(215, 179, 111, 0.16);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--gold-light);
}

.intro,
.feature-section,
.preview-section {
  max-width: 1280px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
  margin-bottom: 54px;
}

.split p,
.event-grid p,
.contact-card p,
.preview-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.feature-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.card-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  display: block;
  margin-bottom: 26px;
}

.card p,
.feature-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.preview-section {
  padding-top: 36px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.gallery-mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(243, 223, 174, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.mockup-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.mockup-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(243, 223, 174, 0.42);
}

.mockup-header,
.mockup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mockup-header strong {
  display: block;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.mockup-header small {
  color: var(--muted);
}

.qr-mark {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 92px;
  gap: 12px;
  margin: 24px 0;
}

.photo-tile {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(243,223,174,0.30), rgba(255,255,255,0.06)),
    radial-gradient(circle at 70% 30%, rgba(215,179,111,0.28), transparent 55%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.mockup-footer span {
  padding: 11px 13px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
}

.dark-panel {
  margin: 0 clamp(16px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.12), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: clamp(36px, 7vw, 100px);
  max-width: 1180px;
  margin: 0 auto;
}

.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.event-list li {
  padding: 18px 20px;
  border: 1px solid var(--white-line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255,255,255,0.035);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quote {
  text-align: center;
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.quote p {
  max-width: 860px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--gold-light);
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.contact {
  padding-top: 40px;
}

.contact-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(42px, 8vw, 92px);
  border-radius: calc(var(--radius) + 20px);
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 223, 174, 0.22), transparent 34rem),
    var(--panel-2);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(31, 26, 22, 0.72);
}

.contact-card .eyebrow {
  color: #8f6b2c;
}

.contact-card .button.secondary {
  color: var(--ink);
  border-color: rgba(31, 26, 22, 0.24);
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: rgba(31, 26, 22, 0.74);
  font-size: 0.95rem;
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(31, 26, 22, 0.25);
}

.site-footer {
  padding: 34px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--white-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--gold-light);
}

.footer-right {
  justify-items: end;
  text-align: right;
}

@media (max-width: 1080px) {
  .nav {
    gap: 20px;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-items: center;
    background: transparent;
    border: 1px solid var(--white-line);
    border-radius: 999px;
    cursor: pointer;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-light);
  }

  .nav {
    position: fixed;
    inset: 88px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--white-line);
    border-radius: 24px;
    background: rgba(20, 17, 15, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .split,
  .event-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-right {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-monogram {
    width: 42px;
    height: 42px;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-monogram {
    width: 42px;
    height: 42px;
  }

  .brand-wordmark span {
    font-size: 1.02rem;
    letter-spacing: 0.18em;
  }

  .brand-wordmark span:last-child {
    font-size: 0.76rem;
    letter-spacing: 0.27em;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .button {
    width: 100%;
  }

  .card,
  .feature-item {
    padding: 26px;
  }

  .dark-panel {
    margin-left: 12px;
    margin-right: 12px;
  }

  .contact-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mockup-grid {
    grid-auto-rows: 74px;
  }
}

@media (max-width: 390px) {
  .brand-wordmark span {
    font-size: 0.9rem;
  }

  .brand-wordmark span:last-child {
    font-size: 0.68rem;
  }

  .brand-monogram {
    width: 38px;
    height: 38px;
  }
}
