:root {
  --ink: #171911;
  --muted: #707365;
  --olive: #717a4e;
  --olive-deep: #465032;
  --olive-dark: #252a1a;
  --sage: #dde4ca;
  --sage-soft: #f1f4e9;
  --stone: #f7f2e8;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(37, 42, 26, .13);
  --line-strong: rgba(37, 42, 26, .22);
  --shadow: 0 24px 70px rgba(37, 42, 26, .13);
  --shadow-soft: 0 16px 42px rgba(37, 42, 26, .09);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(255,253,248,.96), rgba(255,253,248,.70));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(37,42,26,.06);
}
.header-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 18px 12px 24px;
  border: 1px solid rgba(37,42,26,.10);
  border-radius: 26px;
  background: rgba(255,253,248,.92);
  box-shadow: 0 14px 36px rgba(37,42,26,.08);
}
.logo { display: inline-flex; align-items: center; text-decoration: none; min-width: 0; }
.logo img { width: 188px; height: auto; display: block; mix-blend-mode: multiply; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 760;
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--olive-dark);
  opacity: .72;
  transition: background .18s ease, color .18s ease, opacity .18s ease, transform .18s ease;
}
.nav a:hover { opacity: 1; background: var(--sage-soft); transform: translateY(-1px); }
.nav-cta {
  margin-left: 4px;
  padding: 10px 17px !important;
  background: var(--olive-dark);
  color: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 12px 24px rgba(37,42,26,.18);
}
.nav-cta:hover { background: #13170d !important; color: #fff !important; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(37,42,26,.14);
  background: var(--paper);
  border-radius: 999px;
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 2px; border-radius: 99px; background: var(--olive-dark); display: block; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 12% 12%, rgba(221,228,202,.9), transparent 28rem),
    linear-gradient(135deg, #fffdf8 0%, #f7f2e8 100%);
}
.hero::after {
  content: '';
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(113,122,78,.13);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, .82fr); gap: 54px; align-items: center; }
.hero-copy { max-width: 790px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--olive-deep); font-size: 12px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 42px; height: 1px; background: currentColor; opacity: .72; }
h1, h2, h3 { line-height: 1.03; letter-spacing: -.045em; }
h1 { margin: 0; max-width: 830px; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(46px, 7vw, 92px); }
h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 52px); }
h3 { margin: 0 0 10px; font-size: 24px; }
h1 span, .text-olive { color: var(--olive-deep); }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); margin: 24px 0 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 19px; border-radius: 999px; border: 1px solid transparent; text-decoration: none !important; font-weight: 850; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--olive-dark); color: #fff !important; box-shadow: 0 15px 34px rgba(37,42,26,.22); }
.btn-primary:hover { background: #15190f; }
.btn-secondary { background: rgba(255,253,248,.88); color: var(--olive-dark) !important; border-color: rgba(37,42,26,.18); }
.btn-whatsapp { background: #5d683f; color: #fff !important; border-color: rgba(93,104,63,.35); box-shadow: 0 14px 28px rgba(93,104,63,.20); }
.btn-whatsapp:hover { background: #48522f; }
.btn-full { width: 100%; margin-top: 12px; }

.home-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 600px;
  margin-top: 32px;
}
.home-proof-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,253,248,.82);
  box-shadow: var(--shadow-soft);
}
.home-proof-row strong { display: block; color: var(--olive); font-family: Georgia, 'Times New Roman', serif; font-size: 30px; line-height: 1; font-weight: 400; }
.home-proof-row span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; font-weight: 760; }
.hero-photo-stack {
  position: relative;
  min-height: 600px;
}
.hero-photo {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 10px solid rgba(255,253,248,.95);
  box-shadow: var(--shadow);
  background: var(--stone);
}
.hero-photo-main {
  inset: 0 4% 7% 13%;
  width: 78%;
  height: 82%;
  border-radius: 36px;
  object-position: center center;
}
.hero-photo-small {
  width: 42%;
  height: 34%;
  border-radius: 28px;
}
.hero-photo-small.one { left: 0; bottom: 0; object-position: center center; }
.hero-photo-small.two { right: 0; top: 10%; object-position: center center; }

