:root {
  --green-950: #061812;
  --green-900: #0b2f23;
  --green-800: #114534;
  --green-700: #146047;
  --green-500: #1c8b61;
  --green-300: #8fd8b9;
  --mint: #ecfff5;
  --white: #ffffff;
  --paper: #f7fbf7;
  --ink: #101815;
  --muted: #66756e;
  --line: rgba(10, 47, 35, 0.12);
  --shadow: 0 30px 80px rgba(8, 36, 26, 0.18);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--green-950);
  isolation: isolate;
}

.site-parallax-bg {
  position: fixed;
  z-index: 0;
  inset: -12vh 0;
  overflow: hidden;
  pointer-events: none;
}

.parallax-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.layer-photo {
  background:
    linear-gradient(180deg, rgba(6, 24, 18, 0.36), rgba(6, 24, 18, 0.3)),
    url("https://images.unsplash.com/photo-1767249629645-b069c92fa4a1?auto=format&fit=crop&w=2200&q=85") center / cover;
  filter: saturate(0.96) contrast(1.05);
  opacity: 0.88;
  transform: translate3d(0, calc(var(--parallax-y, 0px) * -0.18), 0) scale(1.18);
}

.layer-strands {
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0 42px,
      rgba(143, 216, 185, 0.12) 43px 45px,
      transparent 46px 86px
    );
  opacity: 0.32;
  transform: translate3d(0, calc(var(--parallax-y, 0px) * -0.36), 0);
}

.layer-glow {
  background:
    radial-gradient(circle at 18% 18%, rgba(143, 216, 185, 0.24), transparent 32%),
    radial-gradient(circle at 82% 52%, rgba(28, 139, 97, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(6, 24, 18, 0.1), rgba(6, 24, 18, 0.86));
  transform: translate3d(0, calc(var(--parallax-y, 0px) * -0.2), 0);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner > img,
.booking-card img {
  object-position: center top;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  position: relative;
  z-index: 1;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(22px, 6vw, 110px);
  color: var(--white);
}

.site-header.scrolled {
  background: rgba(6, 24, 18, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-size: 1.55rem;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 38px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-round,
.menu-toggle,
.arrow-row button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-900);
}

.nav-round svg,
.menu-toggle svg,
.btn svg,
footer svg,
.arrow-row svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

.site-header.menu-open .menu-toggle .icon-menu {
  display: none;
}

.site-header.menu-open .menu-toggle .icon-close {
  display: block;
}

.hero {
  position: relative;
  display: grid;
  min-height: 730px;
  padding: 150px clamp(22px, 7vw, 132px) 118px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(6, 24, 18, 0.12), rgba(6, 24, 18, 0.8)),
    url("https://images.unsplash.com/photo-1765146487984-71305d1be5bc?auto=format&fit=crop&w=1800&q=80") center / cover;
}

#heroScene,
.hero-shade {
  position: absolute;
  inset: 0;
}

#heroScene {
  z-index: 1;
  opacity: 0.56;
  mix-blend-mode: screen;
}

.hero-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 70% 18%, rgba(143, 216, 185, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(6, 24, 18, 0.78), rgba(6, 24, 18, 0.28) 48%, rgba(6, 24, 18, 0.62)),
    linear-gradient(0deg, rgba(9, 55, 38, 0.98), transparent 34%);
}

.hero-card,
.hero-copy,
.hero-actions {
  position: relative;
  z-index: 3;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
}

.hero-card {
  align-self: start;
  width: min(100%, 420px);
  min-height: 190px;
  margin-top: 62px;
  padding: 38px;
  border-radius: var(--radius);
}

.hero-card strong {
  position: absolute;
  top: 42px;
  right: 38px;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 0.8;
}

.hero-card p {
  max-width: 280px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.18;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 39px;
  height: 39px;
  margin-right: -12px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(143, 216, 185, 0.95), rgba(20, 96, 71, 0.95)),
    radial-gradient(circle at 40% 28%, #fff 0 18%, transparent 19%);
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, #fff, #b7efd8);
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, #123d2d, #53bf8d);
}

