:root {
  --navy: #082657;
  --navy-deep: #041a3d;
  --navy-soft: #173b6c;
  --blue-mist: #e8f0fb;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #152033;
  --muted: #586273;
  --line: #d7dce3;
  --line-dark: rgba(255, 255, 255, 0.25);
  --focus: #ba6b00;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --page-width: 72rem;
  --section-space: clamp(4rem, 7vw, 6.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: min(100% - 2rem, var(--page-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(8, 38, 87, 0.13);
  background: rgba(251, 250, 247, 0.96);
}

.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  border-radius: 50%;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
}

.brand-name {
  display: none;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1;
}

.primary-nav {
  display: none;
}

.primary-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
  border-radius: 0.2rem;
  padding: 0.65rem 1.15rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  border-color: var(--navy-deep);
  background: var(--navy-deep);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 0.85rem;
  font-size: 0.88rem;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  gap: 3rem;
  padding-block: clamp(3.75rem, 8vw, 6rem);
}

.hero-copy {
  max-width: 43rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--navy-soft);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.3;
}

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

h1,
h2 {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.45rem, 7vw, 4.3rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.05rem, 4.8vw, 3.1rem);
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--navy-deep);
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: #3b4656;
  font-size: clamp(1.07rem, 3vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 0.28rem;
  text-decoration-thickness: 1px;
}

.text-link:hover {
  text-decoration-thickness: 2px;
}

.service-note {
  position: relative;
  align-self: end;
  padding-top: 1.35rem;
}

.service-note::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5.25rem;
  height: 3px;
  background: var(--navy);
  content: "";
}

