/* ============================================================
   COMPONENTS — All UI components and section styles
   ============================================================ */

/* ── Section Tag ───────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--accent-subtle);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  min-height: 48px;
  transition: all var(--duration-fast) ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 98, 26, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--bg-overlay);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-text-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.btn-text-white:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

/* ── TOP BAR ────────────────────────────────────────────── */
.top-bar {
  background: var(--secondary);
  color: #fff;
  min-height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
  padding: 0.25rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.top-bar__languages {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--text-sm);
}

.top-bar__label {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-size: 0.8125rem;
}

.top-bar__sep {
  color: rgba(255, 255, 255, 0.25);
}

.top-bar__lang-links {
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.top-bar__lang-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  transition: color var(--duration-fast) ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.top-bar__lang-link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  min-height: 40px;
  white-space: nowrap;
}
.top-bar__phone svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}
.top-bar__phone:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
  .top-bar__label { display: none; }
}

@media (max-width: 480px) {
  .top-bar__languages { display: none; }
  .top-bar__inner { justify-content: center; }
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  transition: backdrop-filter 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 20px rgba(180, 100, 30, 0.07);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  min-height: 48px;
  text-decoration: none;
}

.navbar__logo-img {
  height: 44px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
  order: 1;
  display: block;
}

/* Thin divider sits BETWEEN image and text */
.navbar__logo::before {
  content: '';
  display: block;
  order: 2;
  width: 1.5px;
  height: 32px;
  background: var(--accent);
  opacity: 0.3;
  flex-shrink: 0;
  border-radius: 2px;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  order: 3;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -0.01em;
}

.navbar__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .navbar__inner { height: 64px; }
  .navbar__logo-img { height: 38px; }
  .navbar__logo::before { height: 28px; }
  .navbar__logo-name { font-size: 1rem; }
  .navbar__logo-tagline { font-size: 0.5625rem; }
  .navbar__logo { gap: 0.5rem; }
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
  justify-content: center;
}

.navbar__nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
  position: relative;
}
.navbar__nav-link:hover {
  color: var(--accent);
  background: var(--accent-subtle);
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(180, 100, 30, 0.12);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 200;
}

.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown:focus-within .navbar__dropdown-menu {
  display: block;
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-body);
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease;
  min-height: 44px;
}
.navbar__dropdown-item:hover {
  background: var(--accent-subtle);
  color: var(--accent);
}

.navbar__dropdown > span {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.navbar__chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  position: relative;
  top: 1px; /* optical correction for the chevron glyph */
}

.navbar__dropdown:hover .navbar__chevron {
  transform: rotate(180deg);
}

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background 0.2s ease;
}
.navbar__hamburger:hover {
  background: var(--accent-subtle);
}
.navbar__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 960px) {
  .navbar__nav { display: none; }
  .navbar__actions .btn { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: all;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__drawer {
  position: relative;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--bg-surface);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open .mobile-menu__drawer {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0.75rem;
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.mobile-menu__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}
.mobile-menu__logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  cursor: pointer;
  color: var(--text-body);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu__close:hover {
  background: var(--accent-subtle);
  color: var(--accent);
}
.mobile-menu__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.mobile-menu__nav-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 0.875rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  min-height: 48px;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu__nav-link:hover {
  background: var(--accent-subtle);
  color: var(--accent);
}

.mobile-menu__nav-toggle {
  width: 100%;
  justify-content: space-between;
  font-family: var(--font-body);
  text-align: left;
}

.mobile-menu__chevron {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  margin-left: auto;
  align-self: center;
}

.mobile-menu__nav-toggle[aria-expanded="true"] .mobile-menu__chevron {
  transform: rotate(180deg);
}

.mobile-menu__nav-toggle[aria-expanded="true"] {
  color: var(--accent);
  background: var(--accent-subtle);
}

/* Submenu: collapsed by default, expands on open */
.mobile-menu__submenu {
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.25rem 0 0.5rem 1rem;
  border-left: 2px solid var(--accent-subtle);
  margin-left: 0.875rem;
  margin-bottom: 0.25rem;
}

.mobile-menu__submenu.open {
  display: flex;
}

.mobile-menu__sub-link {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.875rem;
  border-radius: 6px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  min-height: 44px;
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-menu__sub-link:hover {
  color: var(--accent);
  background: var(--accent-subtle);
}

.mobile-menu__cta {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}
.mobile-menu__cta .btn {
  width: 100%;
}

/* ── HERO — full-bleed slider with warm overlay ─────────── */
.hero {
  position: relative;
  min-height: clamp(500px, 78vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed background slider */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero__slide--active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Warm overlay: fully opaque on left, fades to transparent on right */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(245, 242, 238, 1.00)  0%,
    rgba(245, 242, 238, 0.96) 30%,
    rgba(245, 242, 238, 0.70) 55%,
    rgba(245, 242, 238, 0.15) 75%,
    rgba(245, 242, 238, 0.00) 100%
  );
}

/* Content layer */
.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
  width: 100%;
}

.hero__content { max-width: 560px; }

.hero__tag {
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out) 0s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  color: var(--text-primary);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out) 0.15s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--secondary);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-body);
  line-height: 1.75;
  max-width: 50ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out) 0.3s forwards;
}

