:root {
  --ink: #17313a;
  --muted: #63727a;
  --line: #dce6e3;
  --paper: #fbfcf9;
  --soft: #eef6f3;
  --mint: #55b99d;
  --mint-dark: #257964;
  --coral: #e9876d;
  --gold: #c9a24f;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 49, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 249, 0.88);
  border-bottom: 1px solid rgba(220, 230, 227, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--mint-dark);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #365059;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transition: width 180ms ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--mint-dark);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(37, 121, 100, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 46px;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 48, 55, 0.9) 0%, rgba(18, 48, 55, 0.68) 36%, rgba(18, 48, 55, 0.16) 78%),
    linear-gradient(0deg, rgba(18, 48, 55, 0.25), rgba(18, 48, 55, 0.04));
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
}

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

.hero h1,
.section h2,
.booking h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  max-width: 760px;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 1.5vw, 1.28rem);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 56px;
}

.hero-metrics div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 18px;
  background: var(--white);
  color: #3c565f;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  max-width: 740px;
}

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

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card,
.team-layout article,
.pricing-grid article,
.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(23, 49, 58, 0.05);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  padding: 28px;
}

.service-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.card-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--mint-dark);
  font-weight: 900;
}

.featured .card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--coral);
}

.service-card h3,
.team-layout h3,
.feature-item h3 {
  margin: 26px 0 10px;
  font-size: 1.2rem;
}

.service-card p,
.team-layout p,
.pricing-grid p,
.testimonial-grid blockquote,
.feature-item p,
.booking-copy p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.results {
  background: #f7eee8;
}

.comparison-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.comparison {
  --position: 52%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  isolation: isolate;
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  position: absolute;
  inset: 0;
  width: auto;
  overflow: hidden;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-label {
  position: absolute;
  z-index: 4;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 48px;
  height: 48px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--mint-dark);
  box-shadow: 0 10px 30px rgba(23, 49, 58, 0.25);
  transform: translate(-50%, -50%);
}

.comparison-handle span::before,
.comparison-handle span::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.comparison-handle span::before {
  left: 13px;
  transform: translateY(-50%) rotate(-45deg);
}

.comparison-handle span::after {
  right: 13px;
  transform: translateY(-50%) rotate(135deg);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.result-notes {
  display: grid;
  gap: 14px;
}

.result-notes article {
  padding: 22px;
  border: 1px solid rgba(233, 135, 109, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.result-notes strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.result-notes p {
  margin: 0;
  color: var(--muted);
}

.experience {
  background: #163139;
  color: var(--white);
}

.experience-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 22px;
}

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

.feature-item span {
  width: 18px;
  height: 18px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 162, 79, 0.16);
}

.feature-item h3 {
  margin-top: 0;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.72);
}

.team-layout,
.pricing-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-layout article,
.pricing-grid article,
.testimonial-grid figure {
  padding: 28px;
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 42px;
  background: var(--soft);
}

.testimonial-grid figure {
  margin: 0;
}

.testimonial-grid blockquote {
  font-size: 1.02rem;
}

.testimonial-grid figcaption {
  margin-top: 20px;
  color: var(--ink);
  font-weight: 900;
}

.pricing-grid article {
  display: grid;
  gap: 12px;
}

.pricing-grid .highlight {
  border-color: rgba(233, 135, 109, 0.42);
  box-shadow: var(--shadow);
}

.pricing-grid span {
  color: var(--mint-dark);
  font-weight: 900;
}

.pricing-grid strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.faq {
  padding-top: 30px;
}

.faq-list {
  max-width: 860px;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px 24px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  padding-top: 14px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 7vw, 90px);
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: #f7eee8;
}

.booking-copy p {
  max-width: 560px;
  margin-top: 22px;
}

.phone-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--mint-dark);
  font-size: 1.4rem;
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #405861;
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(85, 185, 157, 0.16);
}

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

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

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

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

  .main-nav.is-open {
    position: absolute;
    top: 75px;
    left: 18px;
    right: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .experience-panel,
  .testimonials,
  .booking,
  .comparison-wrap {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 48, 55, 0.92), rgba(18, 48, 55, 0.56));
  }

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

  .hero-metrics,
  .service-grid,
  .team-layout,
  .pricing-grid,
  .testimonial-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .comparison-label {
    top: 12px;
  }

  .before-label {
    left: 12px;
  }

  .after-label {
    right: 12px;
  }

  .site-footer {
    flex-direction: column;
  }
}
