
.site-header { position: sticky; top: 0; z-index: 80; backdrop-filter: blur(14px); background: rgba(243,242,236,.56); border-bottom: 1px solid rgba(255,255,255,.55); }
.header-row { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.85rem 0; }
.brand { display:flex; align-items:center; gap:.75rem; min-width:0; }
.brand img { height: 36px; width:auto; }
.brand-name { font-size: .95rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.header-actions { display:flex; align-items:center; gap:.55rem; }
.lang-switch { display:flex; border:1px solid var(--line); border-radius:999px; background: rgba(255,255,255,.35); padding:4px; }
.lang-switch button { border:0; background:transparent; padding:.35rem .65rem; border-radius:999px; cursor:pointer; color:var(--muted); }
.lang-switch button.active { background: rgba(23,53,44,.92); color: #f2f5f1; }
.icon-btn { width: 42px; height: 42px; border-radius: 999px; border:1px solid var(--line); background: rgba(255,255,255,.5); display:grid; place-items:center; cursor:pointer; }
.hamburger span { display:block; width:18px; height:1.8px; background:var(--text); margin:2.5px 0; transition:.25s ease; }
.side-overlay { position:fixed; inset:0; background: rgba(12,18,16,.42); opacity:0; pointer-events:none; transition:.28s ease; z-index:90; }
.side-overlay.open { opacity:1; pointer-events:auto; }
.side-panel { position:fixed; top:0; right:0; width:min(90vw,390px); height:100dvh; background: linear-gradient(180deg, rgba(243,245,240,.95), rgba(232,236,230,.92)); backdrop-filter: blur(16px); border-left:1px solid rgba(255,255,255,.65); transform: translateX(101%); transition: transform .3s ease; z-index:100; box-shadow: -25px 0 50px rgba(14,22,20,.14); padding:1rem; overflow:auto; }
.side-panel.open { transform: translateX(0); }
.side-panel nav a { display:block; padding:.85rem .9rem; border-radius: 14px; transition:.25s ease; color:#26312d; }
.side-panel nav a:hover, .side-panel nav a:focus-visible { background: rgba(255,255,255,.65); }
.side-meta { margin-top: 1rem; padding: .9rem; border:1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.42); }
.hero { min-height: calc(100dvh - 72px); position:relative; display:flex; align-items:flex-end; color:#eef2ef; overflow:hidden; }
.hero .hero-bg { position:absolute; inset:0; }
.hero .hero-bg img { width:100%; height:100%; object-fit:cover; }
.hero .hero-overlay { position:absolute; inset:0; background: linear-gradient(90deg, rgba(12,18,17,.82) 0%, rgba(12,18,17,.68) 32%, rgba(12,18,17,.40) 58%, rgba(12,18,17,.22) 100%), linear-gradient(180deg, rgba(16,22,20,.24), rgba(16,22,20,.54) 45%, rgba(14,18,17,.78)); }
.hero .floating-shapes { position:absolute; inset:0; pointer-events:none; }
.shape { position:absolute; border-radius:999px; filter: blur(18px); opacity:.52; animation: float 14s ease-in-out infinite; }
.shape.s1 { width:220px; height:220px; background: rgba(130,163,145,.45); top:12%; left:8%; }
.shape.s2 { width:320px; height:320px; background: rgba(63,98,84,.3); right:7%; top:18%; animation-delay:-3s; }
.shape.s3 { width:180px; height:180px; background: rgba(236,243,236,.22); right:24%; bottom:22%; animation-delay:-6s; }
@keyframes float { 0%,100%{ transform: translate3d(0,0,0) scale(1);} 50%{ transform: translate3d(0,-16px,0) scale(1.04);} }
.hero-content { position:relative; z-index:2; width:min(calc(100% - 2rem), var(--container)); margin: 0 auto 42px; }
.hero-card { max-width: 920px; padding: 1.35rem; background: rgba(16,22,20,.34); border: 1px solid rgba(255,255,255,.24); }
.hero-actions { display:flex; flex-wrap:wrap; gap:.7rem; margin-top: 1rem; }
.metrics { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:.75rem; margin-top:1rem; }
.hero-card h1{ text-shadow: 0 6px 28px rgba(0,0,0,.35); }
.hero-card .lead{ color:#eef3ef !important; text-shadow: 0 2px 12px rgba(0,0,0,.28); max-width: 56ch; }
.metric { padding:1rem; background: rgba(246,248,245,.86); border:1px solid rgba(255,255,255,.7); }
.metric strong { font-family:'Playfair Display', Georgia, serif; font-size:1.5rem; display:block; color:#1d2d28; }
.metric span { color:#31403a; font-weight:500; }
.mosaic { display:grid; grid-template-columns: 1.15fr 1fr 1fr; gap:.8rem; }
.mosaic .tile { border-radius: 18px; overflow:hidden; min-height: 190px; position:relative; box-shadow: var(--shadow-soft); }
.mosaic .tile.tall { min-height: 398px; }
.mosaic .tile img { width:100%; height:100%; object-fit:cover; transition: transform .7s ease; }
.mosaic .tile:hover img { transform: scale(1.04); }
.testimonial { padding:1rem; }
.testimonial p { color:#26322e; }
.quote-mark { font-family:'Playfair Display'; font-size:2rem; line-height:1; color:var(--sage); }
.partners { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:.7rem; align-items:stretch; }
.partner-chip { padding:.8rem; text-align:center; font-size:.84rem; letter-spacing:.08em; text-transform:uppercase; }
.cta-strip { padding: 1rem; display:flex; justify-content:space-between; gap:1rem; align-items:center; }
.gallery-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1rem; }
.gallery-item { border-radius:18px; overflow:hidden; aspect-ratio: 4 / 3; background: rgba(255,255,255,.4); box-shadow: var(--shadow-soft); border:1px solid rgba(255,255,255,.55); min-height: 180px; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.article-card { padding:1rem; display:flex; flex-direction:column; gap:.6rem; }
.article-card .meta { font-size:.8rem; color:var(--sage); text-transform:uppercase; letter-spacing:.12em; }
.page-hero { padding: 56px 0 18px; }
.page-hero .hero-shell { padding: 1.2rem; display:grid; grid-template-columns: 1.1fr .9fr; gap:1rem; align-items:stretch; background: linear-gradient(180deg, rgba(248,250,246,.72), rgba(237,242,236,.58)); }
.page-hero-media { border-radius: 22px; overflow:hidden; min-height: 280px; position:relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.page-hero-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(19,32,28,.04), rgba(19,32,28,.28)); pointer-events:none; }
.page-hero-caption { position:absolute; left:14px; right:14px; bottom:14px; padding:.9rem; border-radius:16px; background: rgba(245,248,244,.58); border:1px solid rgba(255,255,255,.55); backdrop-filter: blur(10px); z-index:2; }
.page-hero-caption h3 { margin:0 0 .35rem; }
.page-hero-caption p { margin:0; color:#33403b; }
.info-list { display:grid; gap:.75rem; }
.info-item { padding:.95rem 1rem; }
.footer { padding: 36px 0 56px; border-top:1px solid rgba(255,255,255,.6); margin-top: 34px; }
.footer-grid { display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap:1rem; }
.footer-links a { display:block; color:var(--muted); padding:.2rem 0; }
.footer-links a:hover { color: var(--green-700); }
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 14px; z-index: 120; transform: translateY(120%); transition:.3s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { padding: .9rem; display:grid; grid-template-columns: 1.6fr auto; gap:.8rem; align-items:center; }
.cookie-actions { display:flex; gap:.5rem; flex-wrap:wrap; justify-content:flex-end; }
.cookie-modal, .chat-panel { position: fixed; z-index: 130; opacity:0; pointer-events:none; transform: translateY(12px); transition:.25s ease; }
.cookie-modal.open, .chat-panel.open { opacity:1; pointer-events:auto; transform: translateY(0); }
.cookie-modal { left:50%; top:50%; transform: translate(-50%, calc(-50% + 12px)); width:min(92vw, 480px); }
.cookie-modal.open { transform: translate(-50%, -50%); }
.cookie-modal .panel { padding:1rem; }
.cookie-row { display:flex; justify-content:space-between; align-items:center; gap:1rem; margin:.75rem 0; padding:.8rem; border:1px solid var(--line); border-radius:14px; }
.switch { width:52px; height:30px; border-radius:999px; background:#c9d3cd; position:relative; border:0; cursor:pointer; }
.switch::after { content:''; position:absolute; width:22px; height:22px; border-radius:50%; top:4px; left:4px; background:#fff; transition:.2s ease; }
.switch.on { background: #254d40; }
.switch.on::after { left:26px; }
.chat-fab { position: fixed; right: 18px; bottom: 22px; z-index: 125; width: 58px; height: 58px; border-radius: 999px; border:0; background: linear-gradient(135deg, var(--green-900), var(--green-700)); color:#f3f6f3; box-shadow: 0 14px 28px rgba(23,53,44,.28); cursor:pointer; }
.chat-panel { right: 18px; bottom: 90px; width:min(94vw, 360px); }
.chat-box { overflow:hidden; }
.chat-head { display:flex; justify-content:space-between; align-items:center; padding:.9rem 1rem; border-bottom:1px solid var(--line); }
.chat-history { padding:.8rem; height: 300px; overflow:auto; display:flex; flex-direction:column; gap:.6rem; }
.msg { max-width:85%; padding:.65rem .8rem; border-radius:14px; font-size:.93rem; }
.msg.user { align-self:flex-end; background: rgba(23,53,44,.92); color:#f2f4f2; }
.msg.bot { align-self:flex-start; background: rgba(255,255,255,.7); border:1px solid rgba(255,255,255,.8); }
.chat-input { display:grid; grid-template-columns: 1fr auto; gap:.5rem; padding:.8rem; border-top:1px solid var(--line); }
.chat-input input { border:1px solid var(--line); background: rgba(255,255,255,.7); border-radius:12px; padding:.7rem .8rem; }
.map-frame { width:100%; border:0; border-radius:18px; min-height:320px; box-shadow: var(--shadow-soft); }
.timeline { display:grid; gap:.8rem; }
.timeline .step { padding:.9rem 1rem; }
@media (max-width: 980px) {
  .metrics { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .partners { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero .hero-shell { grid-template-columns: 1fr; }
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content:flex-start; }
}
@media (max-width: 640px) {
  .hero { min-height: 84dvh; }
  .metrics { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic .tile.tall { min-height: 220px; }
  .partners { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-panel { right: 10px; left: 10px; width:auto; }
}

.brand img { height: 44px; width: auto; border-radius: 8px; object-fit: contain; background: transparent; }
.hero .hero-bg img { filter: saturate(.9) contrast(1.05) brightness(.8); }


.grid.grid-2 { align-items: start; }
.grid.grid-2 > div { min-width: 0; }
.grid[data-testimonials] { align-content: start; }
.partners { margin-top: 1rem; }
/* Prevent late reveal transitions from creating visual overlap in dense gallery rows */
.gallery-grid .reveal, .gallery-item.reveal { transform: none; }
.gallery-grid .reveal.in-view, .gallery-item.reveal.in-view { transform: none; }
@media (min-width: 981px) {
  .gallery-grid { grid-auto-rows: 1fr; }
}