.hero__cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out) 0.45s forwards;
}

.hero__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-default);
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out) 0.55s forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.trust-item__icon { color: var(--accent); display: flex; align-items: center; }
.trust-item__icon svg { width: 16px; height: 16px; stroke: var(--accent); }

/* Stat badge — right side, aligns to bottom */
.hero__stat-badge {
  background: var(--bg-surface);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 40px rgba(180, 100, 30, 0.2);
  display: flex;
  flex-direction: column;
  min-width: 170px;
  gap: 0.25rem;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.25s forwards;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.35;
}

/* Bottom scrim so dots read over any photo */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Slide dots */
.hero__dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  border: none;
  padding: 0;
  min-height: unset;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero__dot--active {
  width: 28px;
  background: #fff;
}

@media (max-width: 960px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(245,242,238,0.97) 0%,
      rgba(245,242,238,0.88) 55%,
      rgba(245,242,238,0.50) 100%
    );
  }
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
  .hero__title { font-size: clamp(2rem, 6vw, 3rem); }
  .hero__stat-badge { align-self: flex-start; margin-bottom: 0; }
}

@media (max-width: 480px) {
  .hero {
    min-height: unset;
  }
  .hero__container {
    padding-top: 1.75rem;
    padding-bottom: 3rem;
  }
  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    margin-bottom: 1rem;
  }
  .hero__sub {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  /* Reorder: trust strip (stats) above CTAs on mobile */
  .hero__content {
    display: flex;
    flex-direction: column;
  }
  .hero__trust-strip {
    order: 4;
    border-top: none;
    border-bottom: 1px solid var(--border-default);
    padding-top: 0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    gap: 0.75rem;
  }
  .hero__cta-row {
    order: 5;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 0;
  }
  .hero__cta-row .btn { justify-content: center; }
  .hero__stat-badge { display: none; }
  .trust-item {
    font-size: 0.8125rem;
  }
}

/* ── IMPACT BAR ─────────────────────────────────────────── */
.impact-bar {
  background: var(--accent);
  padding: 3.5rem 0;
}

.impact-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.impact-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 2rem;
  position: relative;
}

.impact-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.impact-bar__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-bar__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 600px) {
  .impact-bar {
    padding: 2.5rem 0;
  }
  .impact-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .impact-bar__item {
    padding: 0.75rem 1rem;
  }
  .impact-bar__item:nth-child(2)::after,
  .impact-bar__item:nth-child(4)::after {
    display: none;
  }
  .impact-bar__item:nth-child(1),
  .impact-bar__item:nth-child(2) {
    padding-bottom: 1.25rem;
  }
  .impact-bar__item:nth-child(3),
  .impact-bar__item:nth-child(4) {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .impact-bar__number {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
}

/* ── ABOUT STRIP ────────────────────────────────────────── */
.about-strip {
  background: var(--bg-base);
}

/* ── Section header ── */
.about-strip__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.about-strip__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--secondary);
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}

