:root {
  --ivory: #f6f1e8;
  --ivory-deep: #ebe3d6;
  --navy: #18233d;
  --navy-mid: #223255;
  --navy-soft: #3d4f74;
  --gold: #c6a25a;
  --gold-soft: #d6ba7a;
  --gold-vein: #e4d09a;
  --ink: #121826;
  --mist: rgba(246, 241, 232, 0.9);
  --line: rgba(24, 35, 61, 0.14);
  --star: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 60px rgba(24, 35, 61, 0.15);
  --radius: 0.28rem;
  --font-display: "EB Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1.4px 1.4px at 10% 16%, var(--star), transparent 55%),
    radial-gradient(1px 1px at 82% 10%, rgba(255, 255, 255, 0.65), transparent 50%),
    radial-gradient(1.1px 1.1px at 58% 78%, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(920px 500px at 6% -10%, rgba(198, 162, 90, 0.2), transparent 58%),
    radial-gradient(760px 440px at 96% 4%, rgba(34, 50, 85, 0.16), transparent 55%),
    linear-gradient(168deg, #f8f4ec 0%, #ebe4d7 42%, #dde4ef 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 36rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.optional {
  font-weight: 500;
  color: var(--navy-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(246, 241, 232, 0.84);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.18rem;
  background:
    radial-gradient(circle at 30% 25%, #fff8, transparent 42%),
    linear-gradient(140deg, var(--ivory), var(--navy) 55%, var(--gold));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 8px 18px rgba(24, 35, 61, 0.28);
  animation: starPulse 7s ease-in-out infinite;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.45rem;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.94rem;
}

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

.nav-cta {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(198, 162, 90, 0.55);
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.9), rgba(198, 162, 90, 0.2));
  color: var(--navy) !important;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.nav-cta:hover {
  box-shadow: 0 0 0 1px rgba(198, 162, 90, 0.4), 0 10px 24px rgba(198, 162, 90, 0.25);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--mist);
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--navy);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(246, 241, 232, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.2rem 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn-primary {
  color: var(--ivory);
  background:
    radial-gradient(130% 190% at var(--x, 50%) var(--y, 50%), rgba(228, 208, 154, 0.58), transparent 42%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #2d3f64 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 12px 28px rgba(24, 35, 61, 0.28);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(198, 162, 90, 0.38) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 16px 34px rgba(198, 162, 90, 0.28);
}

.btn-ghost {
  color: var(--navy);
  background: rgba(246, 241, 232, 0.65);
  border-color: rgba(24, 35, 61, 0.18);
}

.btn-ghost:hover {
  border-color: rgba(198, 162, 90, 0.55);
  color: var(--navy);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.marble-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(246, 241, 232, 0.72)),
    radial-gradient(circle at 20% 10%, rgba(198, 162, 90, 0.16), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(24, 35, 61, 0.08), transparent 45%);
  border: 1px solid rgba(24, 35, 61, 0.12);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 0.4rem);
  padding: 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.22);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head.centerish {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.section-head p,
.page-hero p,
.prose p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 1.05rem;
}

.meta {
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.meta-on-dark {
  color: rgba(246, 241, 232, 0.75);
}

.hero-ceremony {
  position: relative;
  min-height: min(94vh, 900px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  text-align: center;
}

.hero-ceremony > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-ceremony-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1.3px 1.3px at 22% 28%, rgba(255, 255, 255, 0.72), transparent 55%),
    radial-gradient(1px 1px at 74% 18%, rgba(255, 255, 255, 0.55), transparent 50%),
    radial-gradient(1.1px 1.1px at 48% 70%, rgba(255, 255, 255, 0.45), transparent 50%),
    radial-gradient(circle at 50% 42%, rgba(24, 35, 61, 0.28), rgba(18, 24, 38, 0.78) 62%);
}

.hero-ceremony-copy {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 44rem;
  animation: riseIn 1.05s ease both;
}

.hero-place {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-vein);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 5.8rem);
  line-height: 0.96;
  margin: 0 0 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
}

.hero-lead {
  font-size: 1.18rem;
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(246, 241, 232, 0.9);
}

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

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

.page-hero h1,
.bleed-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-weight: 600;
}

.bleed-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}

.bleed-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bleed-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 35, 61, 0.15), rgba(18, 24, 38, 0.86));
}

.bleed-copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
}

.bleed-copy h1,
.bleed-copy p {
  color: var(--ivory);
}

.feature-stack {
  display: grid;
  gap: 1.5rem;
  padding: 1.2rem;
}

.feature-stack > img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 0.2rem);
}

.feature-stack-body {
  padding: 0.4rem 0.6rem 0.8rem;
}

.rail-list {
  display: grid;
  gap: 1.25rem;
}

.rail-item {
  display: grid;
  grid-template-columns: 3.5rem 1.2fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
}

.rail-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.rail-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.rail-item h3,
.offer-item h3,
.card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.offer-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}

.offer-meta,
.price-note {
  color: var(--navy-soft);
  font-size: 0.95rem;
}

.price-display {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

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

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0.55rem 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  box-shadow: 0 0 0 3px rgba(198, 162, 90, 0.18);
}

.quote-orbit {
  padding: 2.4rem 2rem;
  text-align: center;
  border: 1px solid rgba(198, 162, 90, 0.35);
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 162, 90, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.35);
  border-radius: calc(var(--radius) + 0.5rem);
  animation: fadeLift 1.2s ease both;
}

.quote-orbit blockquote {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.35;
  color: var(--navy);
}

.quote-orbit cite {
  font-style: normal;
  color: var(--navy-soft);
  font-size: 0.95rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}

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

.prose h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.9rem;
  margin: 2rem 0 0.75rem;
}

.prose p + p {
  margin-top: 1rem;
}

.blog-list article,
.partner-card {
  overflow: hidden;
}

.blog-list img,
.partner-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(24, 35, 61, 0.18);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--ink);
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: #8a2f2f;
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 1.1em;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}

.form-status[data-state="success"] {
  background: rgba(198, 162, 90, 0.18);
  color: var(--navy);
}

.form-status[data-state="error"] {
  background: rgba(138, 47, 47, 0.12);
  color: #6d2424;
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, rgba(24, 35, 61, 0.94), #121826);
  color: rgba(246, 241, 232, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
  color: var(--ivory);
}

.footer-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.7rem;
}

.footer-text {
  margin: 0 0 0.7rem;
  color: rgba(246, 241, 232, 0.78);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(246, 241, 232, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-links li + li {
  margin-top: 0.4rem;
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  font-size: 0.9rem;
  color: rgba(246, 241, 232, 0.55);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.96), rgba(235, 227, 214, 0.96));
  border-top: 1px solid rgba(198, 162, 90, 0.45);
  box-shadow: 0 -12px 40px rgba(24, 35, 61, 0.18);
  padding: 1rem 0;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  margin: 0;
  color: var(--navy);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-error {
  margin: 0.5rem auto 0;
  width: var(--shell);
  color: #8a2f2f;
}

.stars-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 162, 90, 0.7), transparent);
  margin: 0.5rem 0 1.5rem;
  position: relative;
}

.stars-divider::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 0.75rem;
}

@keyframes starPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLift {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@media (max-width: 900px) {
  .rail-item,
  .grid-2,
  .offer-list,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rail-item img {
    order: -1;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
}
