﻿:root {
  --green-950: #062f24;
  --green-900: #07382b;
  --green-800: #0d4a39;
  --sage: #83906a;
  --sage-soft: #eef5e9;
  --mint: #f6fbf4;
  --cream: #fffaf4;
  --text: #17251f;
  --muted: #59625a;
  --line: rgba(6, 47, 36, 0.12);
  --shadow: 0 18px 48px rgba(27, 43, 35, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(238, 245, 233, 0.92), rgba(255, 255, 255, 0.96) 44%, rgba(247, 252, 244, 0.98)),
    #fff;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--green-950);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 650px;
  margin: 14px 0 18px;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  font-weight: 700;
}

h1 em {
  display: block;
  color: var(--sage);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.65rem, 2.35vw, 2.7rem);
  font-weight: 600;
}

h3 {
  color: var(--green-950);
  font-size: 1.12rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--green-950);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand img {
  width: 218px;
  filter: brightness(0) invert(1);
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #dfead6;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 20px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--green-950);
  box-shadow: 0 14px 28px rgba(6, 47, 36, .18);
}

.btn-light {
  color: var(--green-950);
  background: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline {
  color: var(--green-950);
  background: rgba(255, 255, 255, .7);
  border-color: rgba(6, 47, 36, .35);
}

.nav-appointment {
  white-space: nowrap;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 86px));
  background: var(--green-950);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: min(760px, calc(100vh - 86px));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(650px, 100%);
  padding: clamp(48px, 8vw, 96px) 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-copy>p:not(.eyebrow) {
  max-width: 560px;
  color: #1d2a24;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.22) 68%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: -112px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(6, 47, 36, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
}

.feature-strip article {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(6, 47, 36, .08);
}

.feature-strip article:last-child {
  border-right: 0;
}

.hero-section+.about-section {
  padding-top: 52px;
}

.feature-strip i {
  color: var(--green-950);
  font-size: 1.55rem;
}

.feature-strip p {
  margin: 0;
  color: var(--text);
  font-size: .82rem;
  line-height: 1.35;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

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

.about-grid {
  grid-template-columns: 1.08fr .68fr 1.08fr;
  align-items: center;
}

.about-copy p {
  margin-bottom: 12px;
  color: #83906a;
  font-size: .96rem;
}

.signature strong {
  display: block;
  margin-top: 16px;
  color: var(--green-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
}

.signature span,
.signature small {
  display: block;
  color: var(--green-950);
  font-size: .76rem;
  font-weight: 400;
  text-transform: uppercase;
}

.portrait-card {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

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

.qualification-card {
  min-height: 310px;
  padding: 30px 36px;
  border-radius: 14px;
  background: rgba(246, 246, 246, .92);
}

.qualification-card h3,
.details-section h2 {
  margin-bottom: 20px;
  font-size: .9rem;
  font-family: Inter, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.qualification-card li {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0 0 19px;
  color: #27342e;
  font-size: .95rem;
}

.qualification-card i {
  width: 24px;
  color: var(--green-950);
  font-size: 1.25rem;
}

.qualification-svg-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--green-950);
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

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

.service-cards article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 10px 28px rgba(27, 43, 35, .04);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 28% 20%, #1b6a4e, var(--green-950));
  font-size: 1.95rem;
}

.service-cards li {
  position: relative;
  margin: 6px 0;
  padding-left: 18px;
  color: #23312b;
  font-size: .9rem;
}

.service-cards li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 900;
}

.process-section {
  width: min(1240px, calc(100% - 20px));
  padding: 28px 36px 36px;
  border-radius: 12px;
  background: rgba(245, 247, 244, .88);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.process-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 76px 1fr;
  gap: 14px;
  align-items: center;
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--green-950);
  font-weight: 900;
}

.process-steps i {
  color: var(--green-950);
  font-size: 3rem;
}

.process-steps h3 {
  margin-bottom: 5px;
  font-size: .95rem;
  font-family: Inter, sans-serif;
}

.process-steps p {
  margin: 0;
  color: #26342d;
  font-size: .86rem;
  line-height: 1.55;
}

