﻿:root {
  --olive: #566633;
  --olive-dark: #2f3a20;
  --sage: #8e9a74;
  --mist: #eef1e8;
  --cream: #fbfaf7;
  --clay: #caa98f;
  --ink: #18201b;
  --muted: #687066;
  --line: rgba(86, 102, 51, .16);
  --shadow: 0 22px 70px rgba(47, 58, 32, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: absolute; left: -999px; top: 12px; }
.skip-link:focus { left: 12px; z-index: 50; background: white; padding: 10px 14px; border-radius: var(--radius); }

.site-header {
  position: relative;
  z-index: 30;
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: .25s ease;
}
.nav-shell {
  width: min(1180px, 100%);
  margin: auto;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand img { width: 150px; height: 64px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; justify-content: center; gap: 28px; color: var(--olive-dark); font-size: 14px; font-weight: 600; }
.nav-links a { opacity: .82; transition: .2s ease; }
.nav-links a:hover { opacity: 1; color: var(--olive); }
.nav-cta, .button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s ease;
}
.nav-cta, .button.primary { background: var(--olive); color: white; box-shadow: 0 14px 34px rgba(86, 102, 51, .22); }
.button.secondary { background: rgba(255,255,255,.76); color: var(--olive-dark); }
.button:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(86, 102, 51, .24); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.8); }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--olive-dark); margin: 4px auto; }

.hero {
  min-height: 96svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 70px 24px 54px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(251,250,247,.96), rgba(251,250,247,.72) 45%, rgba(251,250,247,.14));
}
.hero-content { width: min(660px, 100%); margin-left: max(0px, calc((100vw - 1180px) / 2)); padding-bottom: 34px; }
.eyebrow {
  display: inline-flex;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; letter-spacing: 0; }
h1 { font-size: clamp(40px, 5.8vw, 76px); color: var(--olive-dark); max-width: 660px; }
h2 { font-size: clamp(30px, 3.8vw, 48px); color: var(--olive-dark); }
h3 { font-size: 19px; color: var(--olive-dark); }
p { margin: 0; color: var(--muted); }
.hero-content p { font-size: clamp(16px, 1.45vw, 19px); max-width: 590px; margin: 20px 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 54px;
  width: 286px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; color: var(--olive-dark); }
.availability { margin-top: 18px; display: flex; gap: 10px; align-items: center; color: var(--olive); font-weight: 700; font-size: 13px; }
.availability-dot { width: 9px; height: 9px; border-radius: 50%; background: #77a665; box-shadow: 0 0 0 7px rgba(119,166,101,.16); flex: 0 0 auto; }
[data-content-key] { white-space: pre-line; }

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trust-strip div { padding: 24px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; color: var(--olive-dark); }
.trust-strip span { color: var(--muted); font-size: 14px; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 112px 0;
}
.section-heading { max-width: 760px; margin-bottom: 42px; }
.about, .benefits, .scheduler, .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.section-copy p, .scheduler-copy p { margin-top: 24px; font-size: 17px; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-grid span { padding: 10px 14px; border-radius: 999px; background: var(--mist); color: var(--olive-dark); font-weight: 700; font-size: 13px; }
.portrait-card, .benefit-image, .calendar-card {
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-card img { height: 480px; width: 100%; object-fit: cover; object-position: center 28%; }
.portrait-card div { padding: 24px; }
.portrait-card strong { color: var(--olive-dark); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area-card {
  min-height: 248px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  transition: .25s ease;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(86,102,51,.34); }
.area-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--olive);
  margin-bottom: 28px;
  font-size: 21px;
  line-height: 1;
}
.area-card p { margin-top: 14px; }

.benefits { width: 100%; max-width: none; background: var(--mist); padding: 100px max(16px, calc((100vw - 1180px)/2)); }
.benefit-image img { height: 560px; width: 100%; object-fit: cover; }
.benefit-panel { padding: 42px; background: rgba(255,255,255,.62); border-radius: var(--radius); }
.check-list { padding: 0; margin: 28px 0 0; list-style: none; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 34px; color: var(--muted); }
.check-list li::before, .diff-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
  transform: rotate(-45deg);
}

.testimonial-shell { display: grid; grid-template-columns: 48px 1fr 48px; gap: 18px; align-items: center; }
.testimonial-track { min-height: 260px; position: relative; }
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: .35s ease;
  padding: 44px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.testimonial.active { opacity: 1; transform: translateX(0); }
.testimonial p { font-family: "Playfair Display", Georgia, serif; font-size: clamp(22px, 2.8vw, 32px); color: var(--olive-dark); line-height: 1.24; }
.testimonial strong { display: block; margin-top: 24px; color: var(--olive); }
.slider-btn { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--olive); font-size: 20px; font-weight: 800; cursor: pointer; }