.hero-copy {
  align-self: end;
  width: min(850px, 100%);
  margin-top: 78px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.3rem, 5.8vw, 5.45rem);
  font-weight: 650;
  line-height: 0.98;
}

.hero h1 span,
h2 span {
  color: var(--green-300);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-actions {
  position: absolute;
  right: clamp(22px, 7vw, 132px);
  bottom: 160px;
  width: min(500px, calc(100% - 44px));
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  text-align: right;
}

.button-row {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 28px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(28, 139, 97, 0.3);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--green-900);
}

.btn.small {
  min-height: 44px;
  padding-inline: 24px;
  font-size: 0.88rem;
}

.hero-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.35;
}

.section-pad {
  padding: 92px clamp(22px, 7vw, 132px);
}

.intro,
.split-feature,
.testimonials {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(5px);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 780px;
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.section-heading p {
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.photo-tile,
.feature-tile {
  min-height: 335px;
}

.feature-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 58px);
  background: var(--white);
  text-align: center;
}

.feature-tile h3 {
  margin: 0;
  color: var(--green-800);
  font-size: 1.55rem;
}

.feature-tile p {
  max-width: 420px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.45;
}

.feature-tile .btn {
  margin-top: 28px;
}

.icon-tile svg {
  width: 74px;
  height: 74px;
  margin-bottom: 34px;
  color: var(--green-700);
  stroke-width: 1.5;
}

.care {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 247, 0.76));
  backdrop-filter: blur(5px);
}

.care-layout {
  display: grid;
  grid-template-columns: 0.88fr 0.95fr 1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
}

.segmented {
  display: flex;
  width: max-content;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(7, 39, 28, 0.08);
}

.tab-pill {
  min-width: 112px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.tab-pill.active {
  background: var(--green-700);
  color: var(--white);
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
  color: var(--muted);
}

.mini-nav span:first-child {
  color: var(--green-800);
  font-weight: 800;
}

.service-image {
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-panel h3 {
  margin: 0 0 22px;
  color: var(--green-900);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.service-list {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.service-item strong {
  color: var(--green-900);
}

.service-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(54px, 7vw, 118px);
  padding-top: 70px;
}

.split-feature figure {
  min-height: 520px;
  margin-left: calc(clamp(22px, 7vw, 132px) * -1);
  background: var(--green-700);
}

.split-feature article {
  max-width: 660px;
}

.split-feature p,
.banner p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.48;
}

.split-feature .btn {
  margin-top: 22px;
}

.banner {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--white);
}

.banner > img,
.banner-overlay {
  position: absolute;
  inset: 0;
}

.banner-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(6, 24, 18, 0.68) 42%, rgba(6, 24, 18, 0.06));
}

.banner article {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  padding: 125px clamp(22px, 7vw, 132px);
}

.banner h3 {
  margin: 28px 0 34px;
  font-size: 1.4rem;
  font-weight: 500;
}

.banner p {
  color: rgba(255, 255, 255, 0.86);
}

.testimonials {
  padding-top: 128px;
}

.testimonial-block {
  display: grid;
  grid-template-columns: 0.95fr 190px 1fr;
  align-items: center;
  min-height: 520px;
}

.testimonial-title {
  display: flex;
  min-height: 465px;
  align-items: center;
  padding: 70px clamp(24px, 7vw, 100px);
  color: var(--white);
  background:
    linear-gradient(rgba(20, 96, 71, 0.88), rgba(20, 96, 71, 0.88)),
    url("https://images.unsplash.com/photo-1767249629645-b069c92fa4a1?auto=format&fit=crop&w=1000&q=80") center / cover;
}

