:root {
  --navy: #0a1628;
  --navy-light: #12233d;
  --gold: #b8934a;
  --gold-light: #d8bd7b;
  --cream: #f7f4ee;
  --white: #ffffff;
  --text: #293241;
  --muted: #667085;
  --line: rgba(10, 22, 40, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
}

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

h1,
h2,
h3,
.logo,
.footer-logo {
  font-family: "Playfair Display", serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 22, 40, 0.97);
  border-bottom: 1px solid rgba(216, 189, 123, 0.18);
  backdrop-filter: blur(16px);
}

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

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo span,
.footer-logo span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.nav-cta {
  border: 1px solid var(--gold);
  border-radius: 5px;
  padding: 9px 15px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(184, 147, 74, 0.22), transparent 28%),
    linear-gradient(125deg, var(--navy) 0%, #10223c 62%, #172e4c 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(216, 189, 123, 0.2);
  transform: rotate(24deg);
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -190px;
}

.hero::after {
  width: 280px;
  height: 280px;
  right: 12%;
  bottom: -170px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero p {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: #a7813d;
  transform: translateY(-2px);
}

.content-shell {
  padding: 88px 0;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 64px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.section:first-child {
  padding-top: 0;
}

.section-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.16;
}

.section-body > * + * {
  margin-top: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 13px 14px 13px 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--gold);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.review-card,
.related-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  padding: 24px;
}

.feature-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
}

.review-grid {
  display: grid;
  gap: 14px;
}

.review-card p {
  font-style: italic;
}

.review-card strong {
  display: block;
  margin-top: 13px;
  color: var(--navy);
}

.rating {
  color: var(--gold);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 19px 21px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.faq-list details p {
  margin-top: 12px;
}

.cta-panel {
  margin-top: 70px;
  padding: 48px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 700px;
  margin: 14px 0 25px;
  color: rgba(255, 255, 255, 0.72);
}

.related-services {
  padding: 80px 0;
  background: var(--cream);
}

.related-services h2 {
  margin-bottom: 26px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  display: block;
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-card:hover,
.related-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.related-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.site-footer {
  padding: 64px 0 26px;
  color: rgba(255, 255, 255, 0.62);
  background: #07101d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

@media (max-width: 920px) {
  .nav-shell {
    padding: 15px 0;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 660px) {
  .nav-shell {
    align-items: center;
    flex-direction: column;
  }

  .main-nav {
    justify-content: center;
    font-size: 0.78rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 500px;
  }

  .hero-inner,
  .nav-shell,
  .content-shell,
  .footer-shell {
    width: min(100% - 32px, 1180px);
  }

  .content-shell {
    padding: 62px 0;
  }

  .section {
    padding: 52px 0;
  }

  .service-list,
  .feature-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 34px 24px;
  }
}
