:root {
  --navy: #112a46;
  --navy-2: #0b1d33;
  --gold: #b88a3b;
  --gold-2: #d5b16f;
  --cream: #fbf8f1;
  --stone: #f3efe6;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5d6878;
  --line: #e4dccf;
  --soft-blue: #eef3f8;
  --green: #4f6f52;
  --shadow: 0 18px 40px rgba(17, 42, 70, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }

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

.notice-bar {
  background: var(--navy-2);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}
.notice-bar .container { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.notice-bar a { color: var(--white); font-weight: 700; }
.notice-bar span { color: var(--gold-2); }

.site-header {
  background: rgba(251,248,241,.94);
  border-bottom: 1px solid rgba(184,138,59,.25);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(17,42,70,.12);
  overflow: hidden;
}
.logo-mark svg { width: 38px; height: 38px; }
.logo-text strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  letter-spacing: .08em;
  line-height: 1;
  color: var(--navy);
}
.logo-text span {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-top: 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 750;
  font-size: 15px;
}
.nav-links a[aria-current="page"], .nav-links a:hover {
  background: var(--stone);
  color: var(--navy);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--navy);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 10px 22px rgba(17,42,70,.18); }
.btn-primary:hover { color: var(--white); background: var(--navy-2); }
.btn-secondary { background: var(--gold); color: var(--navy-2); }
.btn-secondary:hover { color: var(--navy-2); background: #c99b4c; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy-2); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  background:
    radial-gradient(circle at 90% 10%, rgba(184,138,59,.20), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #f7f0e4 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 70px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  border: 34px solid rgba(184,138,59,.16);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 44px;
}
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: 14px;
  margin: 0 0 12px;
}
h1, h2, h3 {
  color: var(--navy);
  line-height: 1.12;
  margin: 0;
}
h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -.045em;
  max-width: 780px;
}
h2 { font-size: clamp(31px, 4vw, 48px); letter-spacing: -.025em; }
h3 { font-size: 23px; }
.lead {
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 700px;
  color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.trust-card {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(184,138,59,.25);
  border-radius: 18px;
  padding: 16px;
  color: var(--navy);
  font-weight: 850;
}
.hero-card {
  background: var(--navy);
  border-radius: 36px;
  padding: 34px;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -130px auto;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 26px solid rgba(184,138,59,.22);
}
.hero-card h2, .hero-card h3 { color: var(--white); position: relative; }
.hero-card p, .hero-card li { color: rgba(255,255,255,.84); position: relative; }
.hero-card ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.hero-card li { display: flex; gap: 10px; align-items: flex-start; }
.tick {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

.section { padding: 76px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.82); }
.section-title { max-width: 820px; margin-bottom: 32px; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title p { color: var(--muted); font-size: 18px; margin: 14px 0 0; }
.section-dark .section-title p { color: rgba(255,255,255,.78); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 26px rgba(17,42,70,.05);
}
.card .icon, .service-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--stone);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(184,138,59,.28);
}
.card p { color: var(--muted); margin: 12px 0 0; }
.card ul { padding-left: 20px; margin: 14px 0 0; color: var(--muted); }
.card li { margin: 5px 0; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.panel.gold {
  background: linear-gradient(135deg, #fffaf0, #f4ead9);
  border-color: rgba(184,138,59,.33);
}
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.check-list strong { color: var(--ink); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}
.service-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  min-height: 290px;
}
.service-tile h3 { font-size: 20px; }
.service-tile ul { margin: 13px 0 0; padding-left: 20px; color: var(--muted); }
.service-tile li { margin: 8px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(17,42,70,.06);
}
.price-head {
  background: var(--navy);
  color: var(--white);
  padding: 18px;
  text-align: center;
}
.price-head h3 { color: var(--white); font-size: 21px; }
.price-body { padding: 26px 22px; text-align: center; }
.hours { color: var(--muted); font-weight: 850; text-transform: uppercase; letter-spacing: .05em; font-size: 14px; }
.price { font-size: 42px; color: var(--navy); font-weight: 950; margin: 8px 0 0; letter-spacing: -.04em; }
.price small { font-size: 15px; color: var(--muted); font-weight: 750; margin-left: 2px; }
.monthly-cost { margin-top: 8px; color: var(--muted); font-size: 14px; font-weight: 850; }
.price-body ul { text-align: left; margin: 20px 0 0; padding-left: 20px; color: var(--muted); }
.banner-price {
  margin-top: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}
.step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 24px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 14px;
}

.cta {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(17,42,70,.93), rgba(11,29,51,.95)),
    radial-gradient(circle at 15% 30%, rgba(184,138,59,.35), transparent 28%);
  color: var(--white);
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.82); font-size: 18px; margin: 12px 0 0; }

.page-hero {
  padding: 58px 0;
  background: linear-gradient(135deg, #fffdf7, #f2eadc);
  border-bottom: 1px solid rgba(184,138,59,.22);
}
.page-hero h1 { font-size: clamp(40px, 5vw, 64px); }
.breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.breadcrumb a { color: var(--navy); font-weight: 850; }

.content {
  max-width: 920px;
}
.content h2 { margin-top: 38px; font-size: 34px; }
.content h3 { margin-top: 28px; }
.content p, .content li { color: var(--muted); }
.content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  margin: 22px 0;
  background: var(--white);
}
.content th, .content td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}
.content th { background: var(--navy); color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
}
.contact-list { display: grid; gap: 14px; margin-top: 18px; }
.contact-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.contact-item strong { display: block; color: var(--navy); }
.form {
  display: grid;
  gap: 14px;
}
.form label { display: grid; gap: 6px; color: var(--navy); font-weight: 850; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
.form textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: 14px; margin: 0; }

.site-footer {
  background: var(--navy-2);
  color: var(--white);
  padding: 46px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr .9fr;
  gap: 26px;
}
.site-footer h3 { color: var(--white); font-size: 18px; margin-bottom: 12px; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.74); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .hero-grid, .split, .contact-grid, .cta-box { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav { flex-wrap: wrap; min-height: 70px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    order: 5;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 12px; background: rgba(255,255,255,.6); }
  .nav-cta .btn { display: none; }
  .hero { padding: 52px 0 42px; }
  .trust-row { grid-template-columns: 1fr; }
  .service-grid, .pricing-grid, .cards, .steps, .footer-grid { grid-template-columns: 1fr; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 56px 0; }
  .hero-card { border-radius: 26px; padding: 26px; }
  .footer-bottom { display: block; }
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 650;
}
.form .checkbox input {
  width: auto;
  margin-top: 6px;
}
