:root {
  --navy: #11192b;
  --navy-deep: #0a0f1c;
  --gold: #c9a227;
  --gold-light: #e0c468;
  --paper: #faf9f6;
  --ink: #1a1f2b;
  --muted: #5b6373;
  --line: #e4e1d8;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

h1, h2, h3, blockquote {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

ul { list-style: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

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

.nav-cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-ghost {
  border: none;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
  padding: 13px 4px;
}

.btn.full { width: 100%; }

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 120px 0 100px;
}

.hero-inner { max-width: 720px; }

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: #c7cad3;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.hero .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.hero .btn-ghost { color: #fff; text-decoration-color: var(--gold); }

/* Strip */
.strip { background: var(--navy-deep); color: #fff; }

.strip-inner {
  display: flex;
  justify-content: space-around;
  padding: 36px 24px;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}

.strip-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--gold-light);
}

.strip-label {
  display: block;
  font-size: 13px;
  color: #9aa0ad;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Sections generic */
section { padding: 96px 0; }

.section-eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-eyebrow.light { color: var(--gold-light); }

.services h2, .why h2, .prices h2, .cta h2 {
  font-size: 34px;
  margin-bottom: 48px;
  max-width: 600px;
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  background: var(--paper);
  padding: 44px 36px;
}

.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

/* Why */
.why { background: #f1efe8; }

.why-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.why h2 { margin-bottom: 36px; }

.why-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}

.why-list li strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.why-quote {
  background: var(--navy);
  color: #fff;
  padding: 44px;
  border-radius: var(--radius);
}

.why-quote blockquote {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.quote-author {
  color: var(--gold-light);
  font-size: 14px;
}

/* Prices */
.price-table { border-top: 1px solid var(--line); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.price-name { font-size: 16px; }

.price-value {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 18px;
  white-space: nowrap;
}

.price-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

/* CTA */
.cta { background: var(--navy-deep); color: #fff; }

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.cta h2 { color: #fff; }

.cta-sub { color: #c7cad3; margin-bottom: 32px; max-width: 420px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

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

.cta-card {
  background: var(--navy);
  border: 1px solid #2a3247;
  border-radius: var(--radius);
  padding: 40px;
  align-self: start;
}

.cta-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.cta-card-text {
  color: #c7cad3;
  font-size: 15px;
  margin-bottom: 24px;
}

/* Footer */
.site-footer { background: var(--navy); color: #9aa0ad; padding: 40px 0; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner .logo-text { color: #fff; font-size: 15px; }

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 13px; }

.footer-link {
  font-size: 13px;
  color: #9aa0ad;
  text-decoration: underline;
  text-decoration-color: #3a4256;
}

.footer-link:hover { color: var(--gold-light); }

/* Legal page */
.legal { padding: 64px 0 96px; }

.legal-inner { max-width: 760px; }

.legal-inner h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-inner h2 {
  font-size: 19px;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-inner p {
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-inner ul {
  margin: 0 0 12px;
  padding-left: 22px;
}

.legal-inner li {
  list-style: disc;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--ink);
}

.legal-inner a { color: var(--gold); text-decoration: underline; }

/* Responsive */
@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(10, 15, 28, 0.12);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
  }
  .nav.nav-open { display: flex; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .hero { padding: 80px 0 64px; }
  section { padding: 64px 0; }
  .strip-inner { justify-content: space-between; }
}
