:root {
  --navy: #062a50;
  --navy-deep: #031b34;
  --navy-soft: #10395f;
  --gold: #d9aa45;
  --gold-light: #f1cc78;
  --cream: #f7f3eb;
  --white: #ffffff;
  --text: #17202b;
  --muted: #687382;
  --border: #dfe5eb;
  --shadow: 0 18px 50px rgba(3, 27, 52, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(6,42,80,0.08);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: 275px;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-main {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-sub {
  color: #536131;
  font-size: 15px;
  font-weight: 700;
  margin-top: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

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

.header-call {
  text-decoration: none;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  background: var(--navy-deep);
}

.hero-image-wrap {
  max-width: 2000px;
  margin: 0 auto;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
}

.intro-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at top right, rgba(217,170,69,0.09), transparent 34%),
    #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 900;
  margin-bottom: 14px;
}

h1, h2, h3 {
  color: var(--navy);
  margin-top: 0;
  line-height: 1.13;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(31px, 3.6vw, 46px);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 22px;
}

.lead {
  font-size: 20px;
  color: #4f5d6b;
  max-width: 760px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
}

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

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.65);
  color: #fff;
}

.trust-card {
  background: var(--navy);
  color: #fff;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card h2 {
  color: #fff;
  font-size: 34px;
}

.trust-card p {
  color: rgba(255,255,255,0.83);
}

.trust-card ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.trust-card li {
  margin: 10px 0;
}

