:root {
  --navy: #0d1b2a;
  --navy-soft: #15263a;
  --gold: #c9a45c;
  --cream: #f7f1e6;
  --white: #ffffff;
  --muted: #667085;
  --text: #182230;
  --line: #e6e0d6;
  --shadow: 0 20px 60px rgba(13, 27, 42, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

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

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--navy);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.logo small {
  display: block;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--gold);
  margin-top: -4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  color: var(--navy);
}

.menu a { opacity: 0.88; }
.menu a:hover, .menu a.active { color: var(--gold); opacity: 1; }

.mobile-toggle {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(201, 164, 92, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(13,27,42,0.12);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(201,164,92,0.22), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, #20324a 100%);
  color: var(--white);
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

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

h1, h2, h3 { line-height: 1.15; margin: 0 0 18px; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.04em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
}

h3 { font-size: 22px; color: var(--navy); }

.lead {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.trust-item {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
}

.trust-item strong { display: block; color: var(--gold); }

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.mock-photo {
  min-height: 440px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(13,27,42,0.16), rgba(13,27,42,0.35)),
    url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=80') center/cover;
  display: flex;
  align-items: end;
  padding: 24px;
}

.photo-label {
  background: rgba(247,241,230,0.95);
  color: var(--navy);
  border-radius: 18px;
  padding: 16px;
  max-width: 330px;
}

section { padding: 82px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p { color: var(--muted); font-size: 18px; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(13,27,42,0.06);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(201,164,92,0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.band {
  background: var(--navy);
  color: var(--white);
}

.band h2, .band h3 { color: var(--white); }
.band p { color: rgba(255,255,255,0.76); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255,255,255,0.05);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 16px;
}

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

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(13,27,42,0.06);
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 38px;
  font-weight: 700;
  margin: 12px 0;
}

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

.cta {
  background: linear-gradient(135deg, var(--gold), #e0c07a);
  border-radius: 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--navy);
}

.cta h2 { margin-bottom: 8px; }

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 30px;
}

.contact-box h3 { color: var(--white); }
.contact-box p, .contact-box a { color: rgba(255,255,255,0.82); }

form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(13,27,42,0.06);
}

label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 8px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #d6d0c4;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fffdf8;
}

textarea { min-height: 130px; resize: vertical; }

.footer {
  background: #08121f;
  color: rgba(255,255,255,0.76);
  padding: 46px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 30px;
}

.footer h3 { color: var(--white); }
.footer a { display: block; margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 14px; }

.page-hero {
  background: linear-gradient(135deg, var(--navy), #20324a);
  color: var(--white);
  padding: 72px 0;
}

.page-hero h1 { font-size: clamp(38px, 5vw, 58px); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 720px; font-size: 19px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  text-align: left;
  font-weight: 900;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer { display: block; }

@media (max-width: 900px) {
  .hero-grid, .form-wrap, .cta { grid-template-columns: 1fr; }
  .grid-3, .price-grid, .process, .footer-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .mobile-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .menu a { padding: 13px 14px; }
  .menu .btn { margin-top: 8px; }
  .mock-photo { min-height: 340px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  section { padding: 58px 0; }
  .hero { padding: 64px 0 52px; }
  .topbar { display: none; }
  .cta { padding: 28px; }
}
