:root {
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #F7F8FA;
  --bg-card: #F0F2F5;
  --fg: #1A1A2E;
  --fg-muted: #6B7280;
  --accent-red: #B91C1C;
  --accent-blue: #1E3A5F;
  --accent-blue-light: #2C5282;
  --accent-red-light: #DC2626;
  --line: rgba(30, 58, 95, 0.12);
  --line-strong: rgba(30, 58, 95, 0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 48px 100px;
  background: var(--accent-blue);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 40%, rgba(185, 28, 28, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(44, 82, 130, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #1E3A5F 0%, #152A47 50%, #0F1E33 100%);
}

.hero-gradient-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(185, 28, 28, 0.08) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  opacity: 0.5;
}

.shape-1 {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.08) 0%, transparent 70%);
  border-color: rgba(255,255,255,0.06);
}

.shape-2 {
  width: 350px; height: 350px;
  bottom: 80px; right: 100px;
  background: radial-gradient(circle, rgba(44, 82, 130, 0.12) 0%, transparent 70%);
  border-color: rgba(255,255,255,0.05);
}

.shape-3 {
  width: 180px; height: 180px;
  bottom: 200px; right: 320px;
  background: none;
  border-color: rgba(185, 28, 28, 0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-red);
}

.eyebrow-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: #E87171;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── DIVIDER ── */
.section-divider {
  padding: 0 48px;
}

.divider-line {
  display: flex;
  align-items: center;
  gap: 0;
}

.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}

.divider-diamond {
  width: 8px; height: 8px;
  transform: rotate(45deg);
  border: 1px solid var(--accent-red);
  background: var(--white);
  margin: 0 16px;
  flex-shrink: 0;
}

/* ── ABOUT ── */
.about {
  padding: 100px 48px;
  background: var(--white);
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 24px;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 32px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-body p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.72);
  font-weight: 300;
}

/* ── SERVICE AREAS ── */
.areas {
  padding: 80px 48px 100px;
  background: var(--accent-blue);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.areas-header {
  text-align: center;
  margin-bottom: 64px;
}

.areas-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.areas-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.area-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.area-card:hover { background: rgba(255,255,255,0.08); }

.area-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-red), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-card:hover .area-card-accent { opacity: 1; }

.area-icon {
  color: var(--accent-red);
  margin-bottom: 24px;
  opacity: 0.9;
}

.area-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.area-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-weight: 300;
}

.area-venues {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(185, 28, 28, 0.9);
  opacity: 0.9;
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 48px;
  background: var(--white);
}

.outcomes-inner {
  max-width: 900px;
  margin: 0 auto;
}

.outcomes-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 24px;
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 64px;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.outcome-item:last-child { border-bottom: none; }

.outcome-marker {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent-blue);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}

.outcome-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}

.outcome-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 46, 0.6);
  font-weight: 300;
}

/* ── PROMISE ── */
.promise {
  padding: 80px 48px 100px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promise-quote {
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent-red);
  opacity: 0.2;
  position: absolute;
  top: -20px; left: -16px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

.quote-attribution {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 24px;
  padding-left: 20px;
}

.promise-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.promise-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--accent-blue);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  line-height: 1.4;
}

/* ── CLOSING ── */
.closing {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
  text-align: center;
  background: var(--accent-blue);
}

.closing-bg {
  position: absolute;
  inset: 0;
}

.closing-shape-1 {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle, rgba(185, 28, 28, 0.08) 0%, transparent 60%);
}

.closing-shape-2 {
  position: absolute;
  top: -350px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 1200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.closing-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 28px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 40px;
}

.closing-service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 48px;
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.1em;
  background: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 80px 28px 72px; }
  .about { padding: 64px 28px; }
  .areas { padding: 64px 28px; }
  .outcomes { padding: 64px 28px; }
  .promise { padding: 64px 28px; }
  .closing { padding: 80px 28px; }
  .section-divider { padding: 0 28px; }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .promise-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .outcome-item {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .hero-headline { font-size: 44px; }
  .quote-text { font-size: 20px; }
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30, 58, 95, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 40px; width: auto; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link-active { color: var(--white); }
.nav-link-cta {
  background: var(--accent-red);
  color: var(--white) !important;
  padding: 8px 20px;
}
.nav-link-cta:hover { background: var(--accent-red-light); }

/* ── PRICING HERO ── */
.pricing-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  background: var(--accent-blue);
  overflow: hidden;
}

.pricing-hero-bg { position: absolute; inset: 0; }
.pricing-hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(185, 28, 28, 0.14) 0%, transparent 55%),
    linear-gradient(135deg, #1E3A5F 0%, #152A47 60%, #0F1E33 100%);
}