.testimonial-title h2 {
  max-width: 470px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.testimonial-block figure {
  z-index: 3;
  width: 250px;
  height: 250px;
  margin: 0 -30px 0 -95px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-block article {
  padding-left: 90px;
}

.testimonial-block h3 {
  margin: 0;
  font-size: 2rem;
}

.role {
  margin: 8px 0 24px;
  color: var(--muted);
}

.stars {
  display: flex;
  gap: 7px;
}

.stars span {
  width: 22px;
  height: 22px;
  background: #ffc93f;
  clip-path: polygon(50% 0, 63% 35%, 100% 35%, 70% 57%, 82% 100%, 50% 74%, 18% 100%, 30% 57%, 0 35%, 37% 35%);
}

.testimonial-block article > p:last-of-type {
  max-width: 610px;
  margin-top: 70px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.38;
}

.arrow-row {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  margin-top: 38px;
}

.arrow-row button {
  border: 1px solid var(--green-900);
  background: var(--white);
}

.booking {
  position: relative;
  padding: 80px clamp(22px, 7vw, 132px) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0 53%, rgba(17, 69, 52, 0.88) 53% 100%);
  backdrop-filter: blur(5px);
}

.booking-card {
  position: relative;
  display: grid;
  min-height: 300px;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
  padding: 58px clamp(28px, 6vw, 92px);
}

.booking-card h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
}

.booking-card p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.44;
}

.booking-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  opacity: 0.9;
}

.newsletter {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 600px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 8px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--ink);
}

.newsletter .btn {
  min-width: 175px;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 82px clamp(22px, 7vw, 132px) 42px;
  background: rgba(17, 69, 52, 0.9);
  backdrop-filter: blur(5px);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: clamp(30px, 5vw, 74px);
}

.site-footer h3 {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.18rem;
  font-weight: 500;
}

.site-footer a:not(.brand) {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.35;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials a {
  margin: 0;
}

.copyright {
  margin: 58px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-widget {
  position: fixed;
  z-index: 40;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #25d366;
  color: var(--green-950);
  box-shadow: 0 18px 44px rgba(6, 24, 18, 0.28);
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(6, 24, 18, 0.34);
}

.whatsapp-widget svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 12px);
    right: clamp(22px, 6vw, 110px);
    left: clamp(22px, 6vw, 110px);
    display: grid;
    justify-content: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(6, 24, 18, 0.94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    border-radius: var(--radius);
    padding: 14px 16px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .care-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-tabs {
    grid-column: 1 / -1;
  }

  .hero-actions {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
    text-align: left;
  }

  .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-card {
    margin-top: 30px;
    padding: 28px;
  }

  .hero-card strong {
    top: 30px;
    right: 28px;
  }

  .hero-copy {
    margin-top: 76px;
  }

  .button-row,
  .newsletter {
    flex-direction: column;
  }

  .btn,
  .newsletter .btn {
    width: 100%;
  }

  .feature-grid,
  .care-layout,
  .split-feature,
  .testimonial-block,
  .booking-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-tile,
  .feature-tile {
    min-height: 285px;
  }

  .split-feature figure {
    min-height: 390px;
    margin-left: 0;
  }

  .testimonial-block figure {
    width: min(260px, 80vw);
    height: min(260px, 80vw);
    margin: -120px auto 0;
  }

  .testimonial-block article {
    padding: 38px 0 0;
  }

  .testimonial-block article > p:last-of-type {
    margin-top: 34px;
  }

  .booking-card {
    padding-bottom: 260px;
  }

  .booking-card img {
    width: 100%;
    height: 235px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 18px;
  }

  .brand small {
    max-width: 130px;
    line-height: 1.1;
  }

  .nav-round {
    width: 46px;
    height: 46px;
  }

  .main-nav {
    right: 18px;
    left: 18px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-card p {
    max-width: 210px;
  }

  .section-pad {
    padding: 72px 18px;
  }

  .segmented {
    width: 100%;
  }

  .tab-pill {
    min-width: 0;
    flex: 1;
  }

  .banner article {
    padding: 88px 18px;
  }

  .booking {
    padding-inline: 18px;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .whatsapp-widget {
    width: 56px;
    height: 56px;
    min-height: 0;
    padding: 0;
  }

  .whatsapp-widget span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .layer-photo,
  .layer-strands,
  .layer-glow {
    transform: none;
  }
}
