:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #52606d;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --line: #d9e1e8;
  --navy: #17324d;
  --navy-2: #0f263c;
  --copper: #b8673b;
  --teal: #087f7a;
  --red: #c24135;
  --gold: #e4a72f;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  color: #ffffff;
  background: rgba(15, 38, 60, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: #ffffff;
  color: var(--teal);
  border-radius: var(--radius);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a,
.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.header-call {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(194, 65, 53, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: transparent;
  color: #ffffff;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 28px));
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 24, 38, 0.9) 0%, rgba(12, 24, 38, 0.72) 38%, rgba(12, 24, 38, 0.2) 68%, rgba(12, 24, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 24, 38, 0.28), rgba(12, 24, 38, 0.02));
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 154px;
  padding-bottom: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcf7a;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4.75rem;
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

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

.button,
.quick-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 20px;
}

.button.primary {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(194, 65, 53, 0.28);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button:hover,
.quick-actions a:hover,
.header-call:hover {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 14px;
  margin: 58px 0 0;
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.quick-book {
  color: #ffffff;
  background: var(--teal);
}

.quick-book-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
}

.quick-book h2 {
  max-width: 820px;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
}

.quick-book .section-kicker {
  color: #bff6ee;
  margin-bottom: 6px;
}

.quick-actions {
  margin-top: 0;
}

.quick-actions a {
  min-width: 148px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.quick-actions a:first-child {
  background: #ffffff;
  color: var(--teal);
}

.section {
  padding: 96px 0;
}

.section-heading,
.pricing,
.contact {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2,
.pricing-copy h2,
.contact-copy h2 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-2);
  font-size: 2.55rem;
  line-height: 1.1;
}

.service-grid,
.review-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.service-card {
  padding: 28px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: #edf8f7;
  color: var(--teal);
}

.service-icon svg,
.contact-details svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.process-list h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 1.15rem;
}

.service-card p,
.process-list p,
.pricing-copy p,
.contact-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.process,
.proof {
  background: var(--soft);
}

.process-list {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.process-list li {
  padding: 0 26px 24px 0;
  border-top: 3px solid var(--copper);
}

.process-list span {
  display: inline-block;
  margin: 18px 0 24px;
  color: var(--teal);
  font-weight: 900;
  font-size: 0.92rem;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.price-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table span {
  color: var(--muted);
}

.price-table strong {
  color: var(--navy-2);
  text-align: right;
}

.review-grid {
  align-items: stretch;
}

.review-card {
  margin: 0;
  padding: 28px;
  border-top: 4px solid var(--gold);
}

.review-card blockquote {
  margin: 0;
  color: var(--navy-2);
  font-size: 1.05rem;
}

.review-card figcaption {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-details {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-details li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.contact-details svg {
  color: var(--teal);
}

.contact-details a {
  color: var(--navy-2);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--navy-2);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(8, 127, 122, 0.5);
  border-color: #bff6ee;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  color: #ffffff;
  background: #0b1c2c;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .site-header.nav-open .main-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 4px;
    padding-top: 10px;
  }

  .site-header.nav-open .main-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: calc(100svh - 28px);
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .quick-book-inner,
  .pricing,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    min-height: calc(100svh - 20px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 24, 38, 0.92), rgba(12, 24, 38, 0.6)),
      linear-gradient(0deg, rgba(12, 24, 38, 0.38), rgba(12, 24, 38, 0.08));
  }

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

  .hero-content {
    width: min(100% - 36px, 1180px);
    padding-top: 130px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .quick-actions a {
    width: 100%;
  }

  .hero-stats {
    display: none;
  }

  .quick-book-inner,
  .section-heading,
  .service-grid,
  .process-list,
  .review-grid,
  .pricing,
  .contact {
    width: min(100% - 36px, 1180px);
  }

  .quick-actions {
    display: grid;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .pricing-copy h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .service-grid,
  .process-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .price-table div {
    grid-template-columns: 1fr;
  }

  .price-table strong {
    text-align: left;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    padding: 26px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