.pricing-hero-content { position: relative; z-index: 1; max-width: 700px; }

.pricing-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.pricing-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-red);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-red-light); }
.btn-primary-light {
  background: var(--white);
  color: var(--accent-blue);
}
.btn-primary-light:hover { background: rgba(255,255,255,0.88); }

/* ── PRICING SECTIONS ── */
.pricing-section { padding: 80px 48px; background: var(--white); }
.pricing-section:nth-child(even) { background: var(--bg-alt); }

.pricing-section-header { max-width: 1200px; margin: 0 auto 48px; }

.pricing-tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.pricing-tier-badge-wedding { background: rgba(30, 58, 95, 0.08); color: var(--accent-blue); border: 1px solid rgba(30, 58, 95, 0.2); }
.pricing-tier-badge-corporate { background: rgba(185, 28, 28, 0.08); color: var(--accent-red); border: 1px solid rgba(185, 28, 28, 0.2); }
.pricing-tier-badge-private { background: rgba(30, 58, 95, 0.08); color: var(--accent-blue); border: 1px solid rgba(30, 58, 95, 0.2); }
.pricing-tier-badge-addon { background: rgba(185, 28, 28, 0.08); color: var(--accent-red); border: 1px solid rgba(185, 28, 28, 0.2); }

.pricing-tier-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  line-height: 1.5;
}

/* ── PRICING GRID ── */
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ── PRICING CARD ── */
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
}

.pricing-card-signature {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}
.pricing-card-signature .pricing-card-tier,
.pricing-card-signature .pricing-card-sub,
.pricing-card-signature .price-amount,
.pricing-card-signature .price-total-note,
.pricing-card-signature .price-unit,
.pricing-card-signature .price-line span { color: var(--white); }
.pricing-card-signature .price-line-deposit { opacity: 0.7; }
.pricing-card-signature .price-line-note { color: rgba(255,255,255,0.6); font-style: italic; }
.pricing-card-signature .pricing-card-features li { color: rgba(255,255,255,0.85); }
.pricing-card-signature:hover { box-shadow: 0 4px 24px rgba(30, 58, 95, 0.25); }

.pricing-card-header { margin-bottom: 20px; }

.pricing-card-tier {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}

.pricing-card-sub { font-size: 12px; color: var(--fg-muted); font-weight: 400; }

.pricing-card-price { margin-bottom: 20px; }

.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--accent-blue);
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
  margin-left: 4px;
}

.price-total-note {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  margin-top: 4px;
}

.pricing-card-breakdown {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
}

.price-line-deposit { color: var(--accent-red); opacity: 0.8; }
.price-line-fee { color: var(--accent-red); opacity: 0.8; }
.price-line-note { font-style: italic; }

.pricing-card-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

.pricing-card-features li {
  font-size: 13px;
  color: rgba(26, 26, 46, 0.7);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
  line-height: 1.5;
}

.pricing-card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  opacity: 0.6;
  font-size: 12px;
}

/* ── PRICING ADDENDUM ── */
.pricing-addendum {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 16px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.pricing-addendum strong { color: var(--fg); }

/* ── ADD-ONS ── */
.pricing-addons { padding: 80px 48px; background: var(--white); }
.pricing-addons-header { max-width: 1200px; margin: 0 auto 40px; }

.addons-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.addon-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  transition: border-color 0.2s;
}
.addon-card:hover { border-color: rgba(30, 58, 95, 0.4); }

.addon-icon { font-size: 24px; flex-shrink: 0; }

.addon-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
}

.addon-desc {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 12px;
}

.addon-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent-blue);
}

/* ── PRICING CTA ── */
.pricing-cta { padding: 100px 48px; background: var(--accent-blue); text-align: center; }
.pricing-cta-inner { max-width: 600px; margin: 0 auto; }

.pricing-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-cta-body {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { position: relative; }
  .nav-inner { padding: 0 24px; height: 60px; }
  .nav-links { gap: 0; }
  .nav-link { font-size: 12px; padding: 6px 10px; }
  .nav-link-cta { padding: 6px 14px; }

  .pricing-hero { padding: 80px 28px 64px; min-height: auto; }
  .pricing-section { padding: 56px 28px; }
  .pricing-addons { padding: 56px 28px; }
  .pricing-cta { padding: 64px 28px; }
  .section-divider { padding: 0 28px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid-3 { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }

  .pricing-headline { font-size: 40px; }
}

@media (max-width: 480px) {
  .nav-logo-img { height: 32px; }
  .pricing-hero { padding: 60px 20px 56px; }
  .pricing-section, .pricing-addons, .pricing-cta { padding-left: 20px; padding-right: 20px; }
  .section-divider { padding: 0 20px; }
}