:root {
  --green-950: #003c32;
  --green-900: #004f41;
  --green-800: #00614f;
  --green-700: #08745e;
  --green-600: #15906f;
  --green-100: #dff3e8;
  --gold-500: #c99a3f;
  --gold-300: #ffd772;
  --sand-50: #fbfaf6;
  --sand-100: #f7f3ea;
  --ink: #11231f;
  --muted: #63756f;
  --white: #ffffff;
  --shadow-soft: 0 18px 54px rgba(0, 60, 50, .12);
  --shadow-strong: 0 26px 80px rgba(0, 34, 28, .20);
  --max: 1180px;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --title: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; font-family: var(--body); color: var(--ink); background: var(--sand-50); overflow-x: hidden; }
body.is-modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 9999; padding: 10px 14px; border-radius: 999px; background: var(--gold-500); color: #fff; font-weight: 900; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(201,154,63,.30); }

.topbar { position: fixed; inset: 0 0 auto 0; z-index: 1000; color: var(--alba-header-text, #fff); background: rgba(var(--alba-header-rgb, 0, 60, 50), var(--alba-header-opacity, .88)); backdrop-filter: blur(18px); box-shadow: 0 16px 42px rgba(0,0,0,.20); transition: background .22s ease, box-shadow .22s ease, transform .22s ease; }
.topbar.scrolled { background: rgba(var(--alba-header-rgb, 0, 60, 50), .96); box-shadow: 0 18px 48px rgba(0,0,0,.26); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; flex: 0 0 auto; }
.brand-mark { width: var(--alba-logo-box, 54px); height: var(--alba-logo-box, 54px); min-width: var(--alba-logo-box, 54px); border-radius: var(--alba-logo-radius, 18px); background: radial-gradient(circle at 32% 28%, var(--gold-300) 0 16%, transparent 17%), linear-gradient(135deg, var(--gold-500), var(--green-700)); box-shadow: 0 12px 30px rgba(0,0,0,.18); position: relative; overflow: hidden; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; left: 8px; right: 8px; height: 4px; border-radius: 999px; background: #fff; opacity: .92; transform: rotate(-10deg); }
.brand-mark::before { bottom: 16px; }
.brand-mark::after { bottom: 8px; width: 28px; }
.brand-logo { width: var(--alba-logo-box, 54px); height: var(--alba-logo-box, 54px); min-width: var(--alba-logo-box, 54px); border-radius: var(--alba-logo-radius, 18px); padding: var(--alba-logo-padding, 5px); display: inline-flex; align-items: center; justify-content: center; overflow: hidden; background: radial-gradient(circle at 30% 20%, rgba(255,215,114,.16), transparent 32%), linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.20); box-shadow: 0 12px 30px rgba(0,0,0,.18); flex: 0 0 auto; }
.brand-logo img, .brand-logo .custom-logo, .custom-logo-link img, .alba-auto-logo { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: var(--alba-logo-fit, contain); display: block; }
.custom-logo-link { width: 100%; height: 100%; display: inline-flex; align-items: center; justify-content: center; }
.brand-text strong { display: block; font-family: var(--title); font-size: 30px; line-height: .9; letter-spacing: .8px; }
.brand-text span { display: block; font-size: 11px; opacity: .88; letter-spacing: .4px; font-weight: 700; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; min-width: 0; }
.menu-note { display: none; }
.nav-item { position: relative; }
.nav-link { padding: 12px 10px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: rgba(255,255,255,.92); border-radius: 999px; border: 0; background: transparent; cursor: pointer; line-height: 1; white-space: nowrap; }
.nav-link:hover, .nav-link.active, .nav-item.open > .nav-link, .nav-item.current > .nav-link { color: #fff; background: rgba(255,255,255,.12); }
.nav-trigger::after { content: "⌄"; font-size: 13px; opacity: .78; transform: translateY(-1px); }
.dropdown { position: absolute; top: 44px; left: 0; min-width: 250px; background: #fff; color: var(--ink); border-radius: 20px; box-shadow: var(--shadow-strong); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; border: 1px solid rgba(255,255,255,.22); }
.dropdown::before { content: ""; position: absolute; top: -9px; left: 22px; width: 18px; height: 18px; background: #fff; transform: rotate(45deg); }
.nav-item:hover .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 11px 12px; border-radius: 12px; font-size: 13px; font-weight: 700; color: var(--ink); }
.dropdown a:hover { background: var(--green-100); color: var(--green-900); }
.nav-actions { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.btn { border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer; border-radius: 999px; padding: 13px 18px; font-weight: 900; font-size: 13px; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-950)); box-shadow: 0 18px 42px rgba(0,60,50,.22); }
.btn-gold { background: linear-gradient(135deg, var(--gold-500), #e3b75e); color: #fff; box-shadow: 0 16px 36px rgba(201,154,63,.26); }
.btn-outline-green { color: var(--green-950); border: 1px solid rgba(0,79,65,.22); background: rgba(255,255,255,.48); }
.btn-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.btn-small { padding: 10px 13px; font-size: 12px; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.24); }
.contact-link, .language { font-size: 13px; font-weight: 850; opacity: .92; }
.mobile-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.10); color: #fff; cursor: pointer; font-size: 20px; place-items: center; }
.nav-donate-mobile { display: none; }

.hero { position: relative; min-height: 790px; display: grid; align-items: center; color: #fff; overflow: hidden; background: #061b16; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(180deg, transparent, var(--sand-100)); z-index: 1; }
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02); }
.hero-media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 16% 22%, rgba(255,215,114,.18), transparent 30%), radial-gradient(circle at 82% 18%, rgba(21,144,111,.18), transparent 34%), linear-gradient(90deg, rgba(0,32,26,.84), rgba(0,32,26,.38) 45%, rgba(0,32,26,.54)), linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.10) 34%, rgba(0,32,26,.72)); }
.hero-content { position: relative; z-index: 2; padding-top: 84px; max-width: var(--max); }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-300); font-size: 12px; text-transform: uppercase; letter-spacing: 1.6px; font-weight: 950; }
.hero h1 { margin: 18px 0 20px; max-width: 950px; font-family: var(--title); font-weight: 900; font-size: clamp(48px, 7vw, 92px); line-height: .9; letter-spacing: -2.6px; }
.hero p { max-width: 740px; font-size: 19px; line-height: 1.7; color: rgba(255,255,255,.88); font-weight: 520; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.play-pill { border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.10); color: #fff; border-radius: 999px; padding: 11px 16px; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-weight: 850; backdrop-filter: blur(12px); }
.play-pill span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--green-950); }