.about-strip__intro {
  color: var(--text-body);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 auto;
}

/* ── Peeking image cards ── */
/* PEEK_HEIGHT = 2.5rem (40px) — how far the image rises above the card top */
/* IMG_HEIGHT  = 185px           — total image box height                    */
/* Inside-card image height = 185px - 40px = 145px                          */
/* card padding-top = 145px + 1.5rem gap = calc(145px + 1.5rem)             */

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem; /* exactly PEEK_HEIGHT — gives images room above cards */
}

.about-card {
  background: var(--secondary);
  border-radius: 18px;
  position: relative;
  overflow: visible;
  padding: 0 1.5rem 2rem;
  padding-top: calc(145px + 1.5rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(26, 74, 92, 0.22);
}

/* Image peeks above card top by PEEK_HEIGHT */
.about-card__img {
  position: absolute;
  top: -2.5rem;
  left: 1.25rem;
  right: 1.25rem;
  height: 185px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.about-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-card:hover .about-card__img img {
  transform: scale(1.06);
}

.about-card__content {
  padding-top: 1.25rem;
}

.about-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.about-card__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ── CTA below cards ── */
.about-strip__cta {
  text-align: center;
  margin-top: 3rem;
}

.about-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s ease;
  min-height: 44px;
}
.about-strip__link:hover {
  text-decoration-color: var(--accent);
}
.about-strip__link svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
}

@media (max-width: 860px) {
  .about-strip__header {
    margin-bottom: 3rem;
  }
}

@media (min-width: 540px) and (max-width: 860px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 539px) {
  .about-cards {
    grid-template-columns: 1fr;
    gap: 3.5rem;        /* must be > peek height to prevent image overlap */
    padding-top: 1.5rem;
  }
  .about-card__img {
    top: -1.5rem;
    height: 195px;     /* taller on full-width single column */
  }
  .about-card {
    padding-top: calc(157px + 1.25rem); /* image height - peek + gap */
  }
}

/* ── SERVICES GRID ──────────────────────────────────────── */
.services-section {
  background: var(--bg-warm);
}

.services-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.services-section__title {
  font-size: var(--text-xl);
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.services-section__sub {
  color: var(--text-secondary);
  font-size: var(--text-base);
  max-width: 50ch;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(180, 100, 30, 0.04);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232, 98, 26, 0.12);
}

.service-card__icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  background: var(--accent-subtle);
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.service-card:hover .service-card__icon-wrap {
  background: rgba(232, 98, 26, 0.14);
}

.service-card__icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.625rem;
  line-height: 1.25;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
  margin-top: auto;
  min-height: 44px;
}
.service-card:hover .service-card__link {
  text-decoration-color: var(--accent);
}
.service-card__link svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── LANGUAGE BANNER ────────────────────────────────────── */
.lang-banner {
  background: var(--secondary);
  padding: 5rem 0;
}

.lang-banner__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.lang-banner__title {
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lang-banner__sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.lang-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
  min-height: 48px;
  text-decoration: none;
}
.lang-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

.lang-pill__flag {
  font-size: 1.25rem;
  line-height: 1;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  background: var(--bg-base);
}

