:root {
  --forest: #174d46;
  --forest-deep: #123b36;
  --mint: #e2eee4;
  --paper: #f8f7f2;
  --cream: #f2eddf;
  --gold: #e9bd56;
  --coral: #e78162;
  --blue: #9fc4d1;
  --ink: #1d302c;
  --muted: #64716a;
  --line: #dce2d9;
  --white: #fffefa;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --display: "Aptos Display", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 125px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(1180px, calc(100% - 56px)); margin-inline: auto; }

.announcement { height: 36px; position: sticky; top: 0; z-index: 30; overflow: hidden; display: flex; align-items: center; color: #fff; background: var(--forest); font-size: 11px; font-weight: 600; letter-spacing: .035em; }
.announcement-track { min-width: max-content; display: flex; align-items: center; gap: 28px; animation: ticker 45s linear infinite; }
.announcement-track i { color: var(--gold); font-style: normal; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.site-header { position: sticky; top: 36px; z-index: 25; background: rgba(248,247,242,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(23,77,70,.08); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-shrink: 0; }
.brand img { width: 138px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(16px,2.4vw,34px); }
.main-nav a { position: relative; color: #42544d; font-size: 13px; font-weight: 600; text-decoration: none; transition: color .2s; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--forest); }
.main-nav a[aria-current="page"]:after { position: absolute; content: ""; height: 2px; width: 18px; left: 0; bottom: -8px; background: var(--gold); }
.main-nav .nav-contact { display: inline-flex; align-items: center; gap: 13px; padding: 11px 16px; color: white; background: var(--forest); border-radius: 8px; }
.main-nav .nav-contact:after { display: none; }
.main-nav .nav-contact:hover { color: white; background: var(--forest-deep); }
.nav-contact span { color: var(--gold); }
.menu-toggle { display: none; }
.page-loader { position: fixed; inset: 0; z-index: 100; display: grid; place-content: center; justify-items: center; gap: 20px; background: var(--paper); opacity: 1; visibility: visible; transition: opacity .32s ease, visibility .32s ease; }
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader img { width: 54px; height: 54px; animation: loader-bob 1.1s ease-in-out infinite; }
.page-loader span { width: 44px; height: 3px; border-radius: 5px; background: var(--line); overflow: hidden; }
.page-loader span:after { content: ""; display: block; width: 18px; height: 100%; background: var(--gold); animation: loader-line 1s ease-in-out infinite; }
@keyframes loader-bob { 50% { transform: translateY(-5px) rotate(-5deg); } }
@keyframes loader-line { from { transform: translateX(-20px); } to { transform: translateX(48px); } }

.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 35px; min-height: 580px; padding-top: 55px; padding-bottom: 65px; }
.hero-copy { padding: 18px 0 15px 15px; }
.eyebrow { display: inline-block; color: #53806f; font-size: 10px; line-height: 1.4; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-family: var(--display); }
h1 { max-width: 620px; margin: 18px 0; font-size: clamp(43px,5.4vw,70px); line-height: 1.06; letter-spacing: -.065em; font-weight: 600; }
h1 em { color: #579277; font-style: normal; }
.lead { max-width: 570px; color: #66736d; font-size: 17px; line-height: 1.7; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 27px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 7px; text-decoration: none; font-size: 12px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(23,77,70,.12); }
.button-dark { color: white; background: var(--forest); }
.button-dark:hover { background: var(--forest-deep); }
.button-dark span { color: var(--gold); }
.button-light { color: var(--forest); background: white; }
.button-outline { color: var(--forest); background: transparent; border-color: #b9c8bf; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--forest); font-size: 12px; font-weight: 700; text-decoration: none; }
.text-link:hover { color: #51876e; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 36px; color: #68766e; font-size: 12px; }
.note-icon { display: grid; place-content: center; width: 23px; height: 23px; border-radius: 50%; color: var(--forest); background: #dcebdc; font-size: 12px; }
.hero-art { position: relative; padding: 10px 0; }
.hero-art > img { width: 100%; }
.floating-note { position: absolute; right: 0; bottom: 55px; display: flex; align-items: center; gap: 11px; padding: 14px 18px; border-radius: 12px; background: white; box-shadow: 0 12px 35px rgba(21,55,44,.12); color: #69756f; font-size: 11px; line-height: 1.5; }
.floating-note strong { color: var(--ink); font-size: 12px; }
.trust-strip { display: flex; align-items: center; justify-content: center; gap: 35px; padding: 19px 10px 21px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #718078; font-size: 11px; font-weight: 600; }
.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.section { padding-top: 100px; padding-bottom: 100px; }
.section-heading { display: grid; grid-template-columns: 1.15fr .75fr; gap: 80px; align-items: end; margin-bottom: 42px; }
.section-heading h2, .editorial-copy h2, .photo-band-copy h2, .callout h2, .closing h2, .map-heading h2 { max-width: 630px; margin: 12px 0 0; font-size: clamp(29px,3.5vw,44px); line-height: 1.15; letter-spacing: -.05em; font-weight: 600; }
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.section-heading.compact { align-items: center; }
.section-heading.compact h2 { margin-top: 12px; }
.card-grid { display: grid; gap: 17px; }
.card-grid.three { grid-template-columns: repeat(3,1fr); }
.service-card, .value-card { min-height: 230px; padding: 27px 26px; background: var(--white); border: 1px solid #eaede6; border-radius: 11px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 15px 32px rgba(23,77,70,.08); }
.card-icon { display: grid; place-content: center; width: 37px; height: 37px; margin-bottom: 23px; border-radius: 10px; color: var(--forest); background: var(--mint); font-size: 19px; }
.card-icon.gold { background: #fbf0d7; }
.card-icon.blue { background: #e0eef0; }
.service-card h3, .value-card h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: -.035em; }
.service-card p, .value-card p { margin-bottom: 20px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.card-arrow { color: #54806f; font-size: 11px; font-weight: 700; }
.photo-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 405px; background: var(--cream); }
.photo-band-image { min-height: 405px; background: linear-gradient(90deg,rgba(16,51,42,.05),rgba(16,51,42,.08)),url("/assets/conversation.jpg") center 47%/cover; }
.photo-band-copy { align-self: center; max-width: 590px; padding: 58px clamp(36px,7vw,104px); }
.photo-band-copy p { max-width: 430px; margin: 18px 0 20px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.steps article { padding: 25px 26px 0 0; }
.steps b { display: inline-block; margin-bottom: 24px; color: #569078; font-family: var(--display); font-size: 13px; }
.steps h3 { margin: 0 0 9px; font-size: 17px; letter-spacing: -.03em; }
.steps p { max-width: 215px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 45px 48px; margin-top: 20px; margin-bottom: 50px; color: white; background: var(--forest); border-radius: 15px; }
.callout h2 { max-width: 650px; color: white; font-size: clamp(27px,3vw,38px); }
.callout .eyebrow { color: #acd0b5; }
.callout p { max-width: 680px; margin: 13px 0 0; color: #d2e2d6; font-size: 13px; line-height: 1.75; }
.callout .button { flex-shrink: 0; }
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.resource-card { display: flex; flex-direction: column; min-height: 255px; padding: 24px; border-radius: 10px; color: var(--ink); background: #f1ede2; text-decoration: none; transition: transform .2s; }
.resource-card:hover { transform: translateY(-4px); }
.resource-card.green { background: #e4eee4; }
.resource-card.yellow { background: #f8edcf; }
.resource-number { color: #728178; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.resource-card h3 { margin: 37px 0 8px; font-size: 19px; letter-spacing: -.04em; }
.resource-card p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.resource-link { margin-top: auto; color: var(--forest); font-size: 11px; font-weight: 700; }
.closing { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 73px 0 83px; }
.closing h2 { max-width: 680px; }
.closing .button { flex-shrink: 0; }

.page-hero-mini { padding: 18px 0 0; }
.page-hero-mini .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.breadcrumb { display: flex; gap: 10px; color: #849088; font-size: 11px; }
.breadcrumb a { color: var(--forest); text-decoration: none; }
.page-intro { padding-top: 74px; padding-bottom: 60px; }
.page-intro h1 { max-width: 800px; font-size: clamp(42px,5vw,63px); }
.page-intro .lead { max-width: 720px; margin-bottom: 18px; }
.page-intro .button { margin-top: 9px; }
.intro-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.intro-meta span { padding: 7px 12px; border: 1px solid #d8e3d7; border-radius: 20px; color: #547263; font-size: 10px; font-weight: 600; }
.updated { margin: 18px 0 0; color: #7a867f; font-size: 11px; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; padding-top: 32px; padding-bottom: 95px; }
.split-section.reverse .editorial-image { order: 2; }
.editorial-image { min-height: 390px; border-radius: 12px; background-position: center; background-size: cover; }
.image-team { background-image: url("/assets/team.jpg"); }
.image-notes { background-image: url("/assets/planning.jpg"); }
.editorial-copy h2 { margin: 12px 0 20px; }
.editorial-copy p { color: var(--muted); font-size: 13px; line-height: 1.9; }
.editorial-copy .text-link { margin-top: 7px; }
.bg-soft { background: #f1f2eb; }
.bg-soft > .wrap { padding-top: 88px; padding-bottom: 88px; }
.value-card { min-height: 205px; }
.page-intro + .bg-soft .wrap { padding-top: 80px; }

.service-list { padding-top: 10px; padding-bottom: 15px; }
.service-detail { display: grid; grid-template-columns: 52px 1fr .76fr; gap: 28px; padding: 43px 0; border-bottom: 1px solid #d9e0d8; }
.service-detail:last-child { border-bottom: 0; }
.service-num { color: #63917c; font-family: var(--display); font-size: 14px; font-weight: 700; }
.service-detail h2 { margin: 10px 0 14px; font-size: 28px; line-height: 1.2; letter-spacing: -.05em; }
.service-detail p, .service-detail li { color: var(--muted); font-size: 12px; line-height: 1.8; }
.service-detail ul { padding-left: 18px; margin: 13px 0 0; }
.service-detail li { padding-left: 3px; margin: 4px 0; }
.service-detail-image { min-height: 255px; border-radius: 11px; background-size: cover; background-position: center; }
.personal-image { background-image: url("/assets/personal.jpg"); }
.business-image { background-image: url("/assets/business.jpg"); }
.workshop-image { background-image: url("/assets/workshop.jpg"); }
.service-list + .section { padding-top: 75px; }

.contact-layout { display: grid; grid-template-columns: 1.05fr .8fr; align-items: start; gap: 50px; padding-bottom: 75px; }
.contact-form-card { padding: 34px; border: 1px solid #e3e8df; border-radius: 12px; background: var(--white); }
.contact-form-card h2 { margin: 0 0 4px; font-size: 26px; letter-spacing: -.05em; }
.contact-form-card > p { margin: 0 0 25px; color: var(--muted); font-size: 12px; }
.contact-form-card form { display: grid; gap: 9px; }
.contact-form-card label:not(.consent-check) { margin-top: 7px; font-size: 11px; font-weight: 700; }
.contact-form-card input, .contact-form-card select, .contact-form-card textarea, .budget-form input, .glossary-search input { width: 100%; padding: 12px 13px; border: 1px solid #dce4dc; border-radius: 6px; outline: none; color: var(--ink); background: white; font-size: 12px; }
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus, .budget-form input:focus, .glossary-search input:focus { border-color: #6a9d80; box-shadow: 0 0 0 3px rgba(106,157,128,.12); }
.contact-form-card textarea { resize: vertical; }
.contact-form-card input::placeholder, .contact-form-card textarea::placeholder { color: #a1aaa4; }
.consent-check { display: flex; align-items: start; gap: 9px; margin: 9px 0; color: #64716a; font-size: 10px; line-height: 1.6; }
.consent-check input { width: 14px; flex-shrink: 0; margin-top: 2px; accent-color: var(--forest); }
.consent-check a { color: var(--forest); }
.contact-form-card form > .button { justify-self: start; margin-top: 5px; }
.form-status { min-height: 16px; margin: 0; color: var(--forest); font-size: 11px; }
.contact-image { height: 218px; margin-bottom: 25px; border-radius: 10px; background: url("/assets/contact.jpg") center/cover; }
.contact-details { display: grid; gap: 14px; padding: 25px; border-radius: 10px; background: #e7efe5; }
.contact-details > a, .contact-details > p { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--ink); font-size: 12px; text-decoration: none; }
.contact-details .eyebrow { margin-bottom: 3px; }
.detail-icon { display: grid; place-content: center; width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: #d4e5d5; color: var(--forest); }
.address-indent { margin-left: -42px; padding-top: 18px; color: var(--muted); }
.contact-details .whatsapp-link { width: fit-content; margin-top: 5px; color: var(--forest); font-weight: 700; }
.map-section { padding-bottom: 88px; }
.map-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 20px; }
.map-heading h2 { margin: 8px 0; font-size: 29px; }
.map-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.map-section iframe { display: block; width: 100%; height: 350px; border: 0; border-radius: 10px; background: #e4e8e0; }
.map-load { padding: 0; border: 0; background: transparent; cursor: pointer; }
.map-load:disabled { color: #66816f; cursor: default; }

.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: space-between; gap: 70px; padding-bottom: 100px; }
.legal-toc { position: sticky; top: 140px; align-self: start; display: grid; gap: 5px; padding: 17px 0; border-top: 1px solid var(--line); }
.legal-toc a { padding: 7px 0; color: #65736b; font-size: 11px; text-decoration: none; }
.legal-toc a:hover { color: var(--forest); }
.legal-content section { padding: 0 0 35px; margin-bottom: 30px; border-bottom: 1px solid #e1e5de; scroll-margin-top: 145px; }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { margin: 10px 0 14px; font-size: 24px; line-height: 1.25; letter-spacing: -.04em; }
.legal-content p, .legal-content li { color: #606f67; font-size: 13px; line-height: 1.9; }
.legal-content p { margin-bottom: 13px; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin: 7px 0; padding-left: 3px; }
.legal-content a { color: var(--forest); }
.notice-box { padding: 17px 19px; margin: 18px 0; border-left: 3px solid var(--coral); border-radius: 0 7px 7px 0; color: #53645a; background: #f5eee3; font-size: 13px; line-height: 1.8; }
.notice-box strong { color: #a64f39; }
.notice-box.slim { max-width: 740px; font-size: 12px; }

.timeline { padding-top: 10px; padding-bottom: 60px; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 31px 0; border-top: 1px solid var(--line); }
.timeline-year { color: #52856d; font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -.06em; }
.timeline-item h2 { margin: 6px 0 9px; font-size: 24px; letter-spacing: -.04em; }
.timeline-item p { max-width: 760px; margin-bottom: 9px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.timeline-item .timeline-takeaway { color: #3c6553; font-size: 11px; font-weight: 600; }
.timeline-item.current .timeline-year { color: #b57f1e; }

.guide-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; padding-bottom: 80px; }
.guide-card { display: flex; flex-direction: column; padding: 27px; border: 1px solid #e4e8df; border-radius: 11px; background: var(--white); }
.guide-index { color: #678171; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.guide-illustration { display: grid; place-content: center; width: 60px; height: 60px; margin: 20px 0 16px; border-radius: 18px 18px 18px 5px; color: var(--forest); background: #e3eee3; font-family: var(--display); font-size: 22px; font-weight: 700; }
.guide-goals { color: #926d1a; background: #f7edcf; border-radius: 50%; }
.guide-debt { background: #e2eef0; border-radius: 50% 50% 5px 50%; }
.guide-business { background: #f5e5dd; border-radius: 50%; }
.guide-card h2 { margin: 0 0 9px; font-size: 22px; letter-spacing: -.04em; }
.guide-card > p, .guide-card li { color: var(--muted); font-size: 12px; line-height: 1.75; }
.guide-card ol { padding-left: 18px; margin: 3px 0 22px; }
.guide-card li { padding-left: 3px; margin: 5px 0; }
.guide-card .text-link { margin-top: auto; }

.tool-panel { padding: 35px; border: 1px solid #e1e8df; border-radius: 13px; background: var(--white); }
.tool-heading { display: flex; justify-content: space-between; gap: 25px; }
.tool-heading h2 { margin: 9px 0; font-size: 29px; letter-spacing: -.05em; }
.tool-heading p { max-width: 610px; color: var(--muted); font-size: 12px; }
.tool-icon { display: grid; place-content: center; width: 58px; height: 58px; flex: 0 0 58px; border-radius: 17px; color: var(--forest); background: #e5efe4; font-family: var(--display); font-size: 27px; font-weight: 700; }
.budget-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 22px; }
.budget-form label { display: grid; gap: 7px; color: #42554b; font-size: 11px; font-weight: 700; }
.budget-form .button { justify-self: start; }
.budget-form .button-outline { margin-left: 0; }
.tool-result { display: flex; align-items: center; gap: 13px; min-height: 73px; padding: 13px 16px; margin-top: 22px; border-radius: 8px; background: #f2f4ee; }
.tool-result p { margin: 0; color: #647168; font-size: 11px; }
.result-mark { display: grid; place-content: center; width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; color: var(--forest); background: #e1ecde; }
.tool-result.has-result { justify-content: space-around; }
.tool-result.has-result > div { flex: 1; }
.tool-result.has-result p { margin: 4px 0; }
.tool-result strong { color: var(--forest); font-family: var(--display); font-size: 20px; }
.tool-result strong.negative { color: #ad513b; }
.tool-disclaimer { margin: 12px 0 0; color: #88928b; font-size: 10px; }
.tool-panel + .section { padding-top: 80px; padding-bottom: 70px; }
.resource-grid.wrap { margin-bottom: 75px; }

.glossary-search { display: grid; gap: 7px; max-width: 500px; margin-top: 27px; }
.glossary-search label { color: #52675b; font-size: 11px; font-weight: 700; }
.glossary-search input { padding: 14px 15px; }
.glossary-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 40px; padding-bottom: 55px; }
.glossary-item { padding: 21px 0; border-top: 1px solid var(--line); }
.glossary-item h2 { margin: 0 0 7px; font-size: 17px; letter-spacing: -.03em; }
.glossary-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.glossary-empty { padding: 0 0 35px; color: var(--muted); font-size: 13px; }

.site-footer { color: #dbe6dc; background: #143f39; }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr 1.05fr 1fr; gap: 45px; padding-top: 62px; padding-bottom: 48px; }
.footer-brand img { padding: 3px; border-radius: 5px; background: white; }
.footer-brand p { max-width: 210px; margin: 17px 0; color: #b8cec0; font-size: 11px; line-height: 1.8; }
.social-links { display: flex; gap: 9px; }
.social-links a { display: grid; place-content: center; width: 30px; height: 30px; border: 1px solid #527b68; border-radius: 50%; color: #e2ede2; transition: background .2s; }
.social-links a:hover { background: #2c6653; }
.social-links svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-links .solid { fill: currentColor; stroke: none; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-col h2 { margin: 1px 0 9px; color: white; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.footer-col a, .footer-col span { color: #c3d5c7; font-size: 10px; text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-warning { max-width: 205px; margin: 8px 0 0; color: #f0d38e; font-size: 10px; line-height: 1.65; font-weight: 600; }
.footer-whatsapp { padding: 6px 10px; margin-top: 3px; border: 1px solid #69977b; border-radius: 5px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 17px; padding-bottom: 18px; border-top: 1px solid rgba(226,237,226,.17); color: #aac4b1; font-size: 9px; }
.whatsapp-float { position: fixed; right: 22px; bottom: 23px; z-index: 20; display: grid; place-content: center; width: 54px; height: 54px; border-radius: 50%; color: #fff; background: #1eaa68; box-shadow: 0 7px 22px rgba(10,66,42,.25); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }
.cookie-banner { position: fixed; right: 16px; bottom: 16px; left: 16px; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 940px; padding: 16px 20px; margin: auto; border: 1px solid #dce3dc; border-radius: 10px; background: #fffefa; box-shadow: 0 12px 40px rgba(23,54,42,.2); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { color: var(--ink); font-size: 12px; }
.cookie-banner p { margin: 2px 0 0; color: var(--muted); font-size: 10px; }
.cookie-banner p a { color: var(--forest); }
.cookie-actions { display: flex; flex-shrink: 0; gap: 8px; }
.cookie-actions button { padding: 9px 13px; border: 1px solid #d5dfd6; border-radius: 6px; color: var(--forest); background: white; font-size: 10px; font-weight: 700; cursor: pointer; }
.cookie-actions .accept-cookies { color: white; border-color: var(--forest); background: var(--forest); }

@media (min-width: 1450px) { .hero { min-height: 650px; } }
@media (max-width: 1000px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 11px; }
  .service-detail { grid-template-columns: 40px 1fr .72fr; gap: 20px; }
  .legal-layout { grid-template-columns: 185px minmax(0, 1fr); gap: 45px; }
  .footer-main { gap: 25px; }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 38px, 560px); }
  .nav-wrap { height: 67px; }
  .brand img { width: 126px; }
  .menu-toggle { display: grid; gap: 5px; width: 40px; height: 40px; place-content: center; border: 1px solid #dce4db; border-radius: 8px; background: transparent; }
  .menu-toggle span { display: block; width: 17px; height: 2px; background: var(--forest); }
  .main-nav { position: absolute; top: 67px; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 10px 20px 18px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 14px 20px rgba(23,77,70,.07); }
  .main-nav.is-open { display: flex; flex-direction: column; }
  .main-nav a { padding: 11px 5px; font-size: 13px; }
  .main-nav a[aria-current="page"]:after { display: none; }
  .main-nav .nav-contact { justify-content: space-between; margin-top: 7px; padding: 11px 14px; }
  .announcement { height: 33px; font-size: 10px; }
  .site-header { top: 33px; }
  .hero { grid-template-columns: 1fr; gap: 8px; min-height: auto; padding-top: 48px; padding-bottom: 45px; }
  .hero-copy { padding: 0; }
  h1 { font-size: clamp(43px,11vw,62px); }
  .lead { font-size: 15px; }
  .hero-art { max-width: 500px; margin: auto; }
  .floating-note { right: -4px; bottom: 33px; padding: 11px 13px; }
  .trust-strip { gap: 11px; justify-content: space-between; font-size: 9px; }
  .trust-strip i { flex-shrink: 0; }
  .section { padding-top: 70px; padding-bottom: 70px; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; margin-bottom: 27px; }
  .section-heading h2, .editorial-copy h2, .photo-band-copy h2, .callout h2, .closing h2 { font-size: 32px; }
  .section-heading > p { font-size: 13px; }
  .card-grid.three, .resource-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 190px; }
  .card-icon { margin-bottom: 14px; }
  .photo-band { grid-template-columns: 1fr; }
  .photo-band-image { min-height: 260px; }
  .photo-band-copy { padding: 45px 25px; }
  .steps { grid-template-columns: repeat(2,1fr); row-gap: 19px; }
  .steps article { padding-right: 12px; }
  .steps b { margin-bottom: 10px; }
  .steps p { font-size: 11px; }
  .callout { align-items: flex-start; flex-direction: column; padding: 31px 26px; margin-bottom: 25px; }
  .closing { align-items: flex-start; flex-direction: column; padding: 57px 0; }
  .page-hero-mini { padding-top: 15px; }
  .page-hero-mini .wrap { align-items: start; flex-direction: column; gap: 5px; }
  .page-intro { padding-top: 52px; padding-bottom: 37px; }
  .page-intro h1 { font-size: clamp(42px,10vw,58px); }
  .split-section { grid-template-columns: 1fr; gap: 29px; padding-bottom: 62px; }
  .split-section.reverse .editorial-image { order: 0; }
  .editorial-image { min-height: 270px; }
  .bg-soft > .wrap { padding-top: 60px; padding-bottom: 60px; }
  .value-card { min-height: 160px; }
  .service-detail { grid-template-columns: 32px 1fr; gap: 9px 16px; padding: 33px 0; }
  .service-detail-image { grid-column: 2; min-height: 215px; margin-top: 9px; }
  .service-detail h2 { font-size: 25px; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; padding-bottom: 55px; }
  .contact-form-card { padding: 23px 19px; }
  .map-heading { align-items: flex-start; flex-direction: column; }
  .map-section iframe { height: 290px; }
  .legal-layout { grid-template-columns: 1fr; gap: 25px; padding-bottom: 65px; }
  .legal-toc { position: static; grid-template-columns: repeat(2,1fr); gap: 0 15px; padding: 10px 0; }
  .legal-toc a { border-bottom: 1px solid #e6e9e3; }
  .legal-content h2 { font-size: 21px; }
  .legal-content p, .legal-content li { font-size: 12px; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 15px; }
  .timeline-year { font-size: 23px; }
  .timeline-item h2 { font-size: 20px; }
  .guide-grid { grid-template-columns: 1fr; }
  .tool-panel { padding: 23px 18px; }
  .tool-heading h2 { font-size: 25px; }
  .budget-form { grid-template-columns: 1fr; }
  .budget-form .button-outline { margin-left: 0; }
  .tool-result.has-result { align-items: flex-start; flex-direction: column; gap: 12px; }
  .glossary-list { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2,1fr); gap: 35px 20px; padding-top: 45px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 7px; line-height: 1.6; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 48px; height: 48px; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 12px; right: 9px; bottom: 9px; left: 9px; padding: 14px; }
  .cookie-actions { justify-content: flex-end; }
}
@media (max-width: 380px) {
  .wrap { width: calc(100% - 30px); }
  .actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .trust-strip { font-size: 8px; }
  .footer-main { gap: 29px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
