:root {
  --ink: #10213d;
  --muted: #5d6878;
  --paper: #f6f8fc;
  --cream: #edf2f8;
  --blue: #12345b;
  --blue-deep: #081a33;
  --blue-bright: #1f5f9f;
  --gold: #c79a35;
  --white: #ffffff;
  --line: #d9e0eb;
  --shadow: 0 18px 48px rgba(8, 26, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(16, 33, 61, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 190px;
}

.brand-logo {
  display: block;
  width: clamp(150px, 16vw, 220px);
  height: auto;
  max-height: 74px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a,
.header-call,
.primary-action,
.secondary-action,
.notice-band a {
  text-decoration: none;
}

.header-call,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--gold);
  color: #071528;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(120, 83, 20, 0.22);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 21, 43, 0.94) 0%, rgba(13, 43, 80, 0.76) 42%, rgba(13, 43, 80, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 21, 43, 0.48), rgba(6, 21, 43, 0.06));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 92px 0 84px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 4px;
  color: var(--white);
  font-weight: 800;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin: 0;
}

.quick-info div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.quick-info dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.quick-info dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.notice-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 22px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.notice-band p {
  margin: 0;
  font-weight: 700;
}

.notice-band a {
  color: var(--gold);
  font-weight: 900;
}

.quote-section {
  width: min(1120px, calc(100% - 36px));
  margin: 28px auto 0;
  padding: 24px clamp(22px, 4vw, 42px);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8, 26, 51, 0.07);
}

.quote-section blockquote {
  max-width: 980px;
  margin: 0;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
}

.inline-faq {
  width: min(1120px, calc(100% - 36px));
  margin: 34px auto 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(24, 31, 27, 0.05);
}

.inline-faq-light {
  background: #edf3fb;
}

.inline-faq h2 {
  margin-bottom: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.25;
}

.inline-faq p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
}

.lookup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 38px auto 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8, 26, 51, 0.07);
}

.lookup-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.6rem);
}

.lookup-intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

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

.lookup-intro .lookup-actions {
  margin-top: 24px;
}

.lookup-section > .lookup-actions a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.lookup-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid rgba(18, 52, 91, 0.18);
  border-radius: 6px;
  background: #edf3fb;
  color: var(--blue);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.lookup-actions a:hover {
  border-color: var(--gold);
  background: #fff8e8;
}

.section,
.split-section,
.cta-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro,
.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.intro > p,
.service-area > p,
.split-content > p,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-note {
  padding-top: 0;
}

.legal-note p {
  max-width: 920px;
  margin: 0;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: #fff8e8;
  color: #4f3d1b;
  font-size: 0.96rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(24, 31, 27, 0.06);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #eaf2fb;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.subpage-hero {
  min-height: 620px;
}

.subpage-hero .hero-content {
  width: min(880px, calc(100% - 36px));
}

.subpage-hero h1 {
  max-width: 860px;
  font-size: clamp(2.35rem, 5.3vw, 5rem);
}

.document-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list,
.booking-panel ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

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

.document-columns-wide {
  max-width: 960px;
}

.check-list a {
  color: inherit;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.document-columns article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 26, 51, 0.06);
}

.document-columns h3 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  color: var(--blue);
}

.document-columns .check-list {
  margin-top: 10px;
}

.check-list li,
.booking-panel li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid rgba(22, 34, 29, 0.1);
}

.check-list li::before,
.booking-panel li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 4px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.booking-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.booking-panel p,
.booking-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.cta-section {
  margin-bottom: 64px;
  padding: 70px clamp(20px, 5vw, 62px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
}

.cta-section .primary-action {
  margin-top: 12px;
}

.cta-section .cta-disclaimer {
  max-width: 820px;
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 18px;
  background:
    linear-gradient(135deg, rgba(8, 26, 51, 0.08), rgba(199, 154, 53, 0.1)),
    var(--paper);
}

.error-panel {
  width: min(820px, 100%);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-logo {
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 26px;
}

.error-panel h1 {
  margin-bottom: 14px;
  color: var(--ink);
}

.error-panel > p:not(.eyebrow) {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.error-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.error-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(18, 52, 91, 0.18);
  border-radius: 6px;
  background: #edf3fb;
  color: var(--blue);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.error-actions a:last-child {
  grid-column: 1 / -1;
  background: var(--gold);
  color: #071528;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 21, 43, 0.94), rgba(13, 43, 80, 0.4));
  }

  .intro,
  .service-area,
  .split-section {
    grid-template-columns: 1fr;
  }

  .lookup-section {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 132px;
    max-height: 58px;
  }

  .header-call {
    min-height: 40px;
    padding: 0 14px;
  }

  .nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 72px 0 58px;
  }

  h1 {
    font-size: clamp(2.2rem, 14vw, 3.5rem);
  }

  .hero-actions a,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .notice-band,
  .site-footer {
    flex-direction: column;
  }

  .section,
  .split-section,
  .quote-section,
  .lookup-section,
  .cta-section {
    width: calc(100% - 32px);
    padding: 62px 0;
  }

  .lookup-section {
    padding: 24px;
  }

  .quote-section {
    padding: 20px 22px;
  }

  .lookup-actions {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 210px;
  }

  .booking-panel,
  .cta-section {
    padding: 28px;
  }

  .error-actions {
    grid-template-columns: 1fr;
  }
}