.section { padding: 92px 0; position: relative; isolation: isolate; }
.section-white { background: #fff; }
.home-stats { background: linear-gradient(180deg, var(--sand-100), #fff); padding: 0 0 36px; }
.stats-card { transform: translateY(-42px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 18px; border-radius: 30px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.68); }
.stat { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 22px; background: linear-gradient(180deg, #fff, #f6fff9); border: 1px solid rgba(0,79,65,.08); }
.stat-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); font-size: 22px; }
.stat strong { display: block; color: var(--green-950); font-size: 28px; line-height: 1; font-weight: 950; }
.stat span:last-child { color: var(--muted); font-size: 12px; font-weight: 850; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 26px; margin-bottom: 32px; }
.section-title { margin: 10px 0 0; font-family: var(--title); font-size: clamp(34px, 5vw, 58px); line-height: .98; letter-spacing: -1.2px; color: var(--green-950); }
.section-subtitle { max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.home-tree-focus { background: radial-gradient(circle at 17% 18%, rgba(255, 215, 114, .26), transparent 28%), radial-gradient(circle at 88% 12%, rgba(143, 216, 177, .28), transparent 32%), linear-gradient(135deg, #062f28 0%, #0f5f47 38%, #dff3e8 39%, #f7f3ea 100%); }
.tree-focus-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; border-radius: 42px; padding: clamp(30px, 5vw, 58px); background: radial-gradient(circle at 22% 18%, rgba(255,215,114,.18), transparent 30%), linear-gradient(135deg, rgba(255,255,255,.94), rgba(234,245,239,.88)); box-shadow: 0 34px 110px rgba(0,45,38,.26); overflow: hidden; }
.giant-tree-wrap { min-height: 360px; display: grid; place-items: center; position: relative; }
.giant-tree-wrap::before { content: ""; position: absolute; width: min(355px,76vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 34% 26%, rgba(255,215,114,.46), transparent 27%), linear-gradient(135deg, rgba(246,255,249,.98), rgba(185,229,208,.94)); box-shadow: 0 34px 84px rgba(0,60,50,.18); animation: treeHaloBreathe 4.6s ease-in-out infinite; }
.giant-tree { position: relative; z-index: 2; font-size: clamp(150px, 20vw, 245px); animation: treeFloat 4.4s ease-in-out infinite, treeBreathe 3.1s ease-in-out infinite; filter: drop-shadow(0 26px 34px rgba(0,60,50,.20)); }
.tree-spark { position: absolute; z-index: 3; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.92); box-shadow: 0 18px 38px rgba(0,60,50,.14); animation: treeSparkFloat 5s ease-in-out infinite; }
.spark-a { top: 40px; right: 18%; } .spark-b { bottom: 72px; left: 12%; animation-delay: .7s; } .spark-c { right: 10%; bottom: 82px; animation-delay: 1.2s; }
.tree-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tree-mini { background: #fff; border: 1px solid rgba(0,79,65,.10); border-radius: 22px; padding: 16px; box-shadow: 0 14px 36px rgba(0,60,50,.08); }
.tree-mini strong { display: block; color: var(--green-950); font-weight: 950; }
.tree-mini span { color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 750; }
@keyframes treeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes treeBreathe { 0%,100% { scale: 1; } 50% { scale: 1.055; } }
@keyframes treeHaloBreathe { 0%,100% { transform: scale(.96); opacity: .88; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes treeSparkFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.home-projects-luxury { background: radial-gradient(circle at 11% 12%, rgba(201,154,63,.16), transparent 30%), radial-gradient(circle at 88% 16%, rgba(21,144,111,.18), transparent 34%), linear-gradient(135deg, #03100d 0%, #061b16 38%, #0b3328 68%, #10231d 100%); color: #f6fff9; }
.home-section-glass { border-radius: 38px; padding: clamp(24px, 4vw, 44px); background: radial-gradient(circle at 90% 8%, rgba(201,154,63,.10), transparent 30%), linear-gradient(135deg, rgba(5,16,13,.92), rgba(7,28,23,.88) 52%, rgba(13,47,38,.82)); border: 1px solid rgba(255,248,230,.10); box-shadow: 0 28px 90px rgba(0,0,0,.28); }
.home-projects-luxury .section-title { color: #fff8e6; text-shadow: 0 18px 46px rgba(0,0,0,.36); }
.home-projects-luxury .section-subtitle { color: rgba(234,245,239,.82); }
.project-status-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 14px; }
.project-status-row span { padding: 9px 12px; border-radius: 999px; background: rgba(255,248,230,.08); color: rgba(246,255,249,.90); font-size: 12px; font-weight: 900; border: 1px solid rgba(255,248,230,.12); }
.project-marquee { position: relative; overflow: hidden; padding: 28px 78px 44px; border-radius: 34px; background: radial-gradient(circle at 12% 18%, rgba(21,144,111,.18), transparent 30%), linear-gradient(135deg, #020807 0%, #06110f 45%, #071c17 100%); border: 1px solid rgba(255,248,230,.09); box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 42px rgba(0,0,0,.24); }
.project-marquee-track { display: flex; width: max-content; gap: 24px; animation: projectAutoMove 58s linear infinite; will-change: transform; align-items: stretch; }
.project-marquee.is-paused .project-marquee-track, .project-marquee:hover .project-marquee-track { animation-play-state: paused; }
.project-marquee.is-manual .project-marquee-track { animation: none; }
@keyframes projectAutoMove { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.project-marquee .image-card { position: relative; width: min(372px, calc(100vw - 56px)); flex: 0 0 auto; min-height: 398px; border-radius: 30px; overflow: hidden; background: #020807; box-shadow: 0 16px 38px rgba(0,0,0,.30); border: 1px solid rgba(255,248,230,.10); transition: transform .25s ease, box-shadow .25s ease; }
.image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) contrast(1.16) brightness(.90); }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.14) 34%, rgba(0,0,0,.88) 100%); }
.image-card-content { position: absolute; inset: auto 0 0; z-index: 2; padding: 26px; }
.image-card h3 { margin: 14px 0 8px; color: #fff8e6; font-family: var(--title); font-size: 31px; line-height: 1; text-shadow: 0 12px 26px rgba(0,0,0,.54); }
.image-card p { color: rgba(246,255,249,.88); line-height: 1.62; font-weight: 580; }
.image-card:hover { transform: translateY(-8px) scale(1.012); box-shadow: 0 24px 54px rgba(0,0,0,.40); }
.tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .6px; background: rgba(2,8,7,.64); border: 1px solid rgba(255,248,230,.18); color: var(--gold-300); }
.project-marquee-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 8; width: 60px; height: 60px; border: 1px solid rgba(255,248,230,.18); border-radius: 22px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--green-950), var(--green-700)); color: #fff8e6; font-size: 24px; box-shadow: 0 10px 24px rgba(0,60,50,.16); cursor: pointer; }
.project-marquee-nav.left { left: 12px; } .project-marquee-nav.right { right: 12px; }
.nav-arrow { font-size: 34px; line-height: 1; }
.project-marquee-pause { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); z-index: 9; border: 1px solid rgba(255,248,230,.18); border-radius: 999px; padding: 8px 12px 8px 9px; background: linear-gradient(135deg, #fff8e6, var(--green-100)); color: #020807; font-size: 11px; font-weight: 950; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 10px 24px rgba(0,0,0,.22); }
.pause-icon { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(0,60,50,.10); }

.ferrenafe-section { background: linear-gradient(180deg, #f7f3ea, #fff); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: start; }
.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.kpi-grid div, .feature-panel, .card { padding: 22px; border-radius: 26px; background: #fff; border: 1px solid rgba(0,79,65,.08); box-shadow: var(--shadow-soft); }
.kpi-grid strong { display: block; font-size: 38px; color: var(--green-950); font-weight: 950; }
.kpi-grid span, .card p, .feature-panel li { color: var(--muted); line-height: 1.6; font-weight: 650; }
.feature-panel { background: radial-gradient(circle at 90% 8%, rgba(201,154,63,.16), transparent 30%), linear-gradient(135deg, #fff, #eef7f0); }
.feature-panel h3 { margin-top: 0; font-family: var(--title); color: var(--green-950); font-size: 34px; }
.feature-panel ul { margin: 0; padding-left: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card h3 { margin-top: 0; color: var(--green-950); font-family: var(--title); font-size: 26px; }
.partner-section { background: linear-gradient(135deg, var(--green-950), #061b16); color: #fff; }
.partner-section .section-title { color: #fff8e6; }
.partner-section .section-subtitle { color: rgba(255,255,255,.76); }
.partner-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-strip span { padding: 13px 16px; border-radius: 999px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); font-weight: 850; }
.cta-section { background: radial-gradient(circle at 10% 15%, rgba(255,215,114,.18), transparent 28%), linear-gradient(135deg, #002d26, #0b6f75); color: #fff; }
.cta-card { text-align: center; max-width: 880px; border-radius: 42px; padding: 56px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 28px 90px rgba(0,0,0,.18); }
.cta-card h2 { margin: 0; font-family: var(--title); font-size: clamp(34px, 5vw, 60px); line-height: 1; }
.cta-card p { color: rgba(255,255,255,.82); line-height: 1.7; }

.footer { background: linear-gradient(135deg, #002d26 0%, #003c32 58%, #061b16 100%); color: #fff; padding: 66px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
.footer a { display: block; color: rgba(255,255,255,.78); margin: 10px 0; font-weight: 650; }
.footer h3 { color: #fff8e6; margin-top: 0; }
.footer p { color: rgba(255,255,255,.72); line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.68); font-size: 13px; }

.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.72); padding: 20px; }
.modal.open { display: flex; }
.modal-dialog { position: relative; width: min(920px, 100%); aspect-ratio: 16/9; background: #000; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.38); }
.modal iframe { width: 100%; height: 100%; border: 0; }
.modal-close { position: absolute; top: 10px; right: 10px; z-index: 3; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; color: var(--green-950); font-size: 24px; cursor: pointer; }
.alba-wordpress-content { padding-top: 110px; min-height: 70vh; background: var(--sand-50); }
.page-title-wrap { padding: 42px 0 20px; }
.page-title-wrap h1 { font-family: var(--title); color: var(--green-950); font-size: clamp(36px, 5vw, 62px); }
.alba-entry-content { width: 100%; }
.alba-entry-content > *:not(.elementor) { width: min(var(--max), calc(100% - 40px)); margin-left: auto; margin-right: auto; }
.alba-auto-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.alba-auto-gallery-item { position: relative; overflow: hidden; border-radius: 28px; margin: 0; min-height: 260px; background: #061b16; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 18px 46px rgba(0,60,50,.13); }
.alba-auto-gallery-item img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; filter: saturate(1.08) contrast(1.06); transition: transform .35s ease, filter .35s ease; }
.alba-auto-gallery-item:hover img { transform: scale(1.055); filter: saturate(1.14) contrast(1.1) brightness(.96); }
.alba-gallery-empty { padding: 22px; border-radius: 20px; background: #fff8e6; color: var(--green-950); border: 1px solid rgba(201,154,63,.28); font-weight: 800; line-height: 1.55; }

@media (max-width: 1120px) {
  .nav-actions .btn-gold, .contact-link, .language { display: none; }
  .mobile-toggle { display: grid; }
  .nav-links { display: none; position: fixed; top: 82px; left: 14px; right: 14px; max-height: calc(100dvh - 104px); overflow-y: auto; background: linear-gradient(180deg, rgba(0,60,50,.99), rgba(0,39,33,.99)); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; padding: 14px; box-shadow: var(--shadow-strong); flex-direction: column; align-items: stretch; gap: 8px; }
  .nav-links.open { display: flex; }
  .menu-note { display: block; padding: 10px 14px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.5; border-bottom: 1px solid rgba(255,255,255,.10); margin-bottom: 4px; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; padding: 14px 15px; font-size: 14px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; min-width: auto; margin: 4px 0 10px; background: rgba(255,255,255,.96); border-radius: 18px; box-shadow: none; padding: 8px; }
  .dropdown::before { display: none; }
  .nav-item:hover .dropdown { display: none; }
  .nav-item.open .dropdown { display: block; }
  .nav-donate-mobile { display: flex; }
  .split, .tree-focus-card { grid-template-columns: 1fr; }
  .grid-4, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .project-marquee { padding-inline: 60px; }
  .alba-auto-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 82px; }
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 74px; }
  .brand-logo, .brand-mark { width: var(--alba-logo-mobile-box, 46px); height: var(--alba-logo-mobile-box, 46px); min-width: var(--alba-logo-mobile-box, 46px); }
  .brand-text strong { font-size: 24px; }
  .brand-text span { font-size: 10px; }
  .nav-links { top: 78px; }
  .hero { min-height: 720px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); letter-spacing: -1.4px; }
  .hero p { font-size: 16px; }
  .stats-card, .grid-4, .footer-grid, .kpi-grid { grid-template-columns: 1fr; }
  .tree-focus-card { border-radius: 30px; }
  .giant-tree-wrap { min-height: 270px; }
  .project-marquee { padding: 18px 42px 60px; border-radius: 26px; }
  .project-marquee .image-card { width: min(304px, calc(100vw - 58px)); min-height: 360px; }
  .project-marquee-nav { width: 42px; height: 42px; border-radius: 16px; }
  .project-marquee-nav.left { left: 4px; } .project-marquee-nav.right { right: 4px; }
  .project-marquee-pause { max-width: calc(100% - 20px); white-space: normal; }
  .cta-card { padding: 34px 22px; }
  .footer-bottom { flex-direction: column; }
  .alba-auto-gallery { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .project-marquee-track { animation: none !important; }
}
