:root {
  --navy: #17264a;
  --blue: #2f64b8;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #dde4ee;
  --soft: #f5f8fc;
  --white: #ffffff;
  --gold: #f5b400;
  --shadow: 0 18px 45px rgba(23, 38, 74, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 228, 238, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

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

.button.primary:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 25, 52, 0.88), rgba(13, 25, 52, 0.42) 52%, rgba(13, 25, 52, 0.22)),
    linear-gradient(0deg, rgba(13, 25, 52, 0.75), rgba(13, 25, 52, 0.06) 45%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bcd4ff;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.5rem, 7vw, 5.9rem);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.hero-actions .button {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions .button.primary {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--soft);
}

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

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.trust-grid,
.service-grid,
.price-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-table-wrap {
  display: grid;
  gap: 24px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-table caption {
  padding: 18px 20px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  color: var(--navy);
  background: var(--soft);
  font-weight: 900;
}

.pricing-table td:not(:first-child) {
  font-weight: 850;
  color: var(--navy);
}

.add-on-grid {
  margin-top: 24px;
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.photo-card {
  overflow: hidden;
  padding: 0;
}

.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-card h3 {
  padding: 20px 22px 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--navy);
  font-weight: 900;
}

.trust-card,
.service-card,
.price-card,
.policy-card,
.review-card,
.form-panel,
.area-panel,
.included-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-card,
.service-card,
.price-card,
.policy-card,
.included-panel {
  padding: 24px;
}

.trust-card strong,
.service-card h3,
.price-card h3,
.policy-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.trust-card p,
.service-card p,
.price-card p,
.policy-card p {
  margin: 0;
  color: var(--muted);
}

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

.professional img,
.founder img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.professional img {
  max-height: 720px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  color: var(--ink);
  font-weight: 650;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.results-grid {
  display: grid;
  gap: 22px;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.included-panel h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.result-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.result-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.result-label {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 11px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(23, 38, 74, 0.88);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.review-card {
  padding: 22px;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.review-card blockquote {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1rem;
}

.review-card cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.founder-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.form-panel {
  padding: 26px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e2;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.price-summary {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem;
}

.price-summary strong {
  color: var(--navy);
}

.success-message {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--soft);
  font-weight: 850;
}

.success-message.is-visible {
  display: block;
}

.page-hero {
  padding: 84px 0 58px;
  background: var(--soft);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.area-panel {
  padding: 30px;
}

.area-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.area-panel p {
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.final-cta p {
  margin: 16px auto 24px;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 4px;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .button {
    flex: 1;
  }

  .hero {
    min-height: 760px;
  }

  .professional,
  .founder,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .service-grid,
  .price-grid,
  .policy-grid,
  .review-grid,
  .compact-grid,
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }

}

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

  .nav-links {
    gap: 8px 14px;
    font-size: 0.9rem;
  }

  .button {
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-inner {
    padding: 64px 0 42px;
  }

  .section {
    padding: 62px 0;
  }

  .trust-grid,
  .service-grid,
  .price-grid,
  .policy-grid,
  .review-grid,
  .compact-grid,
  .included-grid,
  .result-row,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tr {
    border-top: 1px solid var(--line);
    padding: 12px 0;
  }

  .pricing-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 0;
  }

  .pricing-table td:nth-child(2)::before {
    content: "Reset";
    color: var(--muted);
    font-weight: 800;
  }

  .pricing-table td:nth-child(3)::before {
    content: "Weekly";
    color: var(--muted);
    font-weight: 800;
  }

  .pricing-table td:nth-child(4)::before {
    content: "Bi-Weekly";
    color: var(--muted);
    font-weight: 800;
  }

  .result-card img {
    height: 310px;
  }

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