@font-face { font-family: "Raleway"; font-weight: 300 700; font-style: normal; font-display: swap; src: url("../fonts/raleway.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-weight: 400 700; font-style: normal; font-display: swap; src: url("../fonts/playfair-display.woff2") format("woff2"); }

:root {
	--green: #1e5b2c;
	--green-dark: #123a1b;
	--green-soft: #e8f0e6;
	--gold: #f2a51a;
	--gold-dark: #d48a06;
	--red: #b8201f;
	--ink: #1d211e;
	--muted: #5d655f;
	--bg: #ffffff;
	--bg-alt: #f7f4ec;
	--line: #e5dfd2;
	--radius: 6px;
	--shadow: 0 6px 24px rgba(18, 58, 27, .08);
	--shadow-hover: 0 14px 34px rgba(18, 58, 27, .16);
	--header-h: 80px;
	--font: "Raleway", "Segoe UI", system-ui, -apple-system, sans-serif;
	--font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 1rem; font-weight: 400; line-height: 1.6; color: var(--ink); background: var(--bg); }
body.nav-open { overflow: hidden; }
img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; color: var(--green-dark); }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.icon { width: 1.1em; height: 1.1em; flex-shrink: 0; vertical-align: middle; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed !important; top: 8px; left: 8px; z-index: 1000; width: auto; height: auto; padding: 10px 16px; clip: auto; background: #fff; color: var(--green); border-radius: 6px; }

.container { width: 100%; max-width: 1224px; margin: 0 auto; padding-inline: 20px; }
.container--narrow { max-width: 860px; }

.section { padding-block: 64px; }
.section--alt { background: var(--bg-alt); }
.section__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 24px; margin-bottom: 32px; }
.section__head--center { justify-content: center; text-align: center; }
.section__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 0; position: relative; padding-bottom: 14px; }
.section__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 4px; border-radius: 2px; background: var(--gold); }
.section__head--center .section__title::after { left: 50%; transform: translateX(-50%); }
.section__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.section__link .icon { transition: transform .2s; }
.section__link:hover .icon { transform: translateX(4px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; border: 2px solid transparent; border-radius: 6px; font: inherit; font-weight: 600; font-size: .8rem; line-height: 1.2; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 15px 30px; font-size: .88rem; }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); color: #fff; }
.btn--accent { background: var(--gold); color: var(--green-dark); }
.btn--accent:hover { background: var(--gold-dark); color: #fff; }
.btn--outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn--outline:hover { background: var(--green); color: #fff; }
.btn--outline-light { border-color: rgba(255, 255, 255, .5); color: #fff; background: transparent; }
.btn--outline-light:hover { border-color: var(--gold); background: var(--gold); color: var(--green-dark); }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1da851; color: #fff; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Top bar */
.topbar { background: var(--green-dark); color: #dfe9dc; font-size: .875rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__contacts { display: flex; flex-wrap: wrap; gap: 4px 24px; list-style: none; margin: 0; padding: 0; }
.topbar a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold); }
.topbar .socials a { width: 28px; height: 28px; }

.socials { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: inherit; transition: background .2s, color .2s; }
.socials a:hover { background: var(--gold); color: var(--green-dark); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 16px rgba(0, 0, 0, .06); }
.admin-bar .site-header { top: 32px; }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.site-logo { flex-shrink: 0; }
.site-logo img { max-height: 64px; width: auto; }
.site-logo__text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--green-dark); text-decoration: none; }