.process { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline li { padding: 28px; border-radius: var(--radius); background: white; border: 1px solid var(--line); position: relative; }
.timeline span { color: var(--clay); font-weight: 800; display: block; margin-bottom: 28px; }
.timeline p { margin-top: 12px; font-size: 15px; }

.scheduler {
    width: 100%;
    max-width: none;
    padding: 110px max(16px, calc((100vw - 1180px)/2));
    background: linear-gradient(135deg, #fbfaf7, #eef1e8);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.scheduler-copy{
    max-width:700px;
}

.scheduler-copy h2{
    margin-bottom:20px;
}

.scheduler-copy p{
    margin:20px auto 35px;
    max-width:560px;
}

.calendar-card { padding: 26px; }
.calendar-top, .calendar-confirm { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.calendar-top span { color: var(--olive); font-weight: 700; font-size: 13px; }
.calendar-grid { margin: 28px 0 22px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.calendar-grid span { text-align: center; font-size: 12px; color: var(--muted); font-weight: 700; }
.calendar-grid button, .time-list button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  height: 54px;
  color: var(--muted);
  cursor: pointer;
}
.calendar-grid .available { color: var(--olive-dark); background: var(--mist); font-weight: 800; }
.calendar-grid .selected, .time-list .selected { background: var(--olive); color: white; }
.time-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.calendar-confirm { margin-top: 24px; padding: 18px; border-radius: var(--radius); background: var(--mist); }
.calendar-confirm span { color: var(--muted); }

.diff-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.diff-grid article { position: relative; padding: 24px 18px 24px 42px; border: 1px solid var(--line); border-radius: var(--radius); background: white; font-weight: 800; color: var(--olive-dark); }
.diff-grid article::before { left: 18px; top: 29px; }

.accordion { display: grid; gap: 12px; max-width: 860px; }
.faq-item { border: 1px solid var(--line); background: white; border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 0;
  background: white;
  color: var(--olive-dark);
  cursor: pointer;
  font-weight: 800;
  padding: 20px 24px;
  text-align: left;
}
.faq-question span:last-child {
  flex: 0 0 auto;
  transition: transform .25s ease;
}
.faq-item.is-open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}
.faq-answer p {
  padding: 0 24px 20px;
  white-space: pre-line;
}

.home-blog .section-heading p { margin-top: 18px; max-width: 680px; }
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.home-blog-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.home-blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.home-blog-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}
.home-blog-card span {
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.home-blog-card h3 { font-size: 20px; }
.home-blog-card p { font-size: 14px; }

.contact {
  width: 100%;
  max-width: none;
  padding: 100px max(16px, calc((100vw - 1180px)/2));
  background: var(--olive-dark);
}
.contact h2, .contact p, .contact li { color: white; }
.contact .eyebrow { color: #d7dfc4; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0; }
.contact ul { padding: 0; margin: 0; list-style: none; color: white; display: grid; gap: 10px; }
.map { width: 100%; height: 420px; border: 0; border-radius: var(--radius); filter: saturate(.86) contrast(.96); }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: .25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
}
.whatsapp-float span {
  width: 100%;
  height: 100%;
  display: block;
  background: url("assets/whatsapp_icon.png") center / contain no-repeat;
}
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 58px max(16px, calc((100vw - 1180px)/2)) 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(220px, .9fr) minmax(220px, .7fr);
  gap: 48px;
  align-items: start;
}
.footer-brand img { width: 170px; margin-bottom: 18px; }
.footer-brand p { max-width: 430px; }
.footer-contact {
  display: grid;
  gap: 12px;
  font-style: normal;
}
.footer strong {
  display: block;
  color: var(--olive-dark);
  font-size: 13px;
  letter-spacing: .12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-contact a,
.footer-contact > span,
.footer-bottom,
.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
}
.footer-contact a,
.footer-contact > span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}
.footer-contact i {
  color: var(--olive);
  font-size: 16px;
  line-height: 1.5;
}
.footer-contact a span,
.footer-contact > span span {
  min-width: 0;
}
.footer-contact a:hover,
.footer-bottom a:hover { color: var(--olive); }
.footer-social { justify-self: end; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--mist);
  color: var(--olive-dark);
  transition: .25s ease;
}
.social-icons a:hover {
  background: var(--olive);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(86, 102, 51, .18);
}
.social-icons svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    padding: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .hero { min-height: 92svh; padding-top: 70px; }
  .hero-card { position: static; margin: 18px 0 0; width: min(360px, 100%); }
  .trust-strip, .about, .benefits, .scheduler, .contact { grid-template-columns: 1fr; }
  .trust-strip { margin-top: 18px; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .home-blog-grid { grid-template-columns: 1fr 1fr; }
  .timeline, .diff-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-social { justify-self: start; }
}

@media (max-width: 620px) {
  .site-header { padding: 10px 12px; }
  .brand img { width: 126px; height: 56px; }
  .hero { padding: 70px 24px 42px; align-items: end; }
  .hero::after { background: linear-gradient(180deg, rgba(251,250,247,.96), rgba(251,250,247,.82) 55%, rgba(251,250,247,.62)); }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; line-height: 1.12; }
  .section {
    width: calc(100% - 48px);
    padding: 76px 0;
  }
  .benefits,
  .scheduler,
  .contact {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section-copy p,
  .scheduler-copy p,
  .benefit-panel p,
  .contact p,
  .contact li,
  .area-card p,
  details p {
    font-size: 15px;
    line-height: 1.65;
  }
  .section-heading { margin-bottom: 30px; }
  .cards-grid, .timeline, .diff-grid, .testimonial-shell { grid-template-columns: 1fr; }
  .home-blog-grid { grid-template-columns: 1fr; }
  .slider-btn { display: none; }
  .testimonial-track { min-height: 360px; }
  .testimonial { padding: 28px; }
  .portrait-card img, .benefit-image img { height: 360px; }
  .benefit-panel,
  .calendar-card,
  .area-card,
  .timeline li,
  .testimonial,
  details {
    padding-left: 22px;
    padding-right: 22px;
  }
  .calendar-grid { gap: 7px; }
  .calendar-grid button { height: 48px; }
  .time-list { grid-template-columns: 1fr; }
  .map { height: 340px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}
