@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --forest: #263d33;
  --forest-2: #365044;
  --ink: #262b27;
  --muted: #6c716d;
  --cream: #f7f5ef;
  --paper: #fffefa;
  --sand: #e9e4d8;
  --clay: #c87e50;
  --line: #e8e6df;
  --shadow: 0 20px 60px rgba(37, 51, 43, .11);
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.announcement {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--forest);
  color: #f9f5eb;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.announcement-track {
  display: flex;
  width: max-content;
  animation: ticker 44s linear infinite;
}
.announcement:hover .announcement-track { animation-play-state: paused; }
.announcement-track span { padding: 0 38px; white-space: nowrap; }
.announcement-track b { color: #d9a77b; font-weight: 500; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 38px;
  z-index: 45;
  background: rgba(255, 254, 250, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(38, 61, 51, .08);
}
.header-inner {
  min-height: 82px;
  max-width: 1240px;
  padding: 0 28px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 166px; height: 42px; }
.main-nav { display: flex; align-items: center; gap: clamp(15px, 2.2vw, 32px); }
.main-nav a {
  color: #434a44;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--clay); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 21px;
  border: 1px solid var(--forest);
  border-radius: 4px;
  background: var(--forest);
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.header-cta:hover, .button:hover { transform: translateY(-2px); background: var(--forest-2); }
.button-light { border-color: rgba(255,255,255,.55); background: transparent; color: white; }
.button-light:hover { background: rgba(255,255,255,.12); }
.button-outline { background: transparent; color: var(--forest); }
.button-outline:hover { color: white; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(690px, calc(100vh - 120px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ddd6c8;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,35,28,.75) 0%, rgba(24,35,28,.5) 42%, rgba(24,35,28,.05) 100%);
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-content { position: relative; z-index: 1; width: min(1240px, 100%); padding: 86px 28px 100px; margin: 0 auto; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #e4bd97; }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Manrope, "DM Sans", sans-serif; }
.hero h1 { max-width: 650px; margin-bottom: 20px; font-size: clamp(42px, 6.5vw, 76px); line-height: 1.04; letter-spacing: -.055em; }
.hero-copy { max-width: 510px; margin-bottom: 30px; color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { position: absolute; right: max(28px, calc((100vw - 1240px) / 2)); bottom: 34px; color: rgba(255,255,255,.78); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.section { padding: 92px 28px; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--forest); color: white; }
.container { width: min(1184px, 100%); margin: 0 auto; }
.section-heading { max-width: 650px; margin-bottom: 38px; }
.section-heading h2 { margin-bottom: 13px; color: var(--forest); font-size: clamp(30px, 4vw, 45px); line-height: 1.12; letter-spacing: -.045em; }
.section-dark .section-heading h2 { color: white; }
.section-heading p { max-width: 550px; margin-bottom: 0; color: var(--muted); line-height: 1.75; }
.section-dark .section-heading p { color: rgba(255,255,255,.7); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-copy h2 { margin: 0 0 20px; color: var(--forest); font-size: clamp(31px, 4vw, 48px); line-height: 1.12; letter-spacing: -.05em; }
.intro-copy p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.intro-image { width: 100%; height: 420px; border-radius: 3px; object-fit: cover; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 10px; color: var(--forest); font-size: 13px; font-weight: 700; text-decoration: none; }
.text-link::after { content: "↗"; font-size: 16px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.category-card { position: relative; min-height: 272px; overflow: hidden; color: white; background: #b4ad9d; text-decoration: none; }
.category-card img { width: 100%; height: 100%; min-height: 272px; object-fit: cover; transition: transform .6s; }
.category-card:hover img { transform: scale(1.045); }
.category-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(20,29,24,.72)); }
.category-card span { position: absolute; z-index: 1; left: 19px; bottom: 19px; font: 600 17px Manrope, sans-serif; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.benefit { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.24); }
.benefit-number { color: #dca777; font-size: 12px; letter-spacing: .13em; }
.benefit h3 { margin: 14px 0 9px; font-size: 19px; }
.benefit p { max-width: 300px; margin: 0; color: rgba(255,255,255,.69); font-size: 14px; line-height: 1.7; }
.image-band { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 390px; background: var(--cream); }
.image-band img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.image-band-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px clamp(30px, 7vw, 95px); }
.image-band-copy h2 { margin: 0 0 15px; color: var(--forest); font-size: clamp(30px, 4vw, 43px); line-height: 1.12; letter-spacing: -.04em; }
.image-band-copy p { color: var(--muted); font-size: 14px; line-height: 1.8; }

.page-hero { padding: 74px 28px 68px; background: var(--cream); }
.page-hero-inner { width: min(1184px, 100%); margin: auto; }
.page-hero h1 { max-width: 800px; margin: 0 0 16px; color: var(--forest); font-size: clamp(38px, 5.4vw, 62px); line-height: 1.05; letter-spacing: -.055em; }
.page-hero p { max-width: 710px; margin: 0; color: #626963; font-size: 16px; line-height: 1.75; }
.breadcrumb { margin-bottom: 23px; color: #777d77; font-size: 11px; }
.breadcrumb a { color: var(--forest); text-decoration: none; }
.content-wrap { width: min(890px, 100%); margin: 0 auto; }
.prose { padding: 70px 28px 90px; }
.prose h2 { margin: 40px 0 13px; color: var(--forest); font-size: 25px; letter-spacing: -.025em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 25px 0 9px; color: var(--forest); font-size: 17px; }
.prose p, .prose li { color: #5f665f; font-size: 15px; line-height: 1.85; }
.prose ul { padding-left: 20px; }
.prose li { padding-left: 4px; margin-bottom: 8px; }
.callout { padding: 24px 27px; border-left: 3px solid var(--clay); background: var(--cream); color: #4d554e; line-height: 1.75; }
.image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 35px 0 15px; }
.image-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 3px; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 25px 0; }
.feature-item { padding: 22px; border: 1px solid var(--line); background: white; }
.feature-item h3 { margin: 0 0 7px; font-size: 16px; }
.feature-item p { margin: 0; font-size: 13px; }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 55px; align-items: start; }
.contact-details { padding: 28px; background: var(--forest); color: white; }
.contact-details h2 { margin-bottom: 24px; font-size: 25px; }
.contact-detail { margin-bottom: 22px; }
.contact-detail small { display: block; margin-bottom: 5px; color: #c6d0c9; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-detail a, .contact-detail address { color: white; font-size: 14px; line-height: 1.7; text-decoration: none; font-style: normal; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #4f5751; font-size: 12px; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1px solid #deded6; border-radius: 3px; background: white; color: var(--ink); outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(38,61,51,.08); }
.field textarea { min-height: 136px; resize: vertical; }
.privacy-check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 9px; color: #656c65; font-size: 12px; line-height: 1.55; }
.privacy-check input { margin-top: 3px; accent-color: var(--forest); }
.map-frame { width: 100%; height: 360px; border: 0; }
.map-placeholder { display: grid; min-height: 250px; place-content: center; gap: 13px; padding: 25px; background: #e9e6de; text-align: center; }
.map-placeholder p { margin: 0; color: var(--muted); font-size: 13px; }

.timeline { position: relative; margin: 34px 0 0 8px; padding-left: 30px; border-left: 1px solid #d6d8cf; }
.timeline-item { position: relative; padding: 0 0 32px; }
.timeline-item::before { content: ""; position: absolute; top: 4px; left: -35px; width: 9px; height: 9px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px var(--paper); }
.timeline-item strong { color: var(--forest); font: 700 18px Manrope, sans-serif; }
.timeline-item h3 { display: inline; margin: 0 0 0 10px; font-size: 17px; }
.timeline-item p { margin: 9px 0 0; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide-card { display: flex; flex-direction: column; min-height: 100%; border: 1px solid var(--line); background: var(--paper); text-decoration: none; }
.guide-card img { width: 100%; height: 190px; object-fit: cover; }
.guide-card-body { padding: 21px; }
.guide-card small { color: var(--clay); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.guide-card h2 { margin: 9px 0; color: var(--forest); font-size: 18px; }
.guide-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.glossary { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.glossary div { padding: 19px 0; border-bottom: 1px solid var(--line); }
.glossary dt { color: var(--forest); font: 700 16px Manrope, sans-serif; }
.glossary dd { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.calculator { padding: 30px; background: var(--cream); }
.calculator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.calculator output { display: block; margin-top: 19px; color: var(--forest); font: 700 22px Manrope, sans-serif; }

.site-footer { padding: 58px 28px 24px; background: #202f28; color: white; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 36px; padding-bottom: 42px; }
.footer-brand img { width: 156px; height: 40px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 290px; margin: 18px 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.75; }
.footer-col h2 { margin: 2px 0 17px; color: #e6c29f; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 0 0 11px; color: rgba(255,255,255,.72); font-size: 12px; text-decoration: none; }
.footer-col a:hover { color: white; }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; text-decoration: none; }
.socials svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); font-size: 11px; }
.footer-bottom a { color: inherit; text-decoration: none; }

.cookie-banner {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 88px;
  display: none;
  width: min(580px, calc(100% - 30px));
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(38,61,51,.13);
  background: #fffefa;
  box-shadow: 0 16px 55px rgba(25,34,28,.2);
}
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { margin: 0; color: #5d645e; font-size: 12px; line-height: 1.65; }
.cookie-banner a { color: var(--forest); }
.cookie-banner strong { display: block; margin-bottom: 5px; color: var(--forest); font-size: 14px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 39px; padding: 0 13px; border: 1px solid var(--forest); border-radius: 3px; background: var(--forest); color: white; font-size: 11px; cursor: pointer; }
.cookie-actions .reject { background: transparent; color: var(--forest); }
.whatsapp {
  position: fixed;
  z-index: 55;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 7px 22px rgba(27,80,47,.3);
  text-decoration: none;
  transition: transform .2s;
}
.whatsapp:hover { transform: translateY(-3px); }
.whatsapp svg { width: 27px; height: 27px; fill: currentColor; }
.page-loading {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 1;
  transition: opacity .36s ease, visibility .36s;
}
.page-loading.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loading img { width: 112px; animation: breathe 1s ease-in-out infinite alternate; }
@keyframes breathe { to { transform: scale(1.06); opacity: .72; } }
.form-status { grid-column: 1/-1; color: var(--forest); font-size: 13px; line-height: 1.6; }
.small-note { color: #777e77; font-size: 12px; line-height: 1.7; }

@media (max-width: 960px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 12px; }
  .header-cta { padding: 0 14px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
}
@media (max-width: 720px) {
  .header-inner { min-height: 70px; padding: 0 19px; }
  .brand img { width: 145px; }
  .menu-toggle { display: grid; place-items: center; }
  .header-cta { display: none; }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 9px 19px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 3px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .hero { min-height: 620px; }
  .hero-content { padding: 75px 23px 100px; }
  .hero h1 { font-size: clamp(43px, 12vw, 65px); }
  .hero-copy { font-size: 14px; }
  .hero-note { display: none; }
  .section { padding: 66px 22px; }
  .intro-grid, .image-band, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .intro-image { height: 310px; }
  .image-band img { min-height: 280px; height: 280px; }
  .image-band-copy { padding: 42px 24px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 54px 22px 49px; }
  .prose { padding: 52px 22px 65px; }
  .image-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .image-grid img { height: 155px; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .glossary { grid-template-columns: 1fr; }
  .calculator-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .cookie-banner { right: 12px; bottom: 82px; grid-template-columns: 1fr; gap: 14px; padding: 17px; }
  .cookie-actions { justify-content: flex-end; }
  .whatsapp { right: 17px; bottom: 18px; width: 50px; height: 50px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 430px) {
  .category-grid, .guide-grid { grid-template-columns: 1fr; }
  .category-card, .category-card img { min-height: 235px; }
  .contact-form, .feature-list { grid-template-columns: 1fr; }
  .field-full, .privacy-check { grid-column: 1; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