.service-note-title {
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.standard-headline {
  margin-bottom: 1.15rem;
  color: var(--navy-deep);
  line-height: 1.15;
}

.standard-headline strong,
.standard-headline span {
  display: block;
}

.standard-headline strong {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-weight: 400;
}

.standard-headline span {
  margin-top: 0.3rem;
  color: var(--navy-soft);
  font-size: 1.03rem;
  font-weight: 750;
}

.standard-copy {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.standard-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.standard-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0 0.55rem 1.35rem;
  color: var(--navy-deep);
  font-size: 0.88rem;
  font-weight: 650;
}

.standard-list li::before {
  position: absolute;
  left: 0;
  color: var(--navy-soft);
  content: "✓";
  font-weight: 800;
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 43rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-heading > :last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.process {
  background: var(--white);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 1.7rem 3.4rem;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  position: absolute;
  top: 1.55rem;
  left: 0;
  color: var(--navy-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-list p,
.service-row p,
.service-area p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.narrow-layout {
  width: min(100% - 2rem, 62rem);
}

.service-includes {
  max-width: 48rem;
  margin: -0.5rem 0 1.5rem;
  color: var(--muted);
}

.pricing-board {
  border-top: 3px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.pricing-grid {
  display: grid;
}

.pricing-group,
.pricing-addons {
  padding-block: 1.6rem;
}

.pricing-group + .pricing-group,
.pricing-addons {
  border-top: 1px solid var(--line);
}

.pricing-group h3,
.pricing-addons h3 {
  margin-bottom: 0.85rem;
  color: var(--navy-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-list {
  margin: 0;
}

.price-list div {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-block: 0.65rem;
}

.price-list dt {
  flex: 1;
  color: var(--navy-deep);
  font-weight: 650;
}

.price-list dd {
  margin: 0;
  color: var(--navy-soft);
  font-size: 1.05rem;
  font-weight: 800;
}

.fine-print {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.safety h2,
.safety h3 {
  color: var(--white);
}

.safety .eyebrow,
.eyebrow-light {
  color: #c8d9f0;
}

.safety .section-heading > :last-child {
  color: #d9e1ed;
}

.scope-columns {
  display: grid;
  gap: 2.5rem;
}

.scope-columns > div {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.25rem;
}

.check-list,
.plain-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0.72rem 0 0.72rem 1.5rem;
  color: #eef3fa;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: #c8d9f0;
  content: "✓";
  font-weight: 800;
}

.plain-list li::before {
  position: absolute;
  top: 0.58rem;
  left: 0.2rem;
  color: #c8d9f0;
  content: "—";
}

.boundary-note {
  margin: 1.25rem 0 0;
  color: #c8d9f0;
  font-size: 0.88rem;
}

.area-layout {
  display: grid;
  gap: 1.75rem;
}

.area-lead {
  margin-bottom: 1.1rem !important;
  color: var(--navy-deep) !important;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  line-height: 1.45;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.faq-list {
  border-top: 3px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.2rem 2.5rem 1.2rem 0;
  color: var(--navy-deep);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1rem;
  right: 0.25rem;
  color: var(--navy);
  content: "+";
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 43rem;
  padding: 0 2.5rem 1.35rem 0;
}

.booking {
  padding-block: clamp(3.75rem, 8vw, 6rem);
  background: var(--navy-deep);
  color: var(--white);
}

.booking-layout {
  display: grid;
  gap: 2.25rem;
}

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

.booking p {
  max-width: 41rem;
  margin-bottom: 0;
  color: #d9e1ed;
}

.booking-action {
  align-self: center;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-deep);
}

.button-light:hover {
  border-color: var(--blue-mist);
  background: var(--blue-mist);
  color: var(--navy-deep);
}

.button-light[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.booking-status {
  margin-top: 0.8rem !important;
  font-size: 0.84rem;
}

.booking-status:focus {
  outline: none;
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-layout {
  display: grid;
  gap: 1.8rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
}

.footer-brand p {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.footer-brand span,
.footer-links,
.copyright {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-links a {
  color: var(--navy-soft);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.footer-links a:hover {
  text-decoration-thickness: 2px;
}

.copyright {
  margin: 0;
}

.policy-header {
  min-height: 4.5rem;
}

.policy-page {
  min-height: 60vh;
}

.policy-width {
  width: min(100% - 2rem, 48rem);
}

.policy-hero {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.policy-hero .policy-width {
  padding-block: clamp(3.25rem, 7vw, 5rem);
}

.policy-hero h1 {
  max-width: none;
  margin-bottom: 0.8rem;
  font-size: clamp(2.45rem, 7vw, 3.8rem);
}

.policy-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-content {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.policy-content section {
  border-top: 1px solid var(--line);
  padding-block: 1.7rem 0.45rem;
}

.policy-content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  letter-spacing: -0.02em;
}

.policy-content p,
.policy-content li {
  color: #3f4a5a;
}

.policy-content ul {
  padding-left: 1.3rem;
}

.policy-content a {
  color: var(--navy-soft);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.policy-intro {
  margin-bottom: 2rem;
  color: var(--navy-deep) !important;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.5;
}

.policy-footer {
  gap: 1.4rem;
}

@media (min-width: 42rem) {
  .page-width,
  .narrow-layout {
    width: min(100% - 3rem, var(--page-width));
  }

  .primary-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .brand-name {
    display: inline;
  }

  .button-small {
    padding-inline: 1rem;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-list li,
  .process-list li:last-child {
    border-top: 0;
    border-bottom: 0;
    padding: 3.25rem 2rem 2.25rem 0;
  }

  .process-list li:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 2rem;
  }

  .process-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-list li:nth-child(even) .step-number {
    left: 2rem;
  }

  .step-number {
    top: 1rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .pricing-group + .pricing-group {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 3rem;
  }

  .addon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }

  .scope-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .area-layout,
  .booking-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
  }

  .booking-action {
    justify-self: end;
    text-align: right;
  }

  .footer-layout {
    grid-template-columns: 1.15fr 2fr auto;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (min-width: 60rem) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.75fr);
    align-items: end;
    gap: 6rem;
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-list li,
  .process-list li:nth-child(even) {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 3.4rem 1.4rem 2rem;
  }

  .process-list li:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-top: 0;
  }

  .process-list li .step-number,
  .process-list li:nth-child(even) .step-number {
    top: 1rem;
    left: 1.4rem;
  }

  .process-list li:first-child .step-number {
    left: 0;
  }

  .safety-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 6rem;
  }

  .safety .section-heading {
    margin-bottom: 0;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
    gap: 6rem;
  }

  .faq-intro {
    position: sticky;
    top: 7rem;
    align-self: start;
    margin-bottom: 0;
  }
}

@media (max-width: 23rem) {
  .header-inner {
    gap: 0.55rem;
  }

  .brand img {
    width: 3rem;
    height: 3rem;
  }

  .button-small {
    padding-inline: 0.7rem;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .booking,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding-block: 2rem;
  }
}