.details-section {
  display: grid;
  grid-template-columns: 1.15fr .88fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.receive-grid article {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 86px;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: rgba(245, 247, 244, .8);
}

.receive-grid i {
  color: var(--green-950);
  font-size: 1.65rem;
}

.receive-grid span {
  color: #24312c;
  font-size: .73rem;
  line-height: 1.25;
}

.testimonial-carousel {
  position: relative;
  min-height: 250px;
}

.testimonial-card {
  display: none;
  min-height: 250px;
  padding: 30px;
  border-radius: 12px;
  background: rgba(245, 247, 244, .9);
}

.testimonial-card.active {
  display: block;
}

.stars {
  color: var(--sage);
  letter-spacing: 3px;
}

.testimonial-card p {
  color: #24312c;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8d9d4;
  cursor: pointer;
}

.slider-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: var(--sage);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: #24312c;
  font-size: .86rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  font-weight: 900;
}

.faq-list p {
  margin: 0 0 12px;
  font-size: .82rem;
}

.faq-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 16px;
  color: var(--green-950);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.blog-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(27, 43, 35, .04);
}

.blog-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.blog-grid h3,
.blog-grid p {
  padding: 0 18px;
}

.blog-grid h3 {
  margin-top: 16px;
}

.blog-grid p {
  padding-bottom: 18px;
  font-size: .9rem;
}

.contact-band {
  width: min(1240px, calc(100% - 20px));
  margin: 8px auto 0;
  padding: 24px max(26px, calc((100% - 1100px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 12px 12px 0 0;
  color: #fff;
  background: var(--green-950);
}

.contact-band>div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.contact-band>div>i {
  font-size: 2.6rem;
  color: #d8dfcb;
}

.contact-band h2 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.55rem;
}

.contact-band p {
  margin: 0;
  color: #e9efe6;
}

.site-footer {
  padding: 28px max(18px, calc((100% - 1180px) / 2)) 16px;
  background: rgba(248, 250, 247, .98);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1.08fr .85fr .85fr .85fr;
  gap: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: .78rem;
  font-family: Inter, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer li,
.site-footer p {
  margin: 7px 0;
  color: #27342e;
  font-size: .82rem;
  line-height: 1.45;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.site-footer a:hover {
  color: var(--green-800);
}

.site-footer i {
  width: 18px;
  color: var(--green-950);
}

.copyright {
  margin: 14px 0 0;
  text-align: center;
  font-size: .78rem;
}

.back-to-top,
.whatsapp-float {
  position: fixed;
  right: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgb(24, 121, 32);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.back-to-top:hover,
.whatsapp-float:hover {
  transform: translateY(-3px);
}

.back-to-top {
  bottom: 92px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(76, 47, 33, 0.12);
}

.back-to-top::before {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--green-950);
  border-left: 3px solid var(--green-950);
  transform: translateY(4px) rotate(45deg);
}

.whatsapp-float {
  bottom: 22px;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: #ffffff;
}

@media (min-width: 1440px) {

  .navbar,
  .hero-inner,
  .section-pad {
    width: min(1320px, calc(100% - 64px));
  }

  .hero-section,
  .hero-inner {
    min-height: min(820px, calc(100vh - 86px));
  }

  .feature-strip {
    width: min(1320px, calc(100% - 64px));
  }
}

@media (max-width: 1080px) {
  .nav-links {
    position: absolute;
    top: 86px;
    right: 16px;
    display: none;
    width: min(320px, calc(100vw - 32px));
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 12px;
    background: var(--green-950);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-appointment {
    display: none;
  }

  .about-grid,
  .details-section {
    grid-template-columns: 1fr;
  }

  .hero-section,
  .hero-inner {
    min-height: 640px;
  }

  .hero-section::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78) 58%, rgba(255, 255, 255, .18));
  }

  .feature-strip {
    margin-top: -70px;
  }

  .service-cards,
  .process-steps,
  .blog-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 96px;
  }

  .navbar {
    width: min(100% - 20px, 1180px);
    min-height: 76px;
    padding: 15px;
  }

  .brand img {
    width: 178px;
  }

  .nav-links {
    top: 76px;
  }

  .hero-section,
  .hero-inner {
    min-height: 620px;
  }

  .hero-copy {
    padding: 44px 0 126px;
  }

  .hero-section::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .88) 48%, rgba(255, 255, 255, .35) 100%);
  }

  .hero-media img {
    height: 100%;
    object-position: 58% center;
  }

  .feature-strip {
    margin-top: -104px;
  }

  .feature-strip,
  .receive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards article,
  .process-steps article {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-band,
  .contact-band>div {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .back-to-top,
  .whatsapp-float {
    right: 14px;
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    bottom: 82px;
  }

  .whatsapp-float {
    bottom: 14px;
  }
}