:root {
  --bg: #f8faf5;
  --surface: #ffffff;
  --primary: #1b4332;
  --primary-mid: #2d6a4f;
  --accent: #95d5b2;
  --accent-hot: #52b788;
  --gold: #d4a373;
  --text: #1a2e1f;
  --muted: #5c6f62;
  --border: #dce8d8;
  --dark: #081c15;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 12px 40px rgba(27, 67, 50, 0.1);
  --header-h: 76px;
  --content-max: 1180px;
  --content-gutter: clamp(1.125rem, 4vw, 2rem);
  --content-gutter-mobile: clamp(1.25rem, 5.5vw, 1.75rem);
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  letter-spacing: -0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-mid); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary); }
.container {
  width: min(var(--content-max), calc(100vw - 2 * var(--content-gutter)));
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 0;
}
.main { min-height: 60vh; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  flex-shrink: 0;
  height: 56px;
  width: auto;
  max-width: min(240px, 55vw);
  object-fit: contain;
  object-position: left center;
}
.logo--footer .logo-img {
  height: 52px;
  max-width: 220px;
}
.logo--with-tagline {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  max-width: min(280px, 42vw);
}
.header-tagline {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
}
.page-home .header.is-scrolled .header-tagline {
  color: var(--muted);
}
@media (max-width: 1100px) {
  .header-tagline { display: none; }
  .logo--with-tagline { max-width: none; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.06);
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    backdrop-filter var(--ease);
}
.header.is-scrolled {
  box-shadow: 0 8px 28px rgba(27, 67, 50, 0.1);
}
.page-home .header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: #e8f0e4;
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
}
.page-home .header.is-scrolled .nav a {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}
.page-home .header.is-scrolled .nav a:hover,
.page-home .header.is-scrolled .nav a.is-active {
  color: var(--primary);
  background: rgba(149, 213, 178, 0.28);
  border-color: transparent;
}
.page-home .header.is-scrolled .nav__cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}
.page-home .header.is-scrolled .nav__cta:hover,
.page-home .header.is-scrolled .nav__cta.is-active {
  background: var(--dark) !important;
  border-color: var(--dark) !important;
}
.page-home .header.is-scrolled .social-icons__link {
  color: var(--primary);
  border-color: var(--border);
  background: var(--surface);
}
.page-home .header.is-scrolled .nav-toggle span {
  background: var(--primary);
}

