:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --primary-light: #ccfbf1;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-body: #ffffff;
  --bg-subtle: #f8fafc;
  --border: #e2e8f0;

  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.topbar {
  background: var(--primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item .icon {
  opacity: 0.9;
}
.topbar a:hover {
  opacity: 0.8;
}

/*! HEADER/NAV */
.site-header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 24px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 4px;
}

/*! NAVBAR */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 99px;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-ctas {
  display: flex;
  gap: 12px;
  margin-left: 24px;
  padding-right: 40px;
  border-left: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/*! HERO */
.hero {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, var(--bg-subtle) 100%);
  overflow: hidden;
}

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

.hero-copy {
  max-width: 580px;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-media {
  position: relative;
  height: 600px;
  border-radius: 24px 24px 0 24px;
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--primary-light);
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-img.is-active {
  opacity: 1;
}

/*! TRUST */
.trust {
  padding: 100px 0;
  background-color: var(--bg-subtle);
  text-align: center;
}

.trust-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 16px;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.trust-subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-card {
  background: white;
  padding: 48px 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.08);
  border-color: var(--primary-light);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 20px;
  padding: 16px;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
}

.icon-stroke {
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-accent {
  fill: var(--primary);
  opacity: 0.15;
}

.trust-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.3;
}

/*! FACTS SECTION */
.about-facts {
  padding: 120px 0;
  background-color: #b1f8e8;
  overflow: hidden;
}

.about-facts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-facts-kicker {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.about-facts-title {
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-facts-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about-facts-checks {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.about-facts-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-main);
}

.about-facts-check::before {
  content: none;
}

.check-icon {
  color: var(--primary);
  font-weight: 700;
}

.about-facts-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-facts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.about-facts-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.2);
}

.about-facts-link {
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about-facts-link:hover {
  color: var(--primary);
}

.about-facts-side {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.about-facts-media {
  width: 85%;
  margin: 0;
}

.about-facts-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-facts-card {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 290px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(15, 118, 110, 0.08);
  border-top: 5px solid var(--primary);
}

.facts-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.facts-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.facts-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.fact {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fact dt {
  color: var(--text-muted);
}

.fact dd {
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.facts-cta-btn {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  background: var(--primary);
  padding: 12px;
  border-radius: 99px;
  transition: background 0.2s ease;
}

.facts-cta-btn:hover {
  background: var(--primary-dark);
}

@media (max-width: 992px) {
  .about-facts-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-facts-side {
    justify-content: center;
  }
  .about-facts-media {
    width: 100%;
  }
  .about-facts-card {
    position: static;
    width: 100%;
    margin-top: -60px;
    z-index: 2;
  }
}

/*! SERVICE SECTION */
.svc {
  padding: 100px 0;
  background: #fff;
}

.svc-head {
  max-width: 700px;
  margin-bottom: 80px;
}

.svc-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 16px;
}

.svc-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 24px;
}

.svc-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.svc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: stretch;
}

.svc-media {
  margin: 0;
  height: 100%;
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 120px 24px 24px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.svc-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.svc-row:first-of-type {
  padding-top: 0;
  border-top: none;
}

.svc-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.5;
  padding-top: 4px;
}

.svc-row-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.svc-row-desc {
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.svc-row-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
}

.svc-row-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.svc-row:hover .svc-row-link::after {
  width: 100%;
}

.svc-cta {
  margin-top: 48px;
}

/*! CONTACT */
.contact-cta {
  background: var(--primary);
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.cta-visual {
  width: 320px;
  height: 320px;
  justify-self: center;
  margin-bottom: 0;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-light);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.cta-grid input,
.cta-grid select {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-sans);
}

.cta-grid input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cta-submit {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-submit:hover {
  background: #fff;
  transform: translateY(-2px);
}

.cta-footer-info {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.cta-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--primary-light);
}

.cta-icon-svg svg {
  width: 100%;
  height: 100%;
}

.cta-link:hover {
  color: var(--primary-light);
}

/*! Reviews Section */
.reviews {
  padding: 100px 0;
  background-color: var(--bg-subtle);
}
.reviews-head {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 12px;
}
.reviews-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--text-main);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-light);
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
}
.review-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
}
.review-author strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-dark);
}
.review-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/*! FOOTER */
.site-footer {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 80px 0 40px;
  font-family: var(--font-sans);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
}
.footer-column h4 {
  color: var(--primary-light);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-light);
  transition: fill 0.3s ease;
}
.social-icon:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
}
.social-icon:hover svg {
  fill: var(--primary-dark);
}
.footer-bottom {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
.footer-bottom em {
  font-style: italic;
  font-size: 0.8rem;
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

/*! MOBILE */
.mobile-nav[hidden] {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid rgba(15, 118, 110, 0.35);
    outline-offset: 3px;
  }

  .burger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    display: block;
  }

  .burger::before,
  .burger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--text-main);
  }

  .burger::before {
    top: -8px;
  }

  .burger::after {
    top: 8px;
  }

  .site-header {
    background: #fff;
  }

  .mobile-nav {
    border-top: 1px solid var(--border);
    background: #fff;
  }

  .mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0 18px;
  }

  .mobile-nav .nav-link {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .mobile-nav .nav-ctas {
    margin-left: 0;
    padding-right: 0;
    border-left: 0;
    display: grid;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-copy h1 {
    font-size: 2.75rem;
  }

  .about-facts-inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about-facts-side {
    justify-content: center;
  }

  .about-facts-media {
    width: 100%;
    max-width: 500px;
  }

  .about-facts-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
  }

  .svc-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .svc-media {
    max-width: 600px;
    margin: 0 auto;
  }

  .svc-title {
    font-size: 2.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .trust-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 900px) {
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-visual {
    display: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-footer-info {
    justify-content: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media {
    height: 400px;
    width: 100%;
    box-shadow: 10px 10px 0 var(--primary-light);
  }
  .svc-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .svc-num {
    font-size: 1rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    font-size: 2rem;
  }
}