.main-nav { margin-left: auto; }
.main-nav .menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav .menu > li { position: relative; }
.main-nav .menu a { display: flex; align-items: center; gap: 4px; padding: 10px 12px; color: var(--ink); font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; border-radius: 8px; }
.main-nav .menu a:hover, .main-nav .current-menu-item > a, .main-nav .current-menu-ancestor > a { color: var(--green); }
.main-nav .menu-item-has-children > a::after { content: ""; width: 7px; height: 7px; margin-left: 4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.main-nav .sub-menu { position: absolute; top: 100%; left: 0; min-width: 240px; list-style: none; margin: 0; padding: 8px; background: #fff; border-top: 3px solid var(--gold); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-hover); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; }
.main-nav .menu > li:hover > .sub-menu, .main-nav .menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.main-nav .sub-menu a { font-weight: 500; font-size: .88rem; letter-spacing: .02em; text-transform: none; padding: 8px 12px; }
.main-nav .sub-menu a:hover { background: var(--green-soft); }
.main-nav__head, .main-nav__cta, .submenu-toggle { display: none; }

.nav-toggle { display: none; margin-left: auto; padding: 8px; border: 0; background: none; color: var(--green-dark); cursor: pointer; }
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(0, 0, 0, .45); }

/* Hero (page headers) */
.hero { position: relative; isolation: isolate; display: flex; align-items: flex-end; min-height: 320px; padding-block: 72px 56px; background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; overflow: hidden; }
.hero--image { min-height: 460px; }
.hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero--image::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(10, 30, 14, .85) 0%, rgba(10, 30, 14, .35) 55%, rgba(10, 30, 14, .15) 100%); }
.hero__inner { position: relative; }
.hero__eyebrow { display: inline-block; margin-bottom: 12px; padding: 4px 12px; border-radius: 999px; background: var(--gold); color: var(--green-dark); font-size: .72rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.hero__title { max-width: 900px; margin: 0 0 12px; color: #fff; font-size: clamp(1.8rem, 4.5vw, 3.2rem); line-height: 1.15; text-shadow: 0 2px 12px rgba(0, 0, 0, .25); }
.hero__intro { max-width: 720px; margin: 0; font-size: 1.1rem; font-weight: 300; line-height: 1.7; color: rgba(255, 255, 255, .92); }
.hero__meta, .hero__facts { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 18px 0 0; padding: 0; list-style: none; color: rgba(255, 255, 255, .92); }
.hero__meta span, .hero__facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts li { padding: 6px 14px; border-radius: 6px; background: rgba(255, 255, 255, .14); backdrop-filter: blur(4px); }
.hero__price strong { color: var(--gold); font-size: 1.1rem; }
.hero__actions { margin: 24px 0 0; }

/* Home slider */
.slider { position: relative; height: min(86vh, 600px); background: var(--green-dark); overflow: hidden; }
.slide { position: absolute; inset: 0; display: flex; align-items: center; isolation: isolate; opacity: 0; visibility: hidden; transition: opacity .8s, visibility .8s; background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.slide.is-active { opacity: 1; visibility: visible; }
.slide__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s ease-out; }
.slide.is-active .slide__bg { transform: scale(1); }
.slide::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10, 30, 14, .82) 0%, rgba(10, 30, 14, .45) 55%, rgba(10, 30, 14, .1) 100%); }
.slide__inner { color: #fff; }
.slide__title { max-width: 760px; margin-bottom: 16px; color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.15; }
.slide__text { max-width: 600px; margin-bottom: 28px; font-size: 1.15rem; font-weight: 300; line-height: 1.7; color: rgba(255, 255, 255, .92); }
.slider__nav { position: absolute; left: 0; right: 0; bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.slider__arrow { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid rgba(255, 255, 255, .5); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; transition: background .2s, border-color .2s; }
.slider__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.slider__dots { display: flex; gap: 8px; }
.slider__dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px; background: rgba(255, 255, 255, .5); cursor: pointer; transition: width .3s, background .3s; }
.slider__dot.is-active { width: 30px; background: var(--gold); }

/* Intro + why */
.intro { text-align: center; }
.intro .section__title::after { left: 50%; transform: translateX(-50%); }
.intro .section__title { margin-bottom: 24px; }
.intro__text { font-size: 1.1rem; font-weight: 300; line-height: 1.75; color: var(--muted); }

.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; list-style: none; margin: 0; padding: 0; }
.why__item { padding: 28px 22px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .2s, transform .2s; }
.why__item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why__icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; margin-bottom: 14px; border-radius: 50%; background: var(--green-soft); color: var(--green); }
.why__icon .icon { width: 28px; height: 28px; }
.why__title { font-size: 1.1rem; margin-bottom: 8px; }
.why__item p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .25s, transform .25s; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card__media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--green-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__media img { transform: scale(1.06); }
.card__placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--green); opacity: .5; }
.card__placeholder .icon { width: 48px; height: 48px; }
.card__badge { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: var(--gold); color: var(--green-dark); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.card__meta { display: flex; align-items: center; gap: 6px; margin: 0 0 8px; color: var(--muted); font-size: .85rem; }
.card__meta .icon { color: var(--red); }
.card__title { font-size: 1.25rem; font-weight: 600; margin: 0 0 8px; }
.card__title a { color: var(--green-dark); text-decoration: none; }
.card__title a:hover { color: var(--green); }
.card__excerpt { margin: 0 0 16px; color: var(--muted); font-size: .95rem; font-weight: 300; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.card__price { margin: 0; font-weight: 700; color: var(--green-dark); }
.card__price span { font-weight: 400; font-size: .85rem; color: var(--muted); }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; }
.card__link .icon { transition: transform .2s; }
.card__link:hover .icon { transform: translateX(4px); }

/* Services */
.section--tight { padding-block: 48px 32px; }
.services-intro { text-align: center; font-size: 1.1rem; font-weight: 300; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; list-style: none; margin: 0; padding: 0; }
.service-box { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .25s, transform .25s; }
.service-box:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-box__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--green-soft); }
.service-box__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-box:hover .service-box__media img { transform: scale(1.06); }
.service-box__body { position: relative; flex: 1; padding: 26px 24px 28px; border-top: 4px solid var(--gold); }
.service-box__title { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.service-box__text { margin: 0; color: var(--muted); font-weight: 300; }

/* About */
.about-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-intro--solo { grid-template-columns: minmax(0, 860px); justify-content: center; }
.about-intro .section__title { margin-bottom: 28px; }
.about-intro .entry-content p:first-child { font-size: 1.2rem; color: var(--green-dark); }
.about-intro .entry-content p { font-weight: 300; line-height: 1.75; }
.about-intro__media { position: relative; isolation: isolate; }
.about-intro__media::before { content: ""; position: absolute; inset: 24px -24px -24px 24px; z-index: -1; border: 3px solid var(--gold); border-radius: var(--radius); }
.about-intro__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.mv-card { position: relative; padding: 40px 36px; background: #fff; border-radius: var(--radius); border-top: 4px solid var(--gold); box-shadow: var(--shadow); }
.mv-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; margin-bottom: 18px; border-radius: 50%; background: var(--green); color: #fff; }
.mv-card__icon .icon { width: 28px; height: 28px; }
.mv-card__title { font-size: 1.6rem; }
.mv-card__text p { font-weight: 300; line-height: 1.75; color: var(--muted); }
.mv-card__text p:first-child { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; font-style: normal; color: var(--green-dark); line-height: 1.5; }
.mv-card__text p:last-child { margin-bottom: 0; }
.about-closing { text-align: center; }
.about-closing .section__title::after { left: 50%; transform: translateX(-50%); }
.about-closing .section__title { margin-bottom: 24px; }
.about-closing__text { font-size: 1.15rem; font-weight: 300; line-height: 1.75; color: var(--muted); }
.about-closing__tagline { margin: 24px 0 32px; font-family: var(--font-heading); font-size: 1.3rem; color: var(--green); }
.actions--center { justify-content: center; }

/* Maintenance / coming soon */
.holding__main { position: relative; isolation: isolate; display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 40px 20px; background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.holding__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.holding__main--image::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(10, 30, 14, .6); }
.holding__card { width: 100%; max-width: 640px; padding: 48px 40px; text-align: center; background: rgba(255, 255, 255, .96); border-radius: var(--radius); border-top: 4px solid var(--gold); box-shadow: 0 20px 60px rgba(0, 0, 0, .3); }
.holding__logo { display: flex; justify-content: center; margin-bottom: 20px; }
.holding__logo img { max-height: 110px; width: auto; }
.holding__title { font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.2; }
.holding__text { margin: 0 auto 28px; max-width: 520px; font-size: 1.05rem; font-weight: 300; line-height: 1.75; color: var(--muted); }
.holding__contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; list-style: none; margin: 0 0 20px; padding: 0; }
.holding__contacts a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; }
.holding .socials { justify-content: center; margin-top: 12px; color: var(--green); }
.holding__tagline { margin: 20px 0 0; font-family: var(--font-heading); color: var(--green); }