/* Ballina — menu outline mbi hero (si "Kërko ofertë") */
.page-home .header--over-hero {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
.page-home .header--over-hero .nav a {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.page-home .header--over-hero .nav a:hover,
.page-home .header--over-hero .nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.95);
}
.page-home .header--over-hero .nav__cta {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
}
.page-home .header--over-hero .nav__cta:hover,
.page-home .header--over-hero .nav__cta.is-active {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.page-home .header--over-hero .social-icons__link {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.page-home .header--over-hero .social-icons__link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}
.page-home .header--over-hero .nav-toggle span {
  background: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 0.65rem;
}
@media (max-width: 960px) {
  .nav a {
    padding: 0.45rem 0.65rem;
    font-size: 0.85rem;
  }
  .nav { gap: 0.15rem; }
  .logo-img { height: 48px; }
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  padding: 0.5rem 0.9rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.nav a:hover,
.nav a.is-active {
  color: var(--primary);
  background: rgba(149, 213, 178, 0.25);
}
.nav__cta {
  background: var(--primary) !important;
  color: #fff !important;
}
.nav__cta:hover,
.nav__cta.is-active {
  background: var(--dark) !important;
  color: #fff !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--ease);
}

/* Social */
.social-icons { display: flex; gap: 0.5rem; align-items: center; }
.social-icons__link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary);
  transition: transform var(--ease), background var(--ease), color var(--ease);
}
.social-icons__link:hover { transform: translateY(-2px); }
.social-icons__link--facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.social-icons__link--instagram:hover { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); color: #fff; border-color: transparent; }
.social-icons__link--tiktok:hover { background: #000; color: #fff; border-color: #000; }

/* Hero home */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}
.hero--home {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 5.25rem 0 1.75rem;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  overflow-x: hidden;
}
.hero--home > .hero__shell {
  flex: 1;
  min-height: 0;
  width: min(var(--content-max), calc(100vw - 2 * var(--content-gutter)));
  max-width: var(--content-max);
  margin-inline: auto;
}
.hero__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1.25rem;
  min-height: calc(100dvh - 7rem);
}
.hero__panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 28, 21, 0.88) 0%, rgba(27, 67, 50, 0.75) 45%, rgba(45, 106, 79, 0.5) 100%),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=2560&q=85") center 35% / cover no-repeat;
  z-index: 0;
}
.hero--home .hero__bg {
  background:
    linear-gradient(120deg, rgba(8, 28, 21, 0.85) 0%, rgba(27, 67, 50, 0.72) 50%, rgba(45, 106, 79, 0.45) 100%),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=2560&q=85") center 30% / cover no-repeat;
}
.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  opacity: 0.94;
  margin: 0 0 1.5rem;
  max-width: 36em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.hero__actions .btn {
  width: auto;
  flex: 0 0 auto;
}
.btn--compact {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}
.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  align-self: center;
  margin: 0.25rem auto 0;
  padding: 0.35rem 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--ease), transform var(--ease);
}
.hero__scroll:hover {
  color: #fff;
  transform: translateY(2px);
}
.hero__scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.hero__scroll-text { white-space: nowrap; }
.hero__services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
}
.hero-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 92px;
  padding: 0.85rem 0.5rem;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.hero-service:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-3px);
  color: #fff;
}
.hero-service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: rgba(149, 213, 178, 0.2);
  color: #b7e4c7;
}
.hero-service__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.hero-service__hint {
  font-size: 0.78rem;
  opacity: 0.85;
  color: #d8f3dc;
}
.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
}
.pill strong { margin-right: 0.35rem; }
/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #40916c 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero__bg { display: none; }
.page-hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.page-hero p {
  margin: 0;
  opacity: 0.92;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  font-family: inherit;
}
.btn--primary {
  background: var(--accent-hot);
  color: var(--dark);
  border-color: var(--accent-hot);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(82, 183, 136, 0.4);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--full { width: 100%; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--surface); }
.section--dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
  color: #fff;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-hot);
  margin-bottom: 0.5rem;
}
.section-head { margin-bottom: 2rem; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: var(--primary);
}