.trust-badge {
  display: inline-block;
  background: rgba(217,170,69,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(217,170,69,0.45);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.steps-section {
  padding: 88px 0;
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

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

.step-card {
  background: #fff;
  border: 1px solid rgba(6,42,80,0.08);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(3,27,52,0.06);
}

.step-number {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card p {
  color: var(--muted);
}

.coverage-section {
  padding: 90px 0;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

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

.coverage-panel {
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 34px;
  border-radius: var(--radius);
}

.coverage-panel h3 {
  color: #fff;
  margin-bottom: 24px;
}

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

.check-list li {
  position: relative;
  padding: 13px 0 13px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.next-section {
  padding: 88px 0;
  background: #f7f9fb;
}

.next-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

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

.next-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.next-card a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  margin-top: 10px;
}

.closing-cta {
  background: var(--navy-deep);
  color: #fff;
  padding: 68px 0;
}

.closing-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.closing-cta h2 {
  color: #fff;
  margin-bottom: 10px;
}

.closing-cta p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

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

.closing-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: #021424;
  color: rgba(255,255,255,0.72);
  padding: 42px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  color: #fff;
}

.footer-brand span {
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom p {
  margin: 5px 0;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .nav-wrap {
    justify-content: space-between;
  }

  .intro-grid,
  .coverage-grid,
  .next-grid {
    grid-template-columns: 1fr;
  }

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

  .closing-inner,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-main {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 13px;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 13px;
  }

  .intro-section,
  .steps-section,
  .coverage-section,
  .next-section {
    padding: 62px 0;
  }

  h1 {
    font-size: 39px;
  }

  .lead {
    font-size: 18px;
  }

  .trust-card,
  .coverage-panel,
  .next-card {
    padding: 25px;
  }
}

/* ===== Heritage polish pass v1 ===== */

.nav-wrap {
  min-height: 88px;
}

.brand img {
  width: 62px;
  height: 62px;
}

.brand-main {
  font-size: 19px;
}

.brand-sub {
  font-size: 15px;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.intro-section {
  padding: 78px 0;
}

.intro-grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 62px;
}

.intro-section h1 {
  font-size: clamp(38px, 4.2vw, 56px);
  max-width: 760px;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}

.trust-card {
  padding: 38px;
}

.steps-section,
.coverage-section,
.next-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.step-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(3,27,52,0.09);
}

.page-hero {
  padding: 74px 0;
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 62px);
}

.content-section {
  padding: 78px 0;
}

.side-card {
  box-shadow: 0 14px 34px rgba(3,27,52,0.08);
}

.site-footer {
  padding-top: 46px;
}

@media (max-width: 980px) {
  .intro-grid {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-main {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 12px;
  }

  .header-call {
    font-size: 12px;
  }

  .intro-section h1 {
    font-size: 38px;
  }

  .page-hero h1 {
    font-size: 40px;
  }
}

/* =====================================================
   HERITAGE SECONDARY PAGE STYLES
   ===================================================== */

.page-hero {
  background:
    radial-gradient(circle at right top, rgba(217,170,69,0.20), transparent 38%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  padding: 78px 0 82px;
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 62px);
  max-width: 900px;
  margin-bottom: 22px;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  max-width: 760px;
  margin: 0;
}

.content-section {
  padding: 82px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 64px;
  align-items: start;
}

.content-grid > div > h2 {
  margin-top: 38px;
  margin-bottom: 14px;
}

.content-grid > div > h2:first-of-type {
  margin-top: 0;
}

.content-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.side-card {
  background: linear-gradient(145deg, #ffffff, #f7f9fb);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 16px 40px rgba(3,27,52,0.08);
}

.side-card h3 {
  margin-bottom: 20px;
}

.dark-checks li {
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.full-btn {
  width: 100%;
  margin-top: 24px;
}

/* About page */

.about-logo {
  width: 190px !important;
  height: 190px !important;
  object-fit: cover;
  margin: 0 auto 25px;
  border-radius: 50%;
}

.side-card .about-logo + h3 {
  text-align: center;
}

.side-card .about-logo ~ p {
  text-align: center;
}

/* Info bands */

.info-band {
  padding: 76px 0;
  background: var(--cream);
}

.info-band h2 {
  max-width: 800px;
}

.info-band p {
  color: var(--muted);
  font-size: 17px;
  max-width: 820px;
}

/* What Happens Next */

.contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 36px rgba(3,27,52,0.08);
}

.contact-box a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  margin: 9px 0;
}

/* Contact page */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 64px;
  align-items: start;
}

.contact-details {
  margin: 28px 0;
}

.contact-details div {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-details strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-details a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  font-size: 18px;
}

.contact-form {
  display: block;
  background: #f7f9fb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 14px 36px rgba(3,27,52,0.07);
}

.contact-form label {
  display: block;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #cbd4dd;
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 135px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,170,69,0.13);
}

.form-button {
  border: 0;
  cursor: pointer;
}

.form-note,
.small-note {
  color: var(--muted);
  font-size: 13px !important;
  line-height: 1.55;
}

/* Privacy + Terms */

.legal-page {
  padding: 78px 0 90px;
}

.legal-wrap {
  max-width: 900px;
}

.legal-wrap h1 {
  font-size: clamp(42px, 5vw, 58px);
  margin-bottom: 18px;
}

.legal-wrap h2 {
  font-size: 27px;
  margin-top: 38px;
  margin-bottom: 12px;
}

.legal-wrap p {
  color: #4f5d6b;
  font-size: 16px;
  line-height: 1.75;
}

.legal-wrap a {
  color: var(--navy);
  font-weight: 700;
}

/* Secondary page responsive layout */

@media (max-width: 980px) {
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .side-card {
    max-width: 620px;
  }

  .contact-form {
    max-width: 700px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 58px 0 62px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .content-section,
  .legal-page {
    padding: 58px 0;
  }

  .contact-form,
  .side-card,
  .contact-box {
    padding: 24px;
  }

  .about-logo {
    width: 150px !important;
    height: 150px !important;
  }
}

/* ===== Appointment booking ===== */

.booking-link {
  display: inline-block;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

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

.booking-button {
  margin-top: 18px !important;
  color: #fff !important;
  text-align: center;
}

.contact-box .booking-button {
  display: inline-flex;
}
