:root {
  --paper: #f3ece0;
  --paper-deep: #e6dccb;
  --cream: #fffaf3;
  --ink: #1b1713;
  --ink-soft: #3a342c;
  --muted: #6d655b;
  --line: rgba(27, 23, 19, .12);
  --forest: #1d4735;
  --forest-2: #2c684c;
  --leaf: #4c9a6e;
  --gold: #b07a3a;
  --gold-soft: #e8c48a;
  --shadow: 0 28px 60px rgba(27, 23, 19, .12);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --header-h: 4.35rem;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 0%, rgba(76, 154, 110, .12), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(176, 122, 58, .12), transparent 24rem),
    var(--paper);
}

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

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 680;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link:focus {
  position: absolute;
  z-index: 80;
  top: .6rem;
  left: .6rem;
  padding: .6rem 1rem;
  background: var(--ink);
  color: var(--cream);
}

.shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 236, 224, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  letter-spacing: -.03em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: var(--cream);
}

.logo-mark svg { width: 1.15rem; height: 1.15rem; }

.logo-type { font-size: 1.05rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 500;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.site-nav .button-primary,
.site-nav .button-primary:hover,
.nav-drawer .button-primary {
  color: #f4fff8;
}

.nav-quiet { color: var(--muted); }

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
}

.nav-toggle-bars::before { transform: translateY(-5px); }
.nav-toggle-bars::after { transform: translateY(3.5px); }

.nav-drawer {
  display: none;
  padding: .4rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(243, 236, 224, .96);
}

.nav-drawer a {
  display: block;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: .7rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
  border-color: transparent;
  background: var(--forest);
  color: #f4fff8;
}

.button-primary:hover { background: var(--forest-2); }

.button-ghost {
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.2rem, 6vw, 5.5rem) 0 3.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--forest-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: .92;
}

.hero h1 em {
  font-style: italic;
  color: var(--forest);
}

.lede {
  max-width: 38rem;
  margin: 0 0 1.6rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.hero-note {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.hero-stage {
  position: relative;
  min-height: 32rem;
}

.hero-stage:has(.theme-preview--photo) {
  min-height: 0;
}

.hero-stage:has(.theme-preview--photo) .floating-chip {
  position: relative;
  left: auto;
  bottom: auto;
  margin-top: 1rem;
}

.hero-stage .theme-preview {
  width: min(100%, 24rem);
  margin-left: auto;
  aspect-ratio: 3 / 4.05;
  box-shadow: var(--shadow);
}

.hero-stage .theme-preview--photo {
  width: 100%;
  aspect-ratio: 1024 / 482;
}

.floating-chip {
  position: absolute;
  left: 0;
  bottom: 12%;
  max-width: 14rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 250, 243, .92);
  box-shadow: var(--shadow);
}

.floating-chip strong { display: block; font-size: .92rem; }
.floating-chip span { color: var(--muted); font-size: .82rem; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: .85rem 0;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 700;
}

.marquee-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(3.2rem, 7vw, 6rem) 0;
}

.section-kicker {
  margin: 0 0 .7rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.section-copy {
  max-width: 40rem;
  margin: 0 0 2rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255,250,243,.7), rgba(243,236,224,.35)),
    var(--cream);
}

.feature-band .theme-preview {
  min-height: 26rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: .2rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: .75rem;
  font-weight: 650;
}

.pill-live {
  color: #f6fff8;
  border-color: transparent;
  background: var(--forest);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step,
.price-card,
.account-card,
.waitlist-card,
.legal-wrap {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--cream);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .8rem;
  border-radius: 999px;
  background: var(--forest);
  color: #f4fff8;
  font-size: .8rem;
  font-weight: 700;
}

.step h3,
.price-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.45rem;
}

.step p,
.price-card p,
.account-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.step .button {
  margin-top: 1rem;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.theme-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--cream);
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}

.theme-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.theme-card .theme-preview {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.theme-card .theme-preview--photo {
  aspect-ratio: 1024 / 482;
}

.theme-card-body {
  display: grid;
  gap: .35rem;
  padding: 1rem 1.05rem 1.15rem;
}

.theme-card-body small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.theme-card-body h3 {
  margin: 0;
  font-size: 1.35rem;
}

.theme-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.4rem;
}