/* Pagination */
.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); text-decoration: none; font-weight: 700; }
.pagination .page-numbers.current, .pagination a.page-numbers:hover { background: var(--green); border-color: var(--green); color: #fff; }
.empty { text-align: center; color: var(--muted); font-size: 1.1rem; }

/* Entry content */
.entry-content { font-size: 1.05rem; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { font-size: 1.6rem; margin-top: 1.6em; }
.entry-content h3 { font-size: 1.3rem; margin-top: 1.4em; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin: 0 0 1em; }
.entry-content li { margin-bottom: .35em; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote { margin: 1.5em 0; padding: 12px 24px; border-left: 4px solid var(--gold); background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1em; }
.entry-content th, .entry-content td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; }
.entry-content .alignleft { float: left; margin: 0 1.5em 1em 0; }
.entry-content .alignright { float: right; margin: 0 0 1em 1.5em; }
.entry-content .aligncenter { margin-inline: auto; }
.wp-caption-text { font-size: .85rem; color: var(--muted); }

.post-navigation { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 16px; }
.post-navigation a { font-weight: 700; text-decoration: none; }

/* Tabs */
.tabs__list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; border-bottom: 2px solid var(--line); }
.tabs__tab { position: relative; padding: 14px 20px; border: 0; background: none; color: var(--muted); font: inherit; font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.tabs__tab::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: transparent; transition: background .2s; }
.tabs__tab:hover { color: var(--green); }
.tabs__tab[aria-selected="true"] { color: var(--green-dark); }
.tabs__tab[aria-selected="true"]::after { background: var(--gold); }
.tabs__panel { margin-bottom: 40px; }
.tabs.is-ready .tabs__panel { margin-bottom: 0; }
.tabs.is-ready .tabs__heading { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.tabs:not(.is-ready) .tabs__list { display: none; }

.incl { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.incl__col { padding: 24px; border-radius: var(--radius); background: var(--bg-alt); }
.incl__col h3 { font-size: 1.15rem; }
.incl__col ul { list-style: none; margin: 0; padding: 0; }
.incl__col li { display: flex; gap: 10px; margin-bottom: 10px; }
.incl__col .icon { margin-top: 4px; }
.incl__col--inclusions .icon { color: var(--green); }
.incl__col--exclusions .icon { color: var(--red); }

.activities { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.activities__title { font-size: 1.2rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.tags a { display: inline-block; padding: 6px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--green-dark); font-size: .9rem; text-decoration: none; transition: background .2s, color .2s, border-color .2s; }
.tags a:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* Sidebar layout */
.layout-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar__title { font-size: 1.25rem; padding-bottom: 12px; border-bottom: 3px solid var(--gold); }
.sidebar__box { padding: 24px; border-radius: var(--radius); background: var(--bg-alt); }
.sidebar__box p { display: flex; align-items: center; gap: 8px; }

/* Forms */
.form { padding: 32px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form fieldset { margin: 0 0 24px; padding: 0; border: 0; }
.form legend { margin-bottom: 14px; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--green-dark); }
.form p { margin: 0 0 16px; }
.form label, .form__label { display: block; margin-bottom: 6px; font-weight: 700; font-size: .92rem; }
.form input:not([type="checkbox"]), .form select, .form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font: inherit; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(30, 91, 44, .15); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.form__row--3 { grid-template-columns: repeat(3, 1fr); }
.form__group { margin-bottom: 16px; }
.form__note { margin: 16px 0 0; color: var(--muted); font-size: .92rem; }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px 16px; }
.checks label { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 400; }
.checks input { width: 18px; height: 18px; accent-color: var(--green); }
.hp { position: absolute; left: -9999px; }
.notice { padding: 12px 16px; border-radius: 8px; font-weight: 700; }
.notice--success { background: var(--green-soft); color: var(--green-dark); }
.notice--error { background: #fbe7e6; color: var(--red); }

.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; list-style: none; margin: 0 0 48px; padding: 0; }
.contact-card { padding: 24px; border-radius: var(--radius); background: var(--bg-alt); }
.contact-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-bottom: 12px; border-radius: 50%; background: var(--green); color: #fff; }
.contact-card__icon--whatsapp { background: #25d366; }
.contact-card__title { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p { margin: 0 0 4px; }
.contact-card__muted { color: var(--muted); font-size: .92rem; }
.contact-card__link { font-weight: 700; text-decoration: none; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; margin-bottom: 48px; }
.contact--solo { grid-template-columns: minmax(0, 760px); justify-content: center; }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: var(--radius); }

/* CTA band + footer */
.cta-band { padding-block: 56px; background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(242, 165, 26, .18); }
.cta-band__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band__title { margin: 0 0 6px; color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band__text { margin: 0; color: rgba(255, 255, 255, .88); }

.site-footer { background: #0e2413; color: #c5d3c3; font-size: .95rem; }
.site-footer a { color: #e3ece1; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-block: 64px 48px; }
.site-footer__brand img { max-height: 110px; width: auto; margin-bottom: 16px; background: #fff; border-radius: 50%; padding: 4px; }
.site-footer__name { font-size: 1.4rem; font-weight: 700; color: #fff; }
.site-footer__tagline { color: var(--gold); font-weight: 700; }
.site-footer__heading { margin-bottom: 18px; color: #fff; font-family: var(--font); font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.site-footer__links, .site-footer__contacts { list-style: none; margin: 0 0 20px; padding: 0; }
.site-footer__links li { margin-bottom: 10px; }
.site-footer__contacts li { display: flex; gap: 10px; margin-bottom: 12px; }
.site-footer__contacts .icon { margin-top: 4px; color: var(--gold); }
.site-footer .socials { margin-top: 16px; }
.site-footer .socials a { background: rgba(255, 255, 255, .08); }
.site-footer .socials a:hover { background: var(--gold); color: var(--green-dark); }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); font-size: .875rem; }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-block: 20px; }
.site-footer__bottom p { margin: 0; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; margin: 0; padding: 0; }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(0, 0, 0, .2); transition: transform .2s; }
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
.whatsapp-float .icon { width: 32px; height: 32px; }

/* Responsive */
@media (max-width: 1100px) {
	.site-header__cta { display: none; }
	.nav-toggle { display: inline-flex; }
	.main-nav { position: fixed; top: 0; right: 0; bottom: 0; z-index: 200; width: min(360px, 88vw); margin: 0; padding: 0 0 24px; overflow-y: auto; background: #fff; box-shadow: -10px 0 30px rgba(0, 0, 0, .15); transform: translateX(100%); visibility: hidden; transition: transform .3s, visibility .3s; }
	.nav-open .main-nav { transform: none; visibility: visible; }
	.main-nav__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--green-dark); color: #fff; font-weight: 700; }
	.main-nav__close { display: inline-flex; padding: 4px; border: 0; background: none; color: #fff; cursor: pointer; }
	.main-nav__close .icon { width: 24px; height: 24px; }
	.main-nav .menu { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
	.main-nav .menu > li { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
	.main-nav .menu > li > a { flex: 1; padding: 14px 20px; border-radius: 0; }
	.main-nav .menu-item-has-children > a::after { display: none; }
	.submenu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 52px; border: 0; border-left: 1px solid var(--line); background: none; color: var(--green-dark); cursor: pointer; }
	.submenu-toggle .icon { transition: transform .2s; }
	.submenu-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
	.main-nav .sub-menu { position: static; flex-basis: 100%; min-width: 0; display: none; padding: 0 0 8px 12px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.main-nav .sub-menu.is-open { display: block; }
	.main-nav__cta { display: flex; margin: 20px; }
	.layout-sidebar { grid-template-columns: 1fr; }
	.sidebar { position: static; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.card-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
	.contact { grid-template-columns: 1fr; }
	.about-intro { grid-template-columns: 1fr; gap: 48px; }
	.about-intro__media { max-width: 520px; margin-right: 24px; }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 0; }
}

@media (max-width: 640px) {
	:root { --header-h: 68px; }
	.section { padding-block: 48px; }
	.card-grid, .service-grid { grid-template-columns: 1fr; }
	.form { padding: 22px; }
	.form__row, .form__row--3 { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.topbar__contacts li:nth-child(2) { display: none; }
	.hero { min-height: 260px; padding-block: 56px 40px; }
	.hero--image { min-height: 380px; }
	.slider { height: min(78vh, 600px); }
	.tabs__list { flex-wrap: nowrap; overflow-x: auto; }
	.tabs__tab { white-space: nowrap; padding: 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