.testimonials__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.testimonials__header .section-tag {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.testimonials__title {
  font-size: var(--text-xl);
  color: var(--secondary);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(180, 100, 30, 0.06);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 1.25rem;
  user-select: none;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  font-style: italic;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.75rem;
}

.testimonial-card__bottom {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  border: 2px solid rgba(232, 98, 26, 0.15);
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.testimonial-card__service {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-style: normal;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.15rem;
  margin-top: 0.35rem;
}

.star {
  color: #F59E0B;
  font-size: 0.875rem;
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── EVENTS STRIP ───────────────────────────────────────── */
.events-strip {
  background: var(--accent-warm);
}

.events-strip__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.events-strip__title-block {}

.events-strip__title {
  font-size: var(--text-xl);
  color: var(--secondary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.events-strip__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s ease;
  white-space: nowrap;
  min-height: 48px;
  align-self: center;
}
.events-strip__view-all:hover {
  text-decoration-color: var(--accent);
}
.events-strip__view-all svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

.events-strip__scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: var(--bg-surface);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(232, 98, 26, 0.1);
  box-shadow: 0 4px 20px rgba(180, 100, 30, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.event-card:hover {
  box-shadow: 0 8px 32px rgba(232, 98, 26, 0.12);
  transform: translateY(-3px);
}

.event-card__date-chip {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  width: fit-content;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.35;
  font-weight: 600;
}

.event-card__location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.event-card__location svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-secondary);
  flex-shrink: 0;
}

.event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: auto;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
  min-height: 44px;
}
.event-card__cta:hover {
  text-decoration-color: var(--accent);
}
.event-card__cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

@media (max-width: 768px) {
  .events-strip__scroll {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    gap: 1rem;
  }
  .events-strip__scroll::-webkit-scrollbar {
    display: none;
  }
  .event-card {
    min-width: 270px;
    flex-shrink: 0;
  }
}

/* ── GET INVOLVED CTA ───────────────────────────────────── */
.get-involved {
  background: var(--secondary);
  padding: 6rem 0;
}

.get-involved__inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.get-involved__title {
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.get-involved__sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

.get-involved__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .get-involved__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .get-involved__cta-row .btn {
    justify-content: center;
  }
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #1C1C1E;
  padding: 4.5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.25fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__col-brand {}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.9;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

.footer__logo-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 1px;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 26ch;
  margin-bottom: 1.75rem;
}

.footer__socials {
  display: flex;
  gap: 0.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
  min-width: 44px;
}
.footer__social-link:hover {
  background: var(--accent);
  color: #fff;
}
.footer__social-link svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
  min-height: 36px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.footer__nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin-bottom: 0.875rem;
}
.footer__contact-item svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-link {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}
.footer__contact-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 3rem 0 0;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "links services"
      "contact contact";
    gap: 2rem 1.5rem;
    padding-bottom: 2.5rem;
  }
  .footer__col-brand           { grid-area: brand; }
  .footer__grid > div:nth-child(2) { grid-area: links; }
  .footer__grid > div:nth-child(3) { grid-area: services; }
  .footer__grid > div:nth-child(4) { grid-area: contact; }

  /* Compact link lists in the 2-col row */
  .footer__grid > div:nth-child(2) .footer__nav-link,
  .footer__grid > div:nth-child(3) .footer__nav-link {
    min-height: 32px;
    font-size: 0.875rem;
  }

  .footer__col-title {
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
  }

  .footer__tagline {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.25rem 0;
  }

  .footer__legal {
    gap: 1.25rem;
  }

  .footer__copyright,
  .footer__legal-link {
    font-size: 0.8125rem;
  }
}

/* ── Back to top button ─────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 400;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(232, 98, 26, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Global mobile overflow guard ───────────────────────── */
@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
}

/* ── Section heading sizes on small screens ─────────────── */
@media (max-width: 480px) {
  .about-strip__heading,
  .services-section__title,
  .lang-banner__title,
  .testimonials__title,
  .events-strip__title,
  .get-involved__title {
    font-size: 1.5rem;
  }

  .lang-banner {
    padding: 3.5rem 0;
  }

  .lang-pills {
    gap: 0.5rem;
  }

  .lang-pill {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .get-involved {
    padding: 4rem 0;
  }

  .events-strip__header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .about-strip__header {
    margin-bottom: 2rem;
  }
}
