:root {
  --bg: #fbf6ef;
  --paper: #fffdf9;
  --paper-2: #f7eadf;
  --primary: #28665f;
  --primary-dark: #174842;
  --accent: #d88b74;
  --accent-2: #f4c8b4;
  --text: #20302d;
  --muted: #66736f;
  --border: rgba(32, 48, 45, 0.12);
  --shadow: 0 24px 70px rgba(28, 57, 52, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.topbar {
  background: var(--primary-dark);
  color: #f9efe5;
  min-height: 42px;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.9rem;
}

.topbar a {
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 239, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #76a89b);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 12px 32px rgba(40, 102, 95, .28);
}

.brand strong {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #31423f;
  font-weight: 700;
  font-size: .95rem;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(40, 102, 95, .22);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 7px 0;
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(216,139,116,.26), transparent 26%),
    linear-gradient(130deg, rgba(255,255,255,.88), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .55;
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  right: -130px;
  top: 140px;
  background: #b7d4c7;
}

.orb-two {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: 90px;
  background: #f0c8b9;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: rgba(40, 102, 95, .08);
  border: 1px solid rgba(40, 102, 95, .12);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
  color: var(--primary-dark);
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.9rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.13rem;
  margin: 24px 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 16px 34px rgba(40, 102, 95, .26);
}

.btn-ghost {
  background: rgba(255, 255, 255, .78);
  color: var(--primary-dark);
  border-color: var(--border);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.trust-row div {
  padding: 18px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
}

.trust-row strong {
  display: block;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}

.trust-row span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.main-photo {
  transform: rotate(2deg);
}

.main-photo img {
  height: 650px;
  object-fit: cover;
}

.main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(23,72,66,.62));
}

.floating-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: min(280px, calc(100% - 56px));
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.floating-note span,
.floating-note small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: .86rem;
}

.floating-note strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin: 2px 0;
}

.mini-card {
  position: absolute;
  right: -28px;
  top: 54px;
  max-width: 230px;
  padding: 20px;
  border-radius: 26px;
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 20px 46px rgba(23, 72, 66, .26);
  transform: rotate(-4deg);
}

.dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 999px;
  background: var(--accent-2);
  margin-bottom: 12px;
}

.intro-strip {
  padding: 34px 0;
  background: var(--primary-dark);
  color: #fff;
}

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

.strip-grid article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.06);
}

.strip-grid span {
  color: var(--accent-2);
  font-weight: 800;
}

.strip-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.22rem;
}

.strip-grid p {
  color: rgba(255,255,255,.74);
}

.about {
  background: var(--paper);
}

.about-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  height: 620px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.experience-badge strong {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.experience-badge span {
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

.about-copy p,
.split-copy p,
.contact-copy p,
.section-title p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-copy p {
  margin-top: 18px;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.credentials div {
  padding: 22px;
  border-radius: 22px;
  background: var(--paper-2);
  border: 1px solid var(--border);
}

.credentials strong,
.credentials span {
  display: block;
}

.credentials strong {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.credentials span {
  color: var(--muted);
}

.section-title {
  max-width: 760px;
  margin-bottom: 44px;
}

.row-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 24px;
}

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

.service-card {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.68);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(23,72,66,.06);
  overflow: hidden;
  min-height: 260px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(216,139,116,.18);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(40,102,95,.22);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scale(1.18);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(40, 102, 95, .1);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
}

.split-highlight {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.split-highlight::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(244,200,180,.12);
  right: -110px;
  top: -110px;
}

.split-highlight h2,
.split-highlight .eyebrow {
  color: #fff;
}

.split-highlight .eyebrow {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
}

.split-highlight p {
  color: rgba(255,255,255,.75);
  margin: 22px 0;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-list li {
  padding-left: 34px;
  position: relative;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-2);
  color: var(--primary-dark);
  font-size: .85rem;
  font-weight: 900;
}

.image-mosaic {
  position: relative;
  min-height: 540px;
}

.image-mosaic img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.mosaic-large {
  right: 0;
  top: 0;
  width: 78%;
  height: 470px;
  border-radius: 42px;
}

.mosaic-small {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 270px;
  border-radius: 32px;
  border: 10px solid var(--primary-dark);
}

.process {
  background: var(--paper);
}

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

.timeline-item {
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(23,72,66,.06);
}

.timeline-item > span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  margin-bottom: 26px;
}

.timeline-item h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--muted);
}

.text-link {
  color: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

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

.blog-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(23,72,66,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.blog-card img {
  height: 250px;
  object-fit: cover;
}

.blog-card div {
  padding: 24px;
}

.blog-card span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

.blog-card h3 {
  margin: 8px 0 12px;
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.blog-card p {
  color: var(--muted);
}

.contact {
  background: var(--paper);
}

.contact-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a {
  padding: 20px;
  border-radius: 22px;
  background: var(--paper-2);
  border: 1px solid var(--border);
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list strong {
  color: var(--primary-dark);
}

.contact-list span {
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: #fbf8f4;
  outline: none;
  transition: border .25s ease, box-shadow .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(40,102,95,.55);
  box-shadow: 0 0 0 4px rgba(40,102,95,.1);
}

.form-feedback {
  min-height: 24px;
  color: var(--primary);
  font-weight: 800;
}

.map-section {
  padding: 0 0 96px;
  background: var(--paper);
}

.map-placeholder {
  min-height: 310px;
  border-radius: 38px;
  padding: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23,72,66,.86), rgba(40,102,95,.64)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=85') center/cover;
  color: #fff;
}

.map-placeholder span {
  color: var(--accent-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.map-placeholder h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 6px 0;
}

.map-placeholder p {
  color: rgba(255,255,255,.78);
}

.map-placeholder .btn-ghost {
  background: rgba(255,255,255,.13);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20b15a;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 16px 34px rgba(32,177,90,.35);
}

.footer {
  padding: 54px 0;
  background: #132f2b;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 36px;
}

.footer p {
  max-width: 520px;
  color: rgba(255,255,255,.67);
  margin-top: 16px;
}

.footer .brand small {
  color: rgba(255,255,255,.68);
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  color: var(--accent-2);
}

.footer-grid a:not(.brand) {
  color: rgba(255,255,255,.72);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1020px) {
  .hero-grid,
  .about-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

  .main-photo img,
  .about-image img {
    height: 560px;
  }

  .cards-grid,
  .timeline,
  .blog-grid,
  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .navbar {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,253,249,.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    text-align: center;
  }

  .section-pad {
    padding: 70px 0;
  }

  .hero-grid {
    gap: 44px;
  }

  .trust-row,
  .cards-grid,
  .timeline,
  .blog-grid,
  .strip-grid,
  .credentials,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-photo img,
  .about-image img {
    height: 460px;
  }

  .mini-card {
    right: 8px;
    top: 22px;
  }

  .row-title,
  .map-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-mosaic {
    min-height: 420px;
  }

  .mosaic-large {
    width: 86%;
    height: 350px;
  }

  .mosaic-small {
    width: 58%;
    height: 210px;
    border-width: 7px;
  }
}

@media (max-width: 520px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 3rem;
  }

  .brand small {
    font-size: .72rem;
  }

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

  .main-photo {
    transform: none;
  }

  .main-photo img,
  .about-image img {
    height: 390px;
  }

  .floating-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .mini-card {
    display: none;
  }

  .service-card,
  .timeline-item,
  .contact-form {
    padding: 24px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }
}