.section { padding: 82px 0; }
.section-soft { background: var(--sage-soft); }
.section-stone { background: var(--stone); }
.section-head { max-width: 820px; margin: 0 auto 36px; text-align: center; }
.section-head.align-left { margin-left: 0; text-align: left; }
.section-head h2 { margin: 0 0 12px; }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.hero-card, .card, .photo-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,253,248,.94); box-shadow: var(--shadow-soft); }
.hero-card { padding: 28px; }
.card { padding: 26px; }
.card p { color: var(--muted); margin: 0 0 18px; }
.compact-card { display: flex; flex-direction: column; min-height: 260px; }
.compact-card .card-link { margin-top: auto; }
.card-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--olive-dark);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
}
.badge { display: inline-flex; margin-bottom: 14px; padding: 7px 11px; border-radius: 999px; background: var(--sage); color: var(--olive-deep); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.photo-card { overflow: hidden; padding: 0; transition: transform .18s ease, box-shadow .18s ease; }
.photo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 255px; display: block; object-fit: cover; filter: saturate(.92) contrast(.98); background: var(--stone); }
.photo-card .card-body { padding: 23px; }
.photo-card p { color: var(--muted); margin: 0 0 18px; }

.editorial-split { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 48px; align-items: start; }
.process-list { display: grid; gap: 16px; }
.process-list div { position: relative; padding: 22px 24px 22px 76px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-soft); }
.process-list span { position: absolute; left: 22px; top: 22px; display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 999px; background: var(--olive-dark); color: #fff; font-size: 12px; font-weight: 900; }
.process-list strong { display: block; font-size: 18px; color: var(--olive-dark); }
.process-list p { margin: 6px 0 0; color: var(--muted); }

ul.clean-list { padding: 0; margin: 16px 0 0; list-style: none; }
ul.clean-list li { position: relative; padding-left: 28px; margin: 10px 0; color: var(--muted); }
ul.clean-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 999px; background: var(--sage); color: var(--olive-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; }

.service-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 120px 0 64px;
  background: var(--olive-dark);
  color: #fff;
}
.service-hero::before { content: ''; position: absolute; inset: 0; background: var(--service-photo, none) center/cover no-repeat; opacity: .62; }
.service-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,24,18,.88), rgba(22,24,18,.48) 58%, rgba(22,24,18,.20)); }
.service-hero .container { position: relative; z-index: 1; }
.service-hero .eyebrow, .service-hero .lead { color: rgba(255,255,255,.84); }
.service-hero h1 { color: #fff; }
.service-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 28px; align-items: start; }
.sidebar { position: sticky; top: 112px; }
.price-note { padding: 24px; border-radius: var(--radius-md); background: var(--stone); border: 1px solid var(--line); }

.form-card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fffdf8; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 850; font-size: 13px; color: var(--ink); }
input, select, textarea { width: 100%; border: 1px solid rgba(37,42,26,.18); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; }
textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(113,122,78,.18); border-color: var(--olive); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-submit-row { margin-bottom: 14px; }
.whatsapp-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(93,104,63,.22);
  border-radius: 20px;
  background: #f2f4eb;
}
.whatsapp-direct span { color: var(--olive-dark); font-weight: 850; }
.notice { padding: 16px 18px; border-radius: 18px; background: var(--sage); color: var(--olive-dark); font-weight: 800; }

.table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: #fffdf8; }
.table th, .table td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table th { background: var(--sage); color: var(--olive-dark); }

.footer { background: #171a12; color: rgba(255,255,255,.78); padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 28px; }
.footer a { color: #fff; text-decoration: none; }
.footer h3 { color: #fff; margin-top: 0; letter-spacing: -.02em; }
.footer-logo { width: 210px; padding: 13px 16px; border-radius: 18px; background: #f6f2e9; mix-blend-mode: normal; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

@media (max-width: 980px) {
  .hero-grid, .service-layout, .grid-2, .footer-grid, .editorial-split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar { position: static; }
  .site-header { padding-top: 8px; }
  .header-shell { min-height: 66px; padding: 9px 9px 9px 17px; border-radius: 23px; }
  .nav { display: none; position: absolute; left: 16px; right: 16px; top: 88px; padding: 14px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,253,248,.98); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 4px; }
  .nav a { justify-content: space-between; width: 100%; }
  .nav.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .hero-photo-stack { min-height: 520px; }
}
@media (max-width: 680px) {
  .grid-3, .form-grid, .home-proof-row { grid-template-columns: 1fr; }
  .hero, .section { padding: 58px 0; }
  .service-hero { min-height: 440px; padding: 96px 0 50px; }
  .logo img { width: 162px; }
  .hero-photo-stack { min-height: 430px; }
  .hero-photo { border-width: 7px; }
  .hero-photo-main { inset: 0 0 16% 0; width: 78%; height: 78%; }
  .hero-photo-small { width: 45%; height: 30%; }
  .hero-photo-small.one { bottom: 0; }
  .hero-photo-small.two { top: 18%; right: 0; }
  h1 { font-size: clamp(42px, 13vw, 68px); }
  .photo-card img { height: 230px; }
}
