:root {
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --aqua: #288b81;
  --aqua-dark: #17675f;
  --mint: #5cc5ba;
  --ink: #111827;
  --body: #374151;
  --soft: #f1fbfa;
  --deep: #0b2f35;
  --gold: #f7b733;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: #ffffff;
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.brand-text {
  font-family: var(--font-heading);
  color: var(--ink);
  letter-spacing: -0.035em;
}

h1 {
  font-size: 35px;
  line-height: 1.08;
}

h2 {
  font-size: 28px;
  line-height: 1.15;
}

h3,
h4 {
  font-size: 20px;
  line-height: 1.25;
}

p,
li,
a,
button,
input,
textarea {
  font-size: 16px;
}

.nav-link {
  font-size: 18px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(92, 197, 186, 0.28);
  box-shadow: 0 24px 70px rgba(11, 47, 53, 0.11);
  backdrop-filter: blur(18px);
}

.hero-shell {
  background:
    radial-gradient(circle at top left, rgba(92, 197, 186, 0.32), transparent 34%),
    linear-gradient(135deg, #f1fbfa 0%, #ffffff 47%, #dff8f6 100%);
}

.hero-image-wrap {
  min-height: 100%;
  background: linear-gradient(145deg, rgba(40, 139, 129, 0.2), rgba(92, 197, 186, 0.38));
}

.gallery-badge {
  width: auto;
  height: 48px;
  max-width: 92px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(40, 139, 129, 0.24);
  background: #ffffff;
  padding: 6px;
}

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
  box-shadow: 0 18px 34px rgba(40, 139, 129, 0.28);
}

.btn-primary:hover,
.btn-dark:hover,
.btn-secondary:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(40, 139, 129, 0.36);
}

.btn-secondary {
  color: #111827;
  background: #ffffff;
  border: 1px solid rgba(40, 139, 129, 0.22);
}

.btn-dark {
  color: #ffffff;
  background: #0b2f35;
}

.btn-light {
  color: #111827;
  background: #ffffff;
}

.desktop-only-phone {
  display: none !important;
}

.desktop-nav {
  display: none !important;
}

.mobile-menu-button {
  display: inline-flex !important;
}

.mobile-panel {
  display: none;
}

.mobile-panel.is-open {
  display: block;
}

.service-card,
.why-card,
.process-card,
.review-card,
.faq-card {
  background: #ffffff;
  color: #374151;
  border: 1px solid rgba(40, 139, 129, 0.14);
  box-shadow: 0 22px 60px rgba(11, 47, 53, 0.08);
}

.service-card h3,
.why-card h3,
.process-card h3,
.review-card h3,
.faq-card h3 {
  color: #111827;
}

.icon-tile {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #17675f;
  background: linear-gradient(135deg, rgba(92, 197, 186, 0.24), rgba(40, 139, 129, 0.1));
}

.section-dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 197, 186, 0.26), transparent 34%),
    linear-gradient(135deg, #0b2f35, #071f25);
  color: #effffb;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li,
.section-dark a:not(.btn-light) {
  color: #ffffff;
}

.section-dark .muted-on-dark {
  color: #c8f4ef;
}

.two-col-image {
  flex-basis: 35%;
}

.two-col-text {
  flex-basis: 65%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-track {
  transition: transform 420ms ease;
}

.review-slide {
  flex: 0 0 100%;
}

.sticky-call {
  display: none;
}

.sticky-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.footer-text,
.footer-text a,
footer p,
footer li {
  font-size: 14px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  .sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: block;
    opacity: 0;
    transform: translateY(110%);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 31, 37, 0.96);
    border-top: 1px solid rgba(92, 197, 186, 0.38);
  }

  .sticky-call a {
    width: 100%;
    color: #ffffff;
    background: linear-gradient(135deg, #288b81, #17675f);
    border-radius: 18px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  }

  main {
    padding-bottom: 76px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: clamp(46px, 5vw, 70px);
  }

  h2 {
    font-size: clamp(34px, 3vw, 48px);
  }

  .desktop-only-phone {
    display: inline-flex !important;
  }

  .desktop-nav {
    display: flex !important;
  }

  .mobile-menu-button,
  .mobile-panel,
  .sticky-call {
    display: none !important;
  }

  .review-slide {
    flex-basis: 50%;
  }
}

@media (min-width: 1180px) {
  .review-slide {
    flex-basis: 33.333333%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
