:root {
  --navy: #0b1c2c;
  --navy-2: #12283c;
  --navy-3: #1a3a54;
  --gold: #c9a227;
  --gold-2: #e0bf4a;
  --gold-dim: rgba(201, 162, 39, 0.16);
  --cream: #f4efe6;
  --paper: #faf8f4;
  --ink: #12202c;
  --muted: #5b6b76;
  --line: rgba(11, 28, 44, 0.1);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 28, 44, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, .serif { font-family: Fraunces, Georgia, serif; font-weight: 500; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.1rem); line-height: 0.98; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
h3 { font-size: 1.45rem; line-height: 1.2; }

.lede { font-size: 1.12rem; color: var(--muted); max-width: 640px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 28, 44, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Fraunces, serif;
  font-weight: 600;
  font-size: 1.15rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; }
.logo-text span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: var(--gold-2); }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: white; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11,28,44,0.2);
}
.btn-outline:hover { border-color: var(--navy); background: white; }
.btn-dark {
  background: var(--navy);
  color: white;
}
.btn-dark:hover { background: var(--navy-3); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,28,44,0.28) 0%, rgba(11,28,44,0.18) 35%, rgba(11,28,44,0.88) 100%),
    linear-gradient(90deg, rgba(11,28,44,0.55), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 64px;
}
.hero p.sub {
  margin: 18px 0 28px;
  max-width: 560px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-meta div span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 4px;
}
.hero-meta strong { font-size: 1.05rem; }

/* Sections */
section { padding: 88px 0; }
.section-head { margin-bottom: 42px; }
.section-head h2 { margin: 10px 0 14px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(11,28,44,0.04);
}
.card.dark {
  background: var(--navy);
  color: white;
  border: 0;
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-dim);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.card.dark .icon { background: rgba(201,162,39,0.18); color: var(--gold-2); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); }
.card.dark p { color: rgba(255,255,255,0.72); }

.stat {
  padding: 22px 8px;
  text-align: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 16px;
}
.stat b {
  display: block;
  font-family: Fraunces, serif;
  font-size: 2rem;
  color: var(--navy);
}
.stat span { color: var(--muted); font-size: 0.88rem; }

.photo-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

.band {
  background: var(--navy);
  color: white;
}
.band .muted { color: rgba(255,255,255,0.7); }

.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checklist li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  margin-top: 2px;
}

/* Pricing */
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.price-card.featured {
  background: var(--navy);
  color: white;
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.price-card .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.price-card h3 { margin-bottom: 8px; }
.price-card .rate {
  font-family: Fraunces, serif;
  font-size: 2.1rem;
  margin: 16px 0 8px;
}
.price-card p { color: var(--muted); flex: 1; }
.price-card.featured p { color: rgba(255,255,255,0.72); }
.price-card ul { list-style: none; margin: 18px 0 24px; display: grid; gap: 8px; }

/* Steps */
.steps { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}
.num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-family: Fraunces, serif;
  font-size: 1.4rem;
}

/* Forms */
form { display: grid; gap: 14px; }
label { font-size: 0.82rem; font-weight: 650; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-size: 1rem;
}
textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.note { font-size: 0.85rem; color: var(--muted); }
.success {
  display: none;
  background: #e8f6ec;
  color: #14532d;
  padding: 14px 16px;
  border-radius: 12px;
}
.success.show { display: block; }

/* Page hero */
.page-hero {
  background:
    linear-gradient(180deg, rgba(11,28,44,0.72), rgba(11,28,44,0.82)),
    var(--navy) center/cover no-repeat;
  color: white;
  padding: 92px 0 72px;
}
.page-hero p { color: rgba(255,255,255,0.78); max-width: 620px; margin-top: 12px; }

.map-embed {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: 18px;
  filter: grayscale(0.25) contrast(1.05);
}

/* Footer */
.site-footer {
  background: #07131e;
  color: rgba(255,255,255,0.78);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.site-footer h4 {
  color: white;
  font-family: Fraunces, serif;
  margin-bottom: 14px;
}
.site-footer a { display: block; margin: 7px 0; color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--gold-2); }
.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px 28px;
    align-items: flex-start;
    gap: 16px;
  }
  .price-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .footer-grid, .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { min-height: 82vh; }
}
