:root {
  --sage: #8a9a7a;
  --sage-deep: #6f8062;
  --forest: #2f4a3c;
  --forest-soft: #3d5c4c;
  --beige: #e6d9c6;
  --beige-soft: #efe6d8;
  --cream: #f6f1e8;
  --cream-deep: #efe8db;
  --white: #ffffff;
  --charcoal: #2e2e2c;
  --ink: #3a3a37;
  --muted: #5f615c;
  --line: rgba(47, 74, 60, 0.12);
  --shadow: 0 18px 50px rgba(47, 74, 60, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
  --header: 84px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sage-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); }
h3 { font-size: 1.35rem; font-family: var(--font-body); font-weight: 560; letter-spacing: 0; }

p { margin: 0 0 1em; color: var(--ink); }
p.lead { font-size: 1.15rem; color: var(--muted); }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(47, 74, 60, 0.06);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--forest);
  min-width: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--white);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 450;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--forest);
  background: var(--beige-soft);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 560;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 74, 60, 0.18);
}
.btn-primary:hover { background: var(--forest-soft); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(47, 74, 60, 0.22);
}
.btn-ghost:hover { background: var(--white); color: var(--forest); }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; }
.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-deep); color: var(--white); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* Hero */
.hero {
  padding: 36px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 { margin-bottom: 16px; }
.hero .lead { max-width: 36rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: min(720px, 78vh);
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.photo-frame {
  position: relative;
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--sage);
  border-radius: 32px;
  z-index: -1;
}

.registered-with {
  margin-top: 22px;
  text-align: center;
}
.registered-with p {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.registered-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.registered-logos a {
  display: block;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  text-decoration: none;
}
.registered-logos img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(47, 74, 60, 0.16));
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -8px;
  margin-bottom: 24px;
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
}
.trust-item strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */
.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-forest {
  background: var(--forest);
  color: var(--cream);
}
.section-forest h2,
.section-forest h3 { color: var(--white); }
.section-forest p { color: #ffffff; }
.section-beige { background: var(--beige-soft); }

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img,
.about-visual img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  height: 560px;
  object-position: 50% 42%;
  box-shadow: var(--shadow);
}
.split picture { display: block; }

.prose p { max-width: 62ch; }

/* Cards */
.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  min-height: 210px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { margin: 0; color: var(--muted); }

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.quote-card p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--forest);
  font-style: italic;
}
.quote-card cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 20px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 560;
  color: var(--forest);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--sage);
  font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0 0 18px;
  color: var(--muted);
}

/* Blog */
.blog-card {
  overflow: hidden;
  padding: 0;
}
.blog-card .thumb {
  height: 8px;
  background: linear-gradient(90deg, var(--sage), var(--forest));
}
.blog-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 0.8rem; color: var(--sage-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.blog-card a.more {
  margin-top: auto;
  padding-top: 16px;
  text-decoration: none;
  font-weight: 560;
}

.article {
  max-width: 740px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.article .meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-panel {
  background: var(--forest);
  color: var(--cream);
  border-radius: 28px;
  padding: 36px 32px;
}
.contact-panel h2 { color: var(--white); }
.contact-panel p,
.contact-panel a { color: #ffffff; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}
.contact-list li {
  margin: 0 0 16px;
  padding-left: 0;
}
.contact-list strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 4px;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
}
.form-row { margin-bottom: 16px; }
.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 560;
  margin-bottom: 6px;
  color: var(--forest);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--charcoal);
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
  background: var(--white);
}
.honeypot { position: absolute; left: -9999px; }
.prose-block { max-width: 720px; }
.captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.captcha-row img {
  width: 228px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.captcha-hint {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.alert-error { background: #f8e6e4; color: #6b2c28; }
.alert-ok { background: #e5efe6; color: var(--forest); }

/* Footer */
.site-footer {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(138, 154, 122, 0.2), transparent 55%),
    var(--forest);
  color: #ffffff;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.75fr 0.9fr 1.15fr;
  gap: 28px 18px;
  align-items: start;
  margin-bottom: 36px;
}
.footer-identity p {
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 0.7em;
}
.site-footer h3 {
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer p,
.site-footer li,
.site-footer .legal {
  color: #ffffff;
}
.site-footer a { color: #ffffff; text-decoration: none; }
.site-footer a:hover { color: #ffffff; opacity: 0.85; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #ffffff;
  text-decoration: none;
}
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-ipr .ipr-pcard {
  max-width: 100%;
  border-radius: 14px;
}
.footer-ipr .ipr-pcard__row {
  gap: 10px;
  padding: 12px 12px;
}
.footer-ipr .ipr-pcard__seal {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
}
.footer-ipr .ipr-pcard__seal img {
  width: 64px !important;
  height: 64px !important;
}
.footer-ipr .ipr-pcard__name {
  font-size: 16px;
  line-height: 1.15;
}
.footer-ipr .ipr-pcard__label {
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.footer-ipr .ipr-pcard__num {
  margin-top: 2px;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 30;
  text-decoration: none;
}
.wa-float:hover { color: #fff; transform: scale(1.05); }

.page-hero {
  padding: 56px 0 24px;
  text-align: center;
}
.page-hero p { max-width: 640px; margin-inline: auto; color: var(--muted); }

.cta-band {
  text-align: center;
}
.cta-band .hero-actions { justify-content: center; }

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .grid-4,
  .trust {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-ipr {
    grid-column: 1 / -1;
    max-width: 280px;
  }
  .hero-photo img,
  .split img,
  .about-visual img { height: 460px; }
}

@media (max-width: 820px) {
  :root { --header: 76px; }
  .container { width: min(var(--max), calc(100% - 32px)); }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    inset: var(--header) 16px auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }
  .nav .header-cta {
    display: inline-flex;
    margin: 8px 4px 4px;
    width: calc(100% - 8px);
  }
  .hero-grid,
  .split,
  .contact-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .trust,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-ipr { max-width: 280px; }
  .hero { padding-top: 20px; }
  .hero-photo img,
  .about-visual img { height: 420px; }
  .registered-logos a,
  .registered-logos img { width: 72px; height: 72px; flex-basis: 72px; }
  .photo-frame::after { display: none; }
  .section { padding: 64px 0; }
  .form, .contact-panel { padding: 24px; }
}