/* Feature cards home */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  color: #fff;
  transition: transform var(--ease), box-shadow var(--ease);
  display: block;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  color: #fff;
}
.feature-card--green { background: linear-gradient(145deg, #1b4332, #2d6a4f); }
.feature-card--earth { background: linear-gradient(145deg, #3d5a3e, #588157); }
.feature-card--gold { background: linear-gradient(145deg, #6b4c2a, #d4a373); }
.feature-card--water { background: linear-gradient(145deg, #1a5f7a, #3d8eb8); }
.cards-row--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .cards-row--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .cards-row--4 { grid-template-columns: 1fr; }
}
.feature-card__icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.feature-card p { margin: 0 0 1rem; opacity: 0.9; font-size: 0.95rem; }
.feature-card__link { font-weight: 600; font-size: 0.9rem; opacity: 0.95; }

.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-banner__img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Products */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 0.5rem);
  z-index: 10;
  padding: 0.75rem 0;
  background: inherit;
}
.section--alt .filter-bar { background: var(--surface); }
.filter-btn {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  transition: all var(--ease);
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.products-grid--compact { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.section--alt .product-card { background: var(--bg); }
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-card.is-hidden { display: none; }
.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card--mini .product-card__body { padding: 1rem; }
.product-card--mini h3 { font-size: 0.95rem; }
.badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  background: var(--accent-hot);
  color: var(--dark);
}
.product-card__body { padding: 1.25rem; }
.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-hot);
}
.product-card__body h3 {
  margin: 0.25rem 0 0.35rem;
  font-size: 1.05rem;
  color: var(--primary);
}
.product-card__latin { font-size: 0.82rem; color: var(--muted); margin: 0 0 0.5rem; }
.product-card__body > p { font-size: 0.88rem; color: var(--muted); margin: 0 0 0.75rem; }
.product-card__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.product-card__tags li {
  font-size: 0.72rem;
  background: var(--surface);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.product-card__link { font-weight: 600; font-size: 0.88rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 5/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(transparent 35%, rgba(0,0,0,0.8));
  color: #fff;
  text-align: left;
}

/* About page */
.about-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.about-page__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li { margin-bottom: 0.65rem; color: var(--muted); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.value-card h3 { margin: 0 0 0.5rem; color: var(--primary); }

/* Contact */
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.contact-cards { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.25rem 0; }
.contact-card {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--ease);
}
.contact-card:hover { border-color: var(--accent-hot); }
.contact-card__label { display: block; font-size: 0.78rem; color: var(--muted); }
.contact-card strong { color: var(--primary); font-size: 1.05rem; }
.contact__location { color: var(--muted); line-height: 1.8; }
.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form h3 { margin: 0 0 1.25rem; font-family: var(--display); color: var(--primary); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.35rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-feedback { margin-top: 1rem; font-size: 0.9rem; min-height: 1.4em; }
.form-feedback.is-success { color: var(--primary-mid); }
.form-feedback.is-error { color: #c0392b; }
.contact-page__map h3 {
  font-family: var(--display);
  color: var(--primary);
  margin: 0 0 1rem;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; display: block; }

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 0;
  margin-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer__brand p { margin: 0.5rem 0; font-size: 0.9rem; max-width: 280px; }
.footer__sede { opacity: 0.7; }
.footer .social-icons { margin-top: 1rem; }
.footer .social-icons__link {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.footer .logo { color: #fff; }
.footer .logo:hover { opacity: 0.92; }
.footer__col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 28, 21, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; text-align: center; }
.lightbox__figure img { max-height: 75vh; border-radius: var(--radius); margin: 0 auto; }
.lightbox__figure figcaption { color: #fff; margin-top: 1rem; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: currentColor;
}
.icon--inline { width: 1.1em; height: 1.1em; margin-left: 0.2em; }
.icon--sm { width: 16px; height: 16px; }
.icon--md { width: 22px; height: 22px; }
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 36px; height: 36px; }
.icon--list { width: 20px; height: 20px; color: var(--accent-hot); }

.hero__badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__badge .icon,
.pill .icon { color: inherit; }

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  margin-bottom: 1rem;
  color: #fff;
}
.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.feature-card__link .icon { color: inherit; }

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(149, 213, 178, 0.35);
  border-radius: 14px;
  color: var(--primary);
  flex-shrink: 0;
}
.service-card--compact .service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
}

/* Stats */
#pas-hero {
  scroll-margin-top: var(--header-h);
}
.section--stats {
  padding: 2rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 1rem;
}
.stat-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--primary-mid);
}
.stat-card__value {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1.2;
}
.stat-card__label {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Intro */
.intro-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.intro-block h2 {
  font-family: var(--display);
  color: var(--primary);
  margin: 0 0 1rem;
}
.intro-block__text {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  font-weight: 400;
}
.intro-block h2,
.mission-card h3,
.about-page__grid h2 {
  letter-spacing: -0.025em;
}
p, li, .service-card__desc, .product-card__body > p {
  line-height: 1.7;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

/* Check list */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}
.check-list li span { flex: 1; }

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mission-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.mission-card__icon {
  color: var(--primary-mid);
  margin-bottom: 1rem;
}
.mission-card h3 {
  font-family: var(--display);
  color: var(--primary);
  margin: 0 0 0.75rem;
}
.mission-card p { margin: 0; color: var(--muted); line-height: 1.7; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.process-step {
  position: relative;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.section--alt .process-step { background: var(--bg); }
.process-step__num {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-hot);
  opacity: 0.8;
}
.process-step__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary-mid);
}
.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--primary);
}
.process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.value-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary-mid);
}
.value-card span:not(.value-card__icon) { display: none; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-card__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 12px;
  color: var(--primary-mid);
  flex-shrink: 0;
}
.contact__location {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-line .icon { color: var(--primary-mid); flex-shrink: 0; }

@media (max-width: 900px) {
  .stats-row,
  .process-grid,
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .stats-row,
  .process-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* Services */
.services-intro__lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 1.5rem;
  line-height: 1.75;
}
.services-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.services-highlights li {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.services-grid--home {
  grid-template-columns: repeat(2, 1fr);
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.section--alt .service-card { background: var(--surface); }
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.service-card__head h2,
.service-card--compact h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  color: var(--primary);
  font-size: 1.35rem;
}
.service-card__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent-hot);
  font-weight: 600;
}
.service-card__desc {
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.7;
}
.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.service-card__features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--text);
}
.service-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-hot);
  font-weight: 700;
}
.service-card__cta {
  font-weight: 600;
  font-size: 0.95rem;
}
.service-card--compact {
  padding: 1.5rem;
}
.service-card--compact p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.brands-block { text-align: center; }
.brands-block h2 {
  font-family: var(--display);
  color: var(--primary);
  margin: 0 0 1.25rem;
}
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.brand-pill {
  padding: 0.6rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  color: var(--primary-mid);
  font-size: 0.9rem;
}
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  margin-bottom: 0;
}
.cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-banner h2 {
  font-family: var(--display);
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}
.cta-banner p {
  margin: 0;
  opacity: 0.9;
  max-width: 520px;
}
.cta-banner .btn--primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  flex-shrink: 0;
}
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--surface);
  cursor: pointer;
}
.form-group select:focus {
  outline: none;
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .cards-row, .values-grid, .split-banner, .about-page__grid, .contact-page__grid, .footer__grid,
  .services-grid, .services-grid--home {
    grid-template-columns: 1fr;
  }
  .split-banner__img { order: -1; }
}
@media (max-width: 768px) {
  :root {
    --content-gutter: var(--content-gutter-mobile);
  }
  .container,
  .hero--home > .hero__shell {
    width: min(var(--content-max), calc(100vw - 2 * var(--content-gutter)));
    max-width: var(--content-max);
    margin-inline: auto;
  }
  .hero__services {
    gap: 0.65rem;
  }
  .hero-service {
    padding: 0.85rem 0.65rem;
  }
  .nav-toggle { display: flex; }
  .header .social-icons { display: none; }
  .page-home .header--over-hero {
    position: fixed;
  }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
  }
  .page-home .header--over-hero .nav a {
    color: var(--muted);
    border-color: var(--border);
    background: var(--bg);
  }
  .page-home .header--over-hero .nav a.is-active,
  .page-home .header--over-hero .nav a:hover {
    color: var(--primary);
    background: rgba(149, 213, 178, 0.25);
    border-color: transparent;
  }
  .page-home .header--over-hero .nav__cta {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .form-row { grid-template-columns: 1fr; }
  .hero--home { min-height: 100svh; padding: 4.5rem 0 1.25rem; }
  .hero:not(.hero--home) { min-height: 75vh; }
  .hero__shell { min-height: calc(100svh - 6rem); gap: 1rem; }
  .hero__services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  :root {
    --content-gutter-mobile: clamp(1.35rem, 6vw, 1.85rem);
  }
  .hero__title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero__services { grid-template-columns: repeat(2, 1fr); }
  .hero-service { min-height: 92px; padding: 0.85rem 0.65rem; }
  .hero-service__title { font-size: 0.82rem; }
  .hero__actions .btn { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .header__inner {
    padding-inline: 0;
  }
}