.filter-btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.sms-panel {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 1.5rem;
  color: #f6efe4;
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 196, 138, .22), transparent 12rem),
    linear-gradient(145deg, #163226, #0f1c16 55%, #1d4735);
}

.sms-panel h2 { color: #fff8ea; }
.sms-panel p { color: rgba(246, 239, 228, .78); line-height: 1.7; }
.sms-panel .button-primary { background: var(--gold-soft); color: #24180b; }

.phone-mock {
  width: min(100%, 18rem);
  margin: 1.5rem auto 0;
  padding: 1.1rem .9rem 1.3rem;
  border-radius: 2rem;
  background: #0c1210;
  box-shadow: var(--shadow);
}

.phone-mock p {
  margin: 0;
  padding: .9rem 1rem;
  border-radius: 1.1rem 1.1rem 1.1rem .3rem;
  background: #1f3b2e;
  color: #eef8f1;
  font-size: .92rem;
  line-height: 1.5;
}

.waitlist {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.waitlist input {
  flex: 1 1 16rem;
  min-height: 2.9rem;
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.waitlist-message {
  min-height: 1.4rem;
  margin: .7rem 0 0;
  color: var(--forest);
  font-weight: 600;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: #ebe3d4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 2rem;
}

.footer-lede {
  max-width: 28rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.site-footer h2 {
  margin: 0 0 .7rem;
  font-size: .72rem;
  font-family: var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p { display: block; color: var(--ink-soft); line-height: 1.9; }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.theme-preview {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  color: #f7ead3;
  background: #1a120f;
}

.theme-preview img {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: 38%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 6px solid #efe2c4;
  transform: rotate(7deg);
  box-shadow: 0 18px 30px rgba(0,0,0,.35);
}

.theme-preview--photo {
  background: #050505;
}

.theme-preview--photo img {
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border: 0;
  transform: none;
  box-shadow: none;
}

.theme-preview__glow,
.theme-preview__object,
.theme-preview__title {
  position: absolute;
  pointer-events: none;
}

.theme-preview__glow {
  inset: auto auto 12% 18%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 90, .55), transparent 68%);
  filter: blur(6px);
}

.theme-preview__object {
  left: 14%;
  bottom: 16%;
  width: 42%;
  aspect-ratio: 3 / 4.1;
  border-radius: .4rem .9rem .9rem .4rem;
  background:
    linear-gradient(90deg, #2a120f, #5a2218 8%, #d7c094 10%, #cbb58a);
  box-shadow: 0 18px 28px rgba(0,0,0,.32);
}

.theme-preview__title {
  left: 1rem;
  top: 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.theme-preview--poe { background: radial-gradient(circle at 70% 30%, #4a1c16, #090604 62%); }
.theme-preview--garden-vows { background: radial-gradient(circle at 30% 20%, #8fb98a, #23402b 60%); }
.theme-preview--garden-vows .theme-preview__object { background: linear-gradient(#f4efe2, #d7c7a4); }
.theme-preview--neon-twenty { background: radial-gradient(circle at 80% 20%, #ff4dad, #140816 58%); }
.theme-preview--neon-twenty .theme-preview__object { background: linear-gradient(180deg, #2b0930, #12020f); box-shadow: 0 0 24px #ff4dad; }
.theme-preview--first-light { background: radial-gradient(circle at 20% 10%, #ffe7dc, #d9a7b0 40%, #7a5360); color: #4a2d33; }
.theme-preview--ember-eve { background: radial-gradient(circle at 50% 80%, #c45a22, #1a0d08 55%); }
.theme-preview--after-hours { background: radial-gradient(circle at 70% 10%, #4d74a8, #101722 60%); }
.theme-preview--after-hours .theme-preview__object { background: linear-gradient(#d9e4ee, #8ea4b8); }
.theme-preview--salt-silk { background: radial-gradient(circle at 10% 80%, #d8c3a0, #4d7c8a 58%); }
.theme-preview--midnight-circus { background: radial-gradient(circle at 50% 0%, #f0c36b, #4a102e 48%); }
.theme-preview--orchard-brunch { background: radial-gradient(circle at 80% 90%, #f0e2b2, #6d7b32 62%); color: #243014; }

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  margin: 0 0 .8rem;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.compare article {
  padding: 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: var(--cream);
}

.compare h3 { margin: 0 0 .4rem; font-size: 1.3rem; }
.compare p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.compare .ours { border-color: rgba(29, 71, 53, .35); background: #f4faf6; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card .amount {
  margin: .3rem 0 .8rem;
  font-family: var(--serif);
  font-size: 2.2rem;
}

.price-card.featured {
  background: var(--forest);
  color: #f4fff8;
  border-color: transparent;
}

.price-card.featured p { color: rgba(244, 255, 248, .78); }

.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}

.pack-card {
  padding: 1.1rem 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--cream);
}

.pack-card.featured {
  border-color: transparent;
  background: var(--forest);
  color: #f4fff8;
}

.pack-card .pack-guests {
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pack-card.featured .pack-guests { color: rgba(244, 255, 248, .7); }

.pack-card .amount {
  margin: 0 0 .35rem;
  font-family: var(--serif);
  font-size: 1.85rem;
}

.pack-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.45;
}

.pack-card.featured p { color: rgba(244, 255, 248, .78); }

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem 1.5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.included-list li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.5;
}

.included-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--forest-2);
  font-weight: 700;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-bottom: 1.4rem;
}

.dash-stat {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--cream);
}

.dash-stat span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dash-stat strong {
  display: block;
  margin-top: .35rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 680;
}

.guest-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .92rem;
}

.guest-table th,
.guest-table td {
  padding: .7rem .4rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.guest-table th {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin: 1rem 0 1.2rem;
}

.album-tile {
  aspect-ratio: 1;
  border-radius: .8rem;
  background:
    linear-gradient(145deg, rgba(29, 71, 53, .25), rgba(176, 122, 58, .35)),
    var(--paper-deep);
}

.album-tile:nth-child(2) { background: linear-gradient(145deg, #3d1a16, #7a1720); }
.album-tile:nth-child(3) { background: linear-gradient(145deg, #1d4735, #4c9a6e); }
.album-tile:nth-child(4) { background: linear-gradient(145deg, #1e3a5f, #4d74a8); }
.album-tile:nth-child(5) { background: linear-gradient(145deg, #6b1d4a, #d61f8c); }
.album-tile:nth-child(6) { background: linear-gradient(145deg, #8a3b1d, #e3c48a); }
.album-tile.upload {
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  padding: .6rem;
}

.dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.notice {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: rgba(176, 122, 58, .1);
  border-radius: .4rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.notice a {
  color: var(--forest);
  text-decoration: underline;
}

.legal-wrap .warning-box {
  border-left: 4px solid #9b2c2c;
  background: #fff5f3;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding-bottom: 4rem;
}

.detail-layout .theme-preview { min-height: 28rem; }
.detail-layout .theme-preview--photo {
  min-height: 0;
  aspect-ratio: 1024 / 482;
}

.checklist {
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: .45rem 0 .45rem 1.4rem;
  position: relative;
  color: var(--ink-soft);
}

.checklist li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--forest-2);
  font-weight: 700;
}

.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-wrap {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-wrap h1 { font-size: 2.4rem; }
.legal-wrap h3 { font-family: var(--sans); letter-spacing: 0; font-size: 1.05rem; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); line-height: 1.7; }
.legal-wrap .highlight-box,
.legal-wrap .warning-box,
.legal-wrap .contact-info {
  padding: 1rem;
  border-radius: .8rem;
  background: var(--paper);
}

.account-card { max-width: 36rem; }

@media (max-width: 980px) {
  .hero,
  .feature-band,
  .detail-layout,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .theme-grid,
  .compare,
  .price-grid,
  .pack-grid,
  .dash-stats,
  .included-list,
  .album-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stage { min-height: 0; }
  .hero-stage .theme-preview { margin: 0 auto; }
  .floating-chip { position: relative; left: auto; bottom: auto; margin-top: 1rem; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-drawer.is-open { display: block; }

  .steps,
  .theme-grid,
  .compare,
  .price-grid,
  .pack-grid,
  .dash-stats,
  .included-list,
  .album-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 1.6rem; }
}

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