* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Lato", "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #003263;
  line-height: 1.6;
}
body p {
  font-size: 1.2rem;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
/* HEADER & NAV */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 6vw;
  min-height: 120px;
  background: transparent;
  border-bottom: none;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ab6d;
  display: flex;
  align-items: center;
}
.logo img {
  height: 112px;
  width: auto;
  display: block;
}
.site-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  flex: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
  justify-content: flex-end;
}
.site-nav a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: #f8f5f0;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav a.active {
  color: #00ab6d;
  background: rgba(0, 171, 109, 0.1);
}
.site-nav a:hover {
  color: #00ab6d;
  background: rgba(0, 171, 109, 0.08);
}
.nav-cta {
  margin-left: auto;
  color: #ffffff !important;
  background: #00ab6d !important;
  font-weight: 700;
  border-radius: 999px;
  padding-inline: 1.2rem !important;
}
/* language switch */
.lang-switch {
  display: flex;
  gap: 0.4rem;
}
.lang-switch button {
  background: #f8f5f0;
  color: #003263;
  border: 1px solid #d6d1c6;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: border 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.lang-switch button.active {
  border-color: rgba(0, 171, 109, 0.9);
  background: rgba(0, 171, 109, 0.4);
  color: white;
}
/* mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: white;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.site-nav.open {
  display: flex;
}
/* LAYOUT */
main {
  padding: 0 0 4rem;
}
main section {
  text-align: center;
}
main section p {
  margin-left: 3rem;
  margin-right: 3rem;
}
main > section:not(.hero):not(.wide-hero):not(.wide-section):not(.contact-section) {
  max-width: 1140px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}
/* keep your slider logic, just soften feel */
.hero__slides {
  position: absolute;
  inset: 0;
  display: flex;
  width: 300%;
  height: 100%;
  animation: heroSlide 12s infinite ease-in-out;
}
.hero__slide {
  position: relative;
  flex: 1 0 33.3333%;
  overflow: hidden;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05);
  animation: heroZoom 12s infinite;
}
.slide-0 img {
  animation-delay: 0s;
}
.slide-1 img {
  animation-delay: 4s;
}
.slide-2 img {
  animation-delay: 8s;
}
.hero__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(1.6rem, 6vw, 3.2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
}
.hero__overlay h1 {
  font-family: "Playfair Display", "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0.3rem 0 0.6rem;
  color: #ffffff;
}
.hero__overlay .lead {
  max-width: 60ch;
  margin: 0 auto 1rem;
  font-size: clamp(1rem, 2.6vw, 1.8rem);
  color: #f4f3f0;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
  justify-content: center;
}
/* subtle hero variant */
.hero--subtle {
  background: linear-gradient(135deg, rgba(0, 171, 109, 0.07), #ffffff);
  min-height: auto;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.hero.hero--image {
  background-size: cover;
  background-position: center;
}
/* ANIMATIONS */
@keyframes heroSlide {
  0%,
  25% {
    transform: translateX(0);
  }
  33%,
  58% {
    transform: translateX(-33.3333%);
  }
  66%,
  91% {
    transform: translateX(-66.6666%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes heroZoom {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.09);
  }
}
/* TYPO & UTILITIES */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #00ab6d;
  font-weight: 700;
  font-size: 1.2rem;
}
.lead {
  color: #6f7580;
  max-width: 48ch;
}
/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn.primary {
  background: #00ab6d;
  color: #ffffff;
  box-shadow: 0 10px 32px rgba(0, 171, 109, 0.35);
}
.btn.ghost {
  border-color: #00ab6d;
  background: white;
  color: #00ab6d;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 171, 109, 0.24);
}
/* STATS */
.stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.stat {
  background: #f8f5f0;
  border: 1px solid #d6d1c6;
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  min-width: 140px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}
.stat__number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00ab6d;
}
.stat__label {
  display: block;
  color: #6f7580;
  font-size: 0.9rem;
}
/* BADGE + PILLS */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 171, 109, 0.1);
  color: #00ab6d;
  border: 1px solid rgba(0, 171, 109, 0.35);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  font-size: 0.8rem;
}
.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill-list li {
  padding: 0.4rem 0.8rem;
  background: rgba(0, 50, 99, 0.03);
  border: 1px solid #d6d1c6;
  border-radius: 999px;
  color: #6f7580;
  font-size: 0.85rem;
}
/* GRID SECTION / CARDS */
.grid-section {
  padding: 0;
  margin-top: 3rem;
}
#quienes-somos {
  position: relative;
  background-color: #F1F1F1;
  background-image: url('../assets/img/white-horse.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  margin-top: 0;
}
#quienes-somos .section-header,
#quienes-somos .icon-grid {
  max-width: 1140px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(2.3rem, 2.8vw, 3.2rem);
  font-family: "Playfair Display", "Lora", Georgia, serif;
  font-weight: 600;
  color: #00ab6d;
}
.section-header p {
  color: #003263;
}
.cards {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.card {
  background: #f8f5f0;
  border-radius: 1rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  display: grid;
  gap: 0.5rem;
}
.card .card__image {
  border: none;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
#servicios h2,
#servicios p,
#servicios .btn {
  margin-left: 1rem;
  margin-right: 1rem;
}
#servicios p {
  margin-top: 0;
  margin-bottom: 0;
}
#servicios .btn {
  max-height: 50px;
  margin-bottom: 1rem;
}
.card__image {
  width: 100%;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.card__eyebrow {
  font-size: 0.85rem;
  color: #00ab6d;
  font-weight: 700;
  letter-spacing: 0.08em;
}
/* CALLOUT */
.callout {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d6d1c6;
  border-radius: 1.4rem;
  background: linear-gradient(140deg, rgba(201, 154, 84, 0.14), #ffffff);
}
.callout__content p {
  color: #6f7580;
}
.callout__aside {
  background: #f8f5f0;
  border: 1px solid #d6d1c6;
  border-radius: 1rem;
  padding: 1.2rem;
}
.list {
  display: grid;
  gap: 0.5rem;
  color: #6f7580;
}
.steps {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}
.step {
  padding: 0.9rem;
  border: 1px solid #d6d1c6;
  border-radius: 0.9rem;
  background: rgba(0, 50, 99, 0.03);
}
.step h4 {
  margin: 0.1rem 0;
}
.step p {
  color: #6f7580;
}
/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}
.contact-card {
  background: #f8f5f0;
  border: 1px solid #d6d1c6;
  border-radius: 0.9rem;
  padding: 1rem;
}
.contact-value {
  font-weight: 700;
}
.muted {
  color: #6f7580;
}
/* FOOTER */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 6vw 2.5rem;
  border-top: 1px solid #d6d1c6;
  background: rgba(255, 255, 255, 0.98);
}
.site-footer h4 {
  margin: 0.2rem 0;
}
.site-footer p {
  margin: 0.2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}
.footer-links {
  display: grid;
  gap: 0.25rem;
}
.rights {
  color: #6f7580;
  font-size: 0.9rem;
}
.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid white;
  background: #00ab6d;
  color: white;
  font-weight: 800;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 50;
}
.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}
.scroll-top:active {
  transform: translateY(0);
}
/* ICON / FEATURE GRIDS */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.icon-tile {
  background: #f8f5f0;
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.icon-tile img,
.icon-tile p {
  margin-top: 0;
  margin-bottom: 0;
}
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  color: #00ab6d;
  font-weight: 700;
  margin: 0 auto;
  font-size: 3.5rem;
}
.icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.feature {
  background: rgba(0, 50, 99, 0.03);
  border: 1px solid #d6d1c6;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
/* CONTENT LIST */
.content-list {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid #d6d1c6;
  border-bottom: 1px solid #d6d1c6;
}
.content-list__panel {
  padding: 1rem;
}
.content-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #d6d1c6;
}
.content-list--vol {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.content-list__row {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: stretch;
}
.content-list__row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}
.content-list__panel ul {
  list-style: disc;
  padding-left: 5rem;
  color: #003263;
  line-height: 1.5;
  text-align: left;
}
.content-list__panel ul li {
  font-size: 1.2rem;
}
/* TESTIMONIALS */
.testimonials {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.testimonial {
  background: #f8f5f0;
  border: 1px solid #d6d1c6;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.testimonial footer {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: #6f7580;
}
/* CONTACT SECTION */
.contact-section {
  margin: 3rem auto;
  padding: 2rem;
  background: linear-gradient(140deg, rgba(0, 171, 109, 0.1), #ffffff);
  width: 100%;
}
.contact-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}
.contact-form {
  display: grid;
  gap: 0.8rem;
}
.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid #d6d1c6;
  background: rgba(255, 255, 255, 0.9);
  color: #003263;
}
.form-error {
  color: #d9534f;
  font-size: 0.85rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.contact-section__panel {
  background: #f8f5f0;
  border-radius: 1rem;
  padding: 1.2rem;
  align-self: center;
  max-height: fit-content;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.contact-info p {
  margin: 0.2rem 0;
  color: #6f7580;
}
/* CTA BANNER */
.cta-banner {
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.gallery-section {
  margin-top: 3rem;
}
.gallery {
  position: relative;
  display: block;
  padding: 0 3rem;
}
.gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 320px;
}
.gallery__viewport--video {
  aspect-ratio: 16 / 9;
  min-height: 420px;
}
.gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
  position: absolute;
  pointer-events: auto;
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}
.gallery__slide iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.8rem;
}
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 1px solid white;
  background: #00ab6d;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 1.3rem;
}
.gallery__nav--prev {
  left: 0;
}
.gallery__nav--next {
  right: 0;
}
.gallery__nav:active {
  transform: translateY(-50%);
}
.video-carousel {
  position: relative;
  padding: 0 3rem;
}
.video-carousel__viewport {
  position: relative;
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  overflow: hidden;
}
.video-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 1px solid white;
  background: #00ab6d;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 1.3rem;
}
.video-carousel__nav--prev {
  left: 0;
}
.video-carousel__nav--next {
  right: 0;
}
.video-carousel__nav:active {
  transform: translateY(-50%);
}
.wide-hero {
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  margin-top: 3rem;
}
.wide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}
.wide-hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(50%, 560px);
  padding: clamp(1.6rem, 5vw, 2.6rem);
  background: linear-gradient(115deg, rgba(15, 17, 21, 0.8), rgba(15, 17, 21, 0.6));
  display: grid;
  align-content: center;
  color: #fff;
  text-align: left;
  gap: 0.6rem;
}
.wide-hero__overlay h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #fff;
}
.wide-hero__overlay p {
  margin: 0;
  color: #e9e9e9;
}
.wide-hero__bullets {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.25rem;
  color: #e9e9e9;
}
.wide-hero__bullets li {
  text-align: left;
}
#testimonios {
  display: none;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
}
/* RESPONSIVE */
/* mobile & tablet */
@media (max-width: 960px) {
  .wide-hero {
    min-height: 580px;
    text-align: center;
  }
  .wide-hero__overlay {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(15, 17, 21, 0.8), rgba(15, 17, 21, 0.65));
  }
  .content-list__panel ul {
    padding-left: 1rem;
  }
  .contact-form .form-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #cta-final {
    border-radius: 0;
    box-shadow: unset;
    transition: unset;
  }
  #quienes-somos {
    padding: 1rem;
  }
  .video-carousel__viewport {
    width: 100%;
  }
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0.85rem 1rem;
    gap: 0.6rem;
    background: transparent;
    min-height: 100px;
  }
  .menu-toggle {
    display: flex;
    order: 3;
    margin-left: auto;
    align-self: center;
    position: relative;
    z-index: 30;
  }
  .menu-toggle.open span {
    background: #003263;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .site-nav {
    width: 80vw;
    max-width: 320px;
    order: 3;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease, opacity 0.25s ease;
    overflow-y: auto;
    pointer-events: none;
  }
  .site-nav .logo {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
  .site-nav a {
    width: 100%;
    padding: 0.8rem;
    font-weight: 600;
    color: #00ab6d;
    background: transparent;
    transition: none;
  }
  .site-nav .nav-cta {
    width: 100%;
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }
  .site-nav.open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-cta {
    margin-left: 0;
  }
  .hero,
  .callout {
    grid-template-columns: 1fr;
    border-radius: 0;
    box-shadow: none;
  }
  .hero {
    min-height: 80vh;
  }
  .gallery {
    padding: 0;
  }
  .gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }
  .gallery__nav--prev {
    left: 0.75rem;
  }
  .gallery__nav--next {
    right: 0.75rem;
  }
  .gallery__viewport--video {
    aspect-ratio: 1;
    min-height: 260px;
  }
  .hero__overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.4rem;
    gap: 0.6rem;
  }
  .hero__overlay h1 {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
  }
  .hero__overlay .lead {
    font-size: 22px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
  }
  main > section:not(.hero):not(.wide-hero):not(.wide-section):not(.contact-section) {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  main section {
    text-align: center;
  }
  main section p {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .content-list {
    grid-template-columns: 1fr;
  }
  .content-list--vol {
    gap: 1rem;
  }
  .content-list__row,
  .content-list__row--reverse {
    grid-template-columns: 1fr;
  }
  .contact-section {
    margin-top: 2rem;
    padding: 1.6rem;
  }
  .contact-section .container {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    margin: 2.4rem 1rem;
  }
  .lang-switch {
    order: 2;
    width: auto;
    margin-left: 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
  }
  .logo img {
    max-height: 80px;
    height: auto;
  }
}
/* desktop */
@media (min-width: 961px) {
  .site-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  /* two-column stacks with first 3 items in left column, rest in right */
  .icon-grid,
  .feature-grid,
  .cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
  }
  .icon-grid p,
  .feature-grid p,
  .cards p {
    margin-left: 0;
    margin-right: 0;
  }
  .icon-grid > *,
  .feature-grid > *,
  .cards > * {
    flex: 1 1 auto;
    max-width: 260px;
  }
  /* Taller gallery viewport so full images show on desktop */
  .gallery__viewport {
    min-height: 560px;
    width: 100%;
  }
  .gallery__slide img {
    object-fit: contain;
  }
}
/* small tweak to keep subtle hero centred on wide screens */
.hero--subtle {
  margin: 0 auto;
}
