/* ============================================
   Avolas Sports Club — main stylesheet
   ============================================ */

:root {
  --c-primary: #0c4d72;
  --c-primary-2: #0a3f57;
  --c-tertiary: #179bb6;
  --c-accent: #27a9c9;
  --c-accent-2: #7dd9ec;
  --c-accent-dark: #0a3f57;
  --c-accent-text: #179bb6;
  --c-bg: #F6FBFF;
  --c-muted: #EDF6FB;
  --c-muted-2: #E2F0F8;
  --c-text: #102C41;
  --c-text-2: #425A6D;
  --c-border: rgba(12, 77, 114, 0.08);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 2px 8px rgba(15, 23, 42, .04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08), 0 12px 32px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 40px rgba(11, 54, 88, .18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --container: 1200px;
  --topbar-h: 40px;
  --header-h: 84px;
  --header-h-scrolled: 70px;
  --header-gap: 14px;
  --page-top: calc(var(--topbar-h) + var(--header-gap) + var(--header-h));

  --t-fast: 180ms cubic-bezier(.4,.0,.2,1);
  --t-base: 280ms cubic-bezier(.4,.0,.2,1);
  --t-slow: 520ms cubic-bezier(.4,.0,.2,1);

  --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}
.section--muted { background: var(--c-muted); }
.section--dark {
  background: linear-gradient(135deg, #0c4d72 0%, #0a3f57 100%);
  color: #fff;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent-text);
  padding: 6px 14px;
  background: rgba(47, 107, 83, .12);
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: .01em;
  margin: 0 0 16px;
  color: var(--c-primary);
}
.section--dark .section-head h2 { color: #fff; }
.section-head p {
  font-size: 17px;
  color: var(--c-text-2);
  margin: 0;
}
.section--dark .section-head p { color: rgba(255,255,255,.78); }

.page-header {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 50%, var(--c-tertiary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: calc(var(--page-top, 120px) + 56px) 0 56px;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(125, 217, 236, .22), transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(39, 169, 201, .18), transparent 50%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header .section-head { margin: 0 auto; }
.page-header .section-head h2 { color: #fff; }
.page-header .section-head p { color: rgba(255,255,255,.82); }
.page-header .eyebrow {
  color: #fff;
  background: rgba(255,255,255,.14);
}
.page-header + .section { padding-top: 64px; }

/* ===== Topbar ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: var(--topbar-h);
  background: linear-gradient(90deg, #0c4d72 0%, #0a3f57 100%);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  transition: transform var(--t-base);
}
.topbar.is-hidden { transform: translateY(-100%); }
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .02em;
}
.topbar-date svg { color: var(--c-accent); }
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.topbar-social a {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.78);
  transition: color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.topbar-social a:hover { color: #fff; background: rgba(255,255,255,.08); transform: translateY(-1px); }
.topbar-social svg { width: 14px; height: 14px; }

/* ===== Header (pill / floating) ===== */
.site-header {
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-gap));
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: calc(100vw - 16px);
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .5);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 28px;
  box-shadow:
    0 12px 32px rgba(11,54,88,.10),
    0 2px 6px rgba(11,54,88,.06);
  overflow: visible;
  transition: top var(--t-base),
              height var(--t-base), border-radius var(--t-base),
              background var(--t-base), box-shadow var(--t-base);
}
.site-header.is-scrolled {
  top: 12px;
  height: var(--header-h-scrolled);
  background: rgba(255,255,255,.5);
  border-radius: 24px;
  box-shadow:
    0 16px 40px rgba(11,54,88,.14),
    0 2px 8px rgba(11,54,88,.08);
}
.header-inner {
  width: 100%;
  padding: 0 5px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 10px;
  font-family: var(--font-display);
  letter-spacing: .04em;
  font-size: 20px;
  color: var(--c-primary);
  position: relative;
  z-index: 2;
}
.brand img {
  height: 67px;
  width: auto;
  transition: height var(--t-base);
  filter: drop-shadow(0 6px 14px rgba(11,54,88,.18));
  animation: logo-shine 3s ease-in-out infinite;
}
.is-scrolled .brand img { height: 55px; }
.brand-name { display: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: center;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: var(--c-text);
  background: rgba(11, 54, 88, .05);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  box-sizing: border-box;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.main-nav a:hover {
  background: var(--c-primary);
  color: #fff;
}
.main-nav a.is-active {
  background: var(--c-accent);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.main-nav a.is-active:hover {
  background: #5e9985;
  color: #fff;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: flex;
  align-items: center;
  background: var(--c-muted);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  margin-right: 15px;
}
.lang-switch a {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--c-text-2);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast);
}
.lang-switch a.is-active {
  background: var(--c-primary);
  color: #fff;
}
.lang-switch a:hover { color: var(--c-primary); }
.lang-switch a.is-active:hover { color: #fff; }

/* Navbar over dark page-header (only while not scrolled) */
body.has-page-header .site-header:not(.is-scrolled) {
  background: rgba(12, 77, 114, .25);
  border-color: rgba(255,255,255,.5);
}
body.has-page-header .site-header:not(.is-scrolled) .brand {
  color: #fff;
  padding-left: 0;
}
body.has-page-header .site-header:not(.is-scrolled) .brand img {
  background: #fff;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 18px;
  box-sizing: content-box;
  object-fit: contain;
  filter: none;
}
body.has-page-header .site-header.is-scrolled .brand img {
  border-radius: 18px;
}
body.has-page-header .site-header:not(.is-scrolled) .main-nav a {
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.5);
}
body.has-page-header .site-header:not(.is-scrolled) .main-nav a:hover {
  background: #fff;
  color: var(--c-primary);
  border-color: rgba(255,255,255,.5);
}
body.has-page-header .site-header:not(.is-scrolled) .main-nav a.is-active {
  background: var(--c-primary-2);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
body.has-page-header .site-header:not(.is-scrolled) .lang-switch {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.5);
}
body.has-page-header .site-header:not(.is-scrolled) .lang-switch a {
  color: rgba(255,255,255,.85);
}
body.has-page-header .site-header:not(.is-scrolled) .lang-switch a:hover { color: #fff; }
body.has-page-header .site-header:not(.is-scrolled) .lang-switch a.is-active {
  background: #fff;
  color: var(--c-primary);
}
body.has-page-header .site-header:not(.is-scrolled) .hamburger {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--c-muted);
  color: var(--c-primary);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.icon-btn:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }
.icon-btn--accent { background: var(--c-accent); color: #fff; }
.icon-btn--accent:hover { background: #5e9985; color: #fff; }
.icon-btn--wa { background: #25D366; color: #fff; }
.icon-btn--wa:hover { background: #1bb455; color: #fff; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  border-radius: 12px;
  background: var(--c-muted);
  border: 1px solid rgba(255,255,255,.5);
  color: var(--c-primary);
  align-items: center;
  justify-content: center;
}
.hamburger:hover { background: var(--c-primary); color: #fff; }
.hamburger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), top var(--t-base);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
body.menu-open .hamburger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ===== Mobile menu overlay ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(160deg, #0b3658 0%, #082541 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: calc(var(--page-top) + 24px) 32px 32px;
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: .03em;
  padding: 14px 0;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-menu nav a::after {
  content: '→';
  font-family: var(--font-body);
  font-size: 20px;
  opacity: .4;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.mobile-menu nav a:hover { color: #fff; padding-left: 8px; }
.mobile-menu nav a:hover::after { opacity: 1; transform: translateX(6px); }
.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}
.mobile-menu .lang-switch {
  align-self: flex-start;
  background: rgba(255,255,255,.08);
}
.mobile-menu .lang-switch a { color: rgba(255,255,255,.7); }
.mobile-menu .lang-switch a.is-active { background: var(--c-accent); color: #fff; }
.mobile-menu-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-menu-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.mobile-menu-cta .btn-wa { background: #25D366; color: #fff; }
.mobile-menu-cta .btn-tel { background: var(--c-accent); color: #fff; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--c-accent); color: #fff; box-shadow: 0 8px 22px rgba(12, 77, 114, .25); }
.btn-primary:hover { background: #179bb6; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(12,77,114,.35); }
.btn-dark { background: var(--c-primary); color: #fff; }
.btn-dark:hover { background: #051a2e; color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--c-primary); border: 1.5px solid var(--c-primary); }
.btn-ghost:hover { background: var(--c-primary); color: #fff; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .3); }
.btn-wa:hover { background: #1bb455; color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--c-primary); }
.btn-light:hover { background: var(--c-accent); color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero:not(.hero-slider) {
  padding: calc(var(--page-top) + 80px) 0 96px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(115,171,150,.15), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(11,54,88,.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}
.hero:not(.hero-slider)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-shape.svg');
  background-repeat: no-repeat;
  background-position: 110% 30%;
  background-size: 720px;
  opacity: .8;
  animation: floatBlob 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes floatBlob {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-30px,40px) scale(1.05); }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ===== Hero Slider ===== */
.hero-slider {
  --slide-pad-top: calc(var(--page-top) + 56px);
  min-height: clamp(640px, 92vh, 880px);
  padding: 0;
  background: #000;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: var(--slide-pad-top) 0 96px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.4s cubic-bezier(.4,0,.2,1), visibility 0s linear 1s;
  pointer-events: none;
  overflow: hidden;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity 1s ease, transform 9s linear, visibility 0s linear 0s;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 20%, rgba(255,255,255,.06), transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.hero-slide .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-slide .hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
.hero-slide .hero-content {
  max-width: 760px;
}

.hero-slide h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55), 0 4px 28px rgba(0, 0, 0, .55);
}
.hero-slide h1 .accent {
  color: #fff;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55), 0 4px 28px rgba(0, 0, 0, .55);
}
.hero-slide p.lead {
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  max-width: 640px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .75), 0 2px 18px rgba(0, 0, 0, .6);
}
.hero-slide .hero-eyebrow {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
}
.hero-slide .btn-ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.hero-slide .btn-ghost:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

.hero-slide.theme-orange::before {
  background: transparent;
}
.hero-slide.theme-orange h1 .accent { color: #fff; }
.hero-slide.theme-orange .btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.hero-slide.theme-orange .btn-primary:hover { background: var(--c-accent-dark); color: #fff; }

.hero-slide.theme-dark::before {
  background: transparent;
}
.hero-slide.is-active .hero-content > * {
  animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) both;
}
.hero-slide.is-active .hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-slide.is-active .hero-content > *:nth-child(2) { animation-delay: .22s; }
.hero-slide.is-active .hero-content > *:nth-child(3) { animation-delay: .34s; }
.hero-slide.is-active .hero-content > *:nth-child(4) { animation-delay: .46s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  backdrop-filter: blur(10px);
}
.hero-nav:hover { background: var(--c-accent); color: #fff; transform: translateY(-50%) scale(1.06); }
.hero-prev { left: 16px; transform: translateY(-50%); }
.hero-next { right: 16px; transform: translateY(-50%); }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 999px;
}
.hero-dots button {
  position: relative;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  transition: background var(--t-fast);
}
.hero-dots button::before {
  content: '';
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  transition: background var(--t-fast), width var(--t-fast);
}
.hero-dots button.is-active::before {
  background: var(--c-accent);
  width: 22px;
  border-radius: 999px;
}
.hero-dots button:hover::before { background: #fff; }
.hero-dots button.is-active:hover::before { background: var(--c-accent); }

.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.15);
  z-index: 4;
  overflow: hidden;
}
.hero-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent), #8fc1ad);
  transition: width 80ms linear;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding: 8px 16px;
  background: rgba(115,171,150,.1);
  border-radius: 999px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--c-primary);
  margin: 24px 0 20px;
}
.hero:not(.hero-slider) h1 .accent { color: var(--c-accent); display: block; }
.hero-slider h1, .hero-slider h1 .accent { color: #fff; }
.hero:not(.hero-slider) p.lead {
  font-size: 18px;
  color: var(--c-text-2);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--c-accent), var(--c-primary), var(--c-accent));
  filter: blur(40px);
  opacity: .35;
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero-visual img {
  position: relative;
  width: 78%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(11,54,88,.25));
  animation: floatY 6s ease-in-out infinite alternate;
}
@keyframes floatY {
  0% { transform: translateY(-10px); }
  100% { transform: translateY(10px); }
}

/* ===== Stat strip ===== */
.stat-strip {
  background: var(--c-primary);
  color: #fff;
  padding: 56px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--c-accent);
  letter-spacing: .02em;
}
.stat-label {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-top: 8px;
}

/* ===== Card grids ===== */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: auto -40% -60% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(115,171,150,.18), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(115,171,150,.25);
}
.card:hover::before { opacity: 1; }

.card-media {
  margin: -28px -28px 24px -28px;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.card:hover .card-media img {
  transform: scale(1.1);
}

.card-icon {
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(115,171,150,.15), rgba(115,171,150,.05));
  color: var(--c-accent);
  margin-bottom: 18px;
  transition: transform var(--t-base);
}
.card:hover .card-icon { transform: translateY(-4px) rotate(-4deg); }
.card-icon svg { width: 36px; height: 36px; }
.card-icon--logo {
  width: 96px;
  height: 64px;
  border-radius: 14px;
  padding: 8px 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15,23,42,.04), 0 4px 12px rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.06);
}
.card-icon--logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .03em;
  color: var(--c-primary);
  margin: 0 0 8px;
}
.card p { color: var(--c-text-2); margin: 0; }
.card-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card-meta span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 10px;
  background: var(--c-muted);
  border-radius: 999px;
  color: var(--c-text-2);
}

/* ===== CTA strip ===== */
/* ===== Home about (intro) ===== */
.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.home-about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.home-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-about-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.18));
  pointer-events: none;
}
.home-about-text .eyebrow { margin-bottom: 14px; }
.home-about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--c-primary);
  margin: 0 0 18px;
}
.home-about-text p {
  color: var(--c-text-2);
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
}
.home-about-text .btn { margin-top: 12px; }
@media (max-width: 768px) {
  .home-about-grid { grid-template-columns: 1fr; gap: 28px; }
  .home-about-media { aspect-ratio: 16 / 10; }
}

/* ===== Events page ===== */
.events-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--c-text-2);
  font-size: 17px;
  line-height: 1.7;
}
.events-grid-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: .03em;
  color: var(--c-primary);
  margin: 0 0 24px;
  text-align: center;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(115,171,150,.3);
}
.event-card .event-icon {
  width: 54px; height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(115,171,150,.12);
  color: var(--c-accent);
}
.event-card .event-icon svg { width: 28px; height: 28px; }
.event-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--c-primary);
  margin: 0;
}
.event-card p {
  color: var(--c-text-2);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 992px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
}

.cta-strip {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 50%, var(--c-tertiary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip.section { padding: 48px 0; }
.cta-strip .cta-strip-inner { gap: 20px; }
.cta-strip h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 0 0 4px; }
.cta-strip p { font-size: 15px; }
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(125, 217, 236, .22), transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(39, 169, 201, .18), transparent 50%);
}
.cta-strip-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.cta-strip p { color: rgba(255,255,255,.78); margin: 0; max-width: 540px; }
.cta-strip-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-cell {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--c-muted);
  border-left: 4px solid var(--c-accent);
}
.about-cell h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--c-primary);
}
.about-cell p { color: var(--c-text-2); margin: 0; }
.about-lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
  color: var(--c-text-2);
}

/* ===== Section background icon animations (shared) ===== */
.has-bg-icons { position: relative; overflow: hidden; }
.has-bg-icons > .container { position: relative; z-index: 1; }
.bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-icon {
  position: absolute;
  display: block;
  color: var(--c-accent);
  opacity: .07;
  filter: blur(.4px);
  will-change: transform;
}
.bg-icon svg { width: 100%; height: 100%; display: block; }
@keyframes sectionBgFloat {
  0%   { transform: translate(0, 0) rotate(-4deg); }
  100% { transform: translate(40px, -30px) rotate(6deg); }
}
@keyframes sectionBgDrift {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  50%  { transform: translate(-30px, 20px) scale(1.08) rotate(-6deg); }
  100% { transform: translate(20px, -25px) scale(.96) rotate(8deg); }
}
@keyframes sectionBgSpin { to { transform: rotate(360deg); } }
@keyframes sectionBgPulse {
  0%, 100% { transform: scale(1) rotate(-3deg); opacity: .06; }
  50%      { transform: scale(1.15) rotate(4deg); opacity: .1; }
}

/* ===== Contact page ===== */
.contact-section .bg-icon--phone {
  top: 6%; left: -3%;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  animation: sectionBgFloat 14s ease-in-out infinite alternate;
}
.contact-section .bg-icon--whatsapp {
  top: 12%; right: -4%;
  width: clamp(200px, 26vw, 360px);
  height: clamp(200px, 26vw, 360px);
  color: #25d366;
  opacity: .08;
  animation: sectionBgDrift 18s ease-in-out infinite alternate;
}
.contact-section .bg-icon--mail {
  bottom: 18%; left: 8%;
  width: clamp(160px, 20vw, 280px);
  height: clamp(160px, 20vw, 280px);
  animation: sectionBgSpin 32s linear infinite;
}
.contact-section .bg-icon--pin {
  bottom: 6%; right: 6%;
  width: clamp(190px, 24vw, 340px);
  height: clamp(190px, 24vw, 340px);
  color: var(--c-primary);
  opacity: .06;
  animation: sectionBgPulse 10s ease-in-out infinite;
}
.contact-section .bg-icon--chat {
  top: 44%; left: 42%;
  width: clamp(170px, 22vw, 300px);
  height: clamp(170px, 22vw, 300px);
  opacity: .05;
  animation: sectionBgDrift 22s ease-in-out infinite alternate-reverse;
}

/* ===== Services page ===== */
.services-section .bg-icon--pt {
  top: 5%; left: -4%;
  width: clamp(200px, 26vw, 360px);
  height: clamp(200px, 26vw, 360px);
  animation: sectionBgFloat 16s ease-in-out infinite alternate;
}
.services-section .bg-icon--performance {
  top: 8%; right: -3%;
  width: clamp(190px, 24vw, 340px);
  height: clamp(190px, 24vw, 340px);
  color: var(--c-primary);
  opacity: .06;
  animation: sectionBgDrift 20s ease-in-out infinite alternate;
}
.services-section .bg-icon--nutrition {
  top: 42%; left: 38%;
  width: clamp(170px, 22vw, 300px);
  height: clamp(170px, 22vw, 300px);
  opacity: .05;
  animation: sectionBgSpin 36s linear infinite;
}
.services-section .bg-icon--rehab {
  bottom: 14%; left: 6%;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  animation: sectionBgPulse 12s ease-in-out infinite;
}
.services-section .bg-icon--kids {
  bottom: 6%; right: 4%;
  width: clamp(190px, 24vw, 340px);
  height: clamp(190px, 24vw, 340px);
  color: var(--c-primary);
  opacity: .07;
  animation: sectionBgDrift 24s ease-in-out infinite alternate-reverse;
}

/* ===== Events page ===== */
.events-section .bg-icon--calendar {
  top: 6%; left: -2%;
  width: clamp(190px, 24vw, 340px);
  height: clamp(190px, 24vw, 340px);
  animation: sectionBgFloat 15s ease-in-out infinite alternate;
}
.events-section .bg-icon--star {
  top: 10%; right: -4%;
  width: clamp(200px, 26vw, 360px);
  height: clamp(200px, 26vw, 360px);
  color: #f5b445;
  opacity: .08;
  animation: sectionBgSpin 40s linear infinite;
}
.events-section .bg-icon--target {
  top: 46%; left: 40%;
  width: clamp(170px, 22vw, 300px);
  height: clamp(170px, 22vw, 300px);
  color: var(--c-primary);
  opacity: .05;
  animation: sectionBgPulse 11s ease-in-out infinite;
}
.events-section .bg-icon--briefcase {
  bottom: 16%; left: 5%;
  width: clamp(170px, 22vw, 300px);
  height: clamp(170px, 22vw, 300px);
  animation: sectionBgDrift 19s ease-in-out infinite alternate;
}
.events-section .bg-icon--check {
  bottom: 5%; right: 6%;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  opacity: .06;
  animation: sectionBgDrift 23s ease-in-out infinite alternate-reverse;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-row {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--c-muted);
  border-radius: var(--radius-md);
  align-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.info-row:hover { background: #eef1f8; transform: translateX(4px); }
.info-row .info-icon {
  width: 48px; height: 48px;
  background: #fff;
  color: var(--c-accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-row .info-icon svg { width: 22px; height: 22px; }
.info-row strong { display: block; color: var(--c-primary); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.info-row a, .info-row span { color: var(--c-text); font-weight: 500; }
.info-row a:hover { color: var(--c-accent); }
.info-row .info-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}
.info-row .info-directions:hover { background: #5e9985; color: #fff; transform: translateX(2px); }

.contact-form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .03em;
  color: var(--c-primary);
  margin: 0 0 20px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--c-muted-2);
  border-radius: var(--radius-md);
  background: var(--c-bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: inherit;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(115, 171, 150, .12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.honeypot { position: absolute; left: -10000px; top: -10000px; visibility: hidden; }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.form-status { font-size: 14px; font-weight: 500; }
.form-status.is-success { color: #058257; }
.form-status.is-error { color: #c61d1d; }
.contact-map {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.contact-map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ===== Footer ===== */
.site-footer {
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(94,196,255,.18) 0%, rgba(94,196,255,0) 55%),
    linear-gradient(180deg, #0b3658 0%, #04162a 60%, #02101f 100%);
  color: rgba(255,255,255,.78);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ===== Footer underwater effect ===== */
.footer-underwater {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Caustic shimmer — soft moving light pattern on the "water" */
.underwater-caustics {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(60% 40% at 20% 30%, rgba(180,230,255,.10), transparent 70%),
    radial-gradient(50% 35% at 70% 60%, rgba(120,200,240,.08), transparent 70%),
    radial-gradient(45% 30% at 40% 80%, rgba(150,220,255,.07), transparent 70%),
    radial-gradient(55% 35% at 85% 20%, rgba(110,190,230,.09), transparent 70%);
  filter: blur(14px);
  mix-blend-mode: screen;
  opacity: .85;
  animation: causticDrift 18s ease-in-out infinite alternate;
}
@keyframes causticDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 1.5%, 0) scale(1.05); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.02); }
}

/* God rays — light shafts streaming down from the surface */
.underwater-rays {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 120%;
  overflow: hidden;
  filter: blur(2px);
}
.underwater-rays .ray {
  position: absolute;
  top: -10%;
  width: 140px;
  height: 130%;
  background: linear-gradient(180deg,
    rgba(170,225,255,.18) 0%,
    rgba(170,225,255,.08) 40%,
    rgba(170,225,255,0) 100%);
  transform-origin: top center;
  mix-blend-mode: screen;
  opacity: .7;
  animation: raySway 9s ease-in-out infinite alternate;
}
.underwater-rays .ray--1 { left: 8%;  transform: rotate(-6deg); width: 120px; animation-duration: 11s; }
.underwater-rays .ray--2 { left: 32%; transform: rotate(4deg);  width: 180px; animation-duration: 13s; opacity: .55; }
.underwater-rays .ray--3 { left: 58%; transform: rotate(-3deg); width: 150px; animation-duration: 10s; }
.underwater-rays .ray--4 { left: 82%; transform: rotate(6deg);  width: 130px; animation-duration: 14s; opacity: .5; }
@keyframes raySway {
  0%   { transform: rotate(var(--r, -4deg)) translateX(0); opacity: .35; }
  50%  { opacity: .8; }
  100% { transform: rotate(calc(var(--r, -4deg) * -1)) translateX(20px); opacity: .45; }
}

/* Rising bubbles */
.underwater-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.underwater-bubbles .bubble {
  position: absolute;
  left: var(--x, 50%);
  bottom: -40px;
  width: var(--size, 8px);
  height: var(--size, 8px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.85) 0%, rgba(255,255,255,.25) 40%, rgba(255,255,255,0) 70%),
    radial-gradient(circle at 50% 50%, rgba(180,230,255,.18), rgba(180,230,255,0) 70%);
  box-shadow: inset 0 0 4px rgba(255,255,255,.4);
  opacity: 0;
  animation: bubbleRise var(--dur, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes bubbleRise {
  0%   { transform: translate3d(0, 0, 0) scale(.6);  opacity: 0; }
  10%  { opacity: .9; }
  60%  { transform: translate3d(calc(var(--drift, 10px) * .6), -60vh, 0) scale(1); opacity: .8; }
  100% { transform: translate3d(var(--drift, 10px), -110%, 0) scale(1.1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .underwater-caustics,
  .underwater-rays .ray,
  .underwater-bubbles .bubble {
    animation: none;
  }
  .underwater-bubbles .bubble { opacity: .35; bottom: auto; top: 30%; }
}
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-grid h4,
.footer-grid .footer-heading {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .04em;
  color: #fff;
  margin: 0 0 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { color: rgba(255,255,255,.7); }
.footer-grid a:hover { color: var(--c-accent); }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.footer-links a svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent);
  opacity: .85;
  flex-shrink: 0;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.footer-links a:hover svg {
  transform: translateX(3px);
  opacity: 1;
}
.footer-links a span { transition: transform var(--t-fast); }
.footer-links a:hover span { transform: translateX(2px); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand picture { display: inline-flex; }
@keyframes logo-shine {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,255,255,0.2)) brightness(1); }
  50% { filter: drop-shadow(0 0 18px rgba(255,255,255,0.55)) brightness(1.12); }
}
.footer-brand img {
  height: 85px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  animation: logo-shine 3s ease-in-out infinite;
}
.footer-brand strong { font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: .04em; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--c-accent); }

.social-row { display: flex; gap: 10px; }
.social-row svg { width: 18px; height: 18px; }

/* Instagram brand-gradient button */
.ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 14px rgba(220, 39, 67, .35);
  transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
}
.ig-btn:hover { transform: translateY(-1px); color: #fff; filter: brightness(1.08); box-shadow: 0 6px 18px rgba(220, 39, 67, .45); }
.ig-btn svg { color: #fff; }
.ig-btn--lg {
  width: auto;
  height: auto;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
}

.footer-cert-logos-inner {
  margin-top: 20px;
}
.cert-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.cert-logos img {
  height: 64px;
  width: auto;
  opacity: 1;
  filter: none;
  background: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.cert-logos img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.footer-tagline-below-logos {
  margin: 14px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  text-align: left;
  max-width: 420px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  gap: 12px;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: #fff;
  border-radius: 999px;
  color: var(--c-primary);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .02em;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.footer-credit strong { color: var(--c-accent-text); font-weight: 700; }
.footer-credit:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,.18); color: var(--c-primary); }

/* ===== Branches sidebar layout ===== */
.branches-page--list { padding-top: calc(var(--page-top) + 64px); }
.branches-page--detail { padding-top: calc(var(--page-top) + 32px); }
.page-header + .branches-page--list { padding-top: 64px; }

.branches-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.branches-sidebar {
  position: sticky;
  top: calc(var(--page-top) + 16px);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.branches-sidebar h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .04em;
  margin: 4px 8px 12px;
  color: var(--c-primary);
}
.branches-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.branches-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--c-text);
  font-weight: 500;
  font-size: 14px;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.branches-sidebar a:hover {
  background: var(--c-muted);
  color: var(--c-primary);
}
.branches-sidebar a.is-active {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(115,171,150,.25);
}
.branches-sidebar a .icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(115,171,150,.1);
  color: var(--c-accent);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.branches-sidebar a.is-active .icon {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.branches-sidebar a .icon svg { width: 22px; height: 22px; }

.branches-content { min-width: 0; }
.branch-overview {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.branch-overview h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .03em;
  color: var(--c-primary);
  margin: 0 0 14px;
}
.branch-overview p {
  color: var(--c-text-2);
  margin: 0 0 12px;
}
.branch-overview p:last-child { margin-bottom: 0; }

.branch-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.branch-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.branch-card-img { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(115,171,150,.3);
}
.branch-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-muted);
}
.branch-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.branch-card:hover .branch-card-img img { transform: scale(1.06); }
.branch-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.branch-card-icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--c-accent);
  color: #fff;
  margin-top: -56px;
  margin-bottom: 8px;
  margin-left: 2px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.branch-card-icon svg { width: 30px; height: 30px; }
.branch-card-icon--logo {
  width: 80px;
  height: 56px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 14px;
}
.branch-card-icon--logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.branch-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--c-primary);
  margin: 0;
}
.branch-card p {
  color: var(--c-text-2);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.branch-card-cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: gap var(--t-fast);
}
.branch-card-cta svg { width: 16px; height: 16px; }
.branch-card:hover .branch-card-cta { gap: 10px; }

/* ===== Branch detail page ===== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-2);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--c-text-2); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb .is-current { color: var(--c-primary); font-weight: 600; }
.breadcrumb span[aria-hidden="true"] { color: var(--c-text-2); opacity: .5; }

.branch-detail .branch-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}
.branch-detail .branch-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.branch-detail .branch-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11,54,88,.7) 95%);
  pointer-events: none;
}
.branch-hero-text {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
}
.branch-hero-eyebrow {
  display: inline-block;
  max-width: 100%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(115,171,150,.85);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}
.branch-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: .02em;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.branch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 24px;
}
.branch-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--c-text-2);
  background: var(--c-muted);
  padding: 10px 14px;
  border-radius: 999px;
}
.branch-meta-item svg { color: var(--c-accent); flex-shrink: 0; }
.branch-meta-item strong { color: var(--c-primary); margin-right: 2px; }

.branch-body { font-size: 16px; line-height: 1.7; color: var(--c-text); }
.branch-body p { margin: 0 0 14px; color: var(--c-text-2); }
.branch-body .branch-intro {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 18px;
}

.branch-features {
  background: var(--c-muted);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}
.branch-features h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--c-primary);
  margin: 0 0 14px;
}
.branch-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.branch-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  color: var(--c-text);
}
.branch-features li svg {
  color: var(--c-accent);
  flex-shrink: 0;
}

.branch-seo {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0;
}
.branch-seo-block h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: .02em;
  color: var(--c-primary);
  margin: 0 0 10px;
  line-height: 1.2;
}
.branch-seo-block p {
  margin: 0;
  color: var(--c-text-2);
  line-height: 1.75;
  font-size: 16px;
}

.branch-faq {
  margin: 36px 0;
}
.branch-faq h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: .02em;
  color: var(--c-primary);
  margin: 0 0 18px;
}
.branch-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.branch-faq-item {
  background: var(--c-muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.branch-faq-item[open] {
  background: #fff;
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
}
.branch-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  overflow-wrap: break-word;
}
.branch-faq-item summary::after { flex-shrink: 0; }
.branch-faq-item summary::-webkit-details-marker { display: none; }
.branch-faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--c-accent);
  transition: transform var(--t-fast);
}
.branch-faq-item[open] summary::after {
  content: '−';
}
.branch-faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--c-text-2);
  line-height: 1.7;
}

.branch-cta {
  background: linear-gradient(135deg, #0b3658 0%, #082541 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}
.branch-cta h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .03em;
  margin: 0 0 8px;
  color: #fff;
}
.branch-cta p {
  color: rgba(255,255,255,.78);
  margin: 0 0 18px;
}
.branch-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.branch-related h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .03em;
  margin: 32px 0 16px;
  color: var(--c-primary);
}
.branch-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.branch-card--small .branch-card-img { aspect-ratio: 16/10; }
.branch-card--small .branch-card-body { padding: 14px 16px; }
.branch-card--small h4 { font-size: 18px; }

@media (max-width: 1023px) {
  .branches-layout { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .branches-sidebar {
    position: static;
    padding: 10px;
    border-radius: var(--radius-md);
    min-width: 0;
    max-width: 100%;
  }
  .branches-sidebar h3 { display: none; }
  .branches-sidebar ul {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px;
    gap: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-left: 4px;
    min-width: 0;
  }
  .branches-sidebar ul::-webkit-scrollbar { display: none; }
  .branches-sidebar li { flex: 0 0 auto; scroll-snap-align: start; }
  .branches-sidebar a {
    flex-direction: column;
    text-align: center;
    padding: 10px 14px;
    min-width: 92px;
    gap: 6px;
  }
  .branches-sidebar a .icon { width: 32px; height: 32px; }
  .branches-sidebar a .text { font-size: 12px; line-height: 1.2; }
  .branch-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .branch-features ul { grid-template-columns: 1fr; }
  .branch-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .branches-page.section,
  .section.branches-page { padding-top: calc(var(--page-top) + 32px); padding-bottom: 56px; }
  .branches-page .section-head { margin-bottom: 32px; }
  .branch-overview { padding: 20px; margin-bottom: 20px; border-radius: var(--radius-md); }
  .branch-overview h3 { font-size: 22px; margin-bottom: 10px; }
  .branch-overview p { font-size: 15px; }

  .branch-detail .branch-hero { aspect-ratio: 4/3; margin-bottom: 20px; }
  .branch-hero-text { left: 18px; right: 18px; bottom: 18px; }
  .branch-hero-eyebrow { font-size: 11px; padding: 5px 10px; margin-bottom: 10px; letter-spacing: .14em; }
  .branch-hero h1 { font-size: clamp(26px, 7vw, 34px); }

  .branch-meta { gap: 10px; margin-bottom: 18px; }
  .branch-meta-item { padding: 8px 12px; font-size: 13px; }

  .branch-body { font-size: 15px; line-height: 1.65; }
  .branch-body .branch-intro { font-size: 16px; }

  .branch-features { padding: 20px 18px; margin: 22px 0; }
  .branch-features h3 { font-size: 20px; margin-bottom: 12px; }

  .branch-seo { gap: 22px; margin: 28px 0; }
  .branch-seo-block p { font-size: 15px; }

  .branch-faq { margin: 28px 0; }
  .branch-faq-item summary { padding: 14px 18px; font-size: 15px; gap: 12px; }
  .branch-faq-item p { padding: 0 18px 16px; font-size: 15px; }

  .branch-cta { padding: 24px 20px; margin: 24px 0; border-radius: var(--radius-md); }
  .branch-cta h3 { font-size: 22px; }
  .branch-cta-buttons { flex-direction: column; align-items: stretch; gap: 8px; }
  .branch-cta-buttons .btn { justify-content: center; }

  .branch-related h3 { font-size: 20px; margin: 24px 0 14px; }
  .branch-related-grid { gap: 12px; }
  .branch-card--small h4 { font-size: 16px; }
  .branch-card--small .branch-card-body { padding: 12px 14px; }

  .branches-page .breadcrumb { font-size: 12px; margin-bottom: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .branches-page .section-head h2 { font-size: clamp(24px, 7vw, 30px); }
  .branch-overview { padding: 16px; }
  .branch-overview h3 { font-size: 20px; }

  .branch-card-body { padding: 16px 16px 18px; }
  .branch-card h4 { font-size: 19px; }
  .branch-card p { font-size: 13px; }
  .branch-card-icon { width: 48px; height: 48px; margin-top: -48px; }
  .branch-card-icon svg { width: 26px; height: 26px; }

  .branch-detail .branch-hero { aspect-ratio: 3/4; }
  .branch-hero-text { left: 14px; right: 14px; bottom: 14px; }
  .branch-hero h1 { font-size: clamp(24px, 8vw, 30px); line-height: 1.1; }
  .branch-hero-eyebrow { font-size: 10px; }

  .branch-meta { gap: 8px; }
  .branch-meta-item {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .branch-features { padding: 18px 16px; }
  .branch-features li { font-size: 14px; }

  .branch-cta { padding: 20px 16px; }
  .branch-cta h3 { font-size: 20px; line-height: 1.2; }
  .branch-cta p { font-size: 14px; }

  .branch-faq h2 { font-size: 22px; }
  .branch-faq-item summary { padding: 12px 14px; font-size: 14px; }
  .branch-faq-item summary::after { font-size: 20px; }
  .branch-faq-item p { padding: 0 14px 14px; font-size: 14px; }

  .branch-related-grid { grid-template-columns: 1fr; }
  .branch-card--small .branch-card-img { aspect-ratio: 16/9; }

  .branches-sidebar a { min-width: 84px; padding: 8px 10px; }
  .branches-sidebar a .icon { width: 28px; height: 28px; }
  .branches-sidebar a .icon svg { width: 18px; height: 18px; }
  .branches-sidebar a .text { font-size: 11px; }

  .branches-page .cta-strip .cta-strip-buttons { flex-direction: column; align-items: stretch; }
  .branches-page .cta-strip .cta-strip-buttons .btn { justify-content: center; }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--c-muted-2);
  padding: 0;
  border: 0;
  display: block;
  isolation: isolate;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,54,88,.7) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}
.gallery-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(8px) scale(.9);
  opacity: 0;
  transition: transform var(--t-base), opacity var(--t-base);
  z-index: 2;
}
.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 12, 24, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--t-base);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lightbox-figure {
  margin: 0;
  position: relative;
  max-width: min(1400px, 96vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: scale(.96);
  opacity: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
}
.lightbox.is-open .lightbox-figure img { transform: scale(1); opacity: 1; }
.lightbox-figure figcaption {
  margin-top: 14px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  text-align: center;
  letter-spacing: .02em;
}

.lightbox button {
  position: fixed;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
  border: 1px solid rgba(255,255,255,.12);
}
.lightbox button:hover { background: var(--c-accent); transform: scale(1.06); border-color: transparent; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

.lightbox-counter {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 500;
  background: rgba(255,255,255,.06);
  padding: 6px 14px;
  border-radius: 999px;
}

@media (max-width: 1023px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .lightbox { padding: 12px; }
  .lightbox button { width: 42px; height: 42px; }
  .lightbox-prev, .lightbox-next {
    bottom: 20px; top: auto;
    transform: none;
  }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .lightbox-prev:hover, .lightbox-next:hover { transform: scale(1.06); }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-counter { top: 18px; font-size: 12px; }
}

/* ===== Floating WA / Phone ===== */
.float-cta {
  position: fixed;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.float-cta:not(.float-cta--left) {
  right: 22px;
}
.float-cta--left {
  left: 22px;
}
.float-cta a {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform var(--t-fast);
}
.float-cta a svg { width: 26px; height: 26px; }
.float-cta a:hover { transform: scale(1.08); }
.float-cta .float-wa { background: #25D366; }
.float-cta .float-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .4;
  animation: pulse 2s ease-out infinite;
}
.float-cta .float-wa { position: relative; }
.float-cta .float-tel { background: var(--c-accent); }
.float-cta .float-ig {
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}
@keyframes pulse {
  0% { transform: scale(.92); opacity: .55; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 100px);
  background: var(--c-primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  transition: transform var(--t-base), opacity var(--t-base);
  max-width: 90vw;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast.is-success { background: #058257; }
.toast.is-error   { background: #c61d1d; }

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  :root { --header-h: 72px; --header-h-scrolled: 60px; --topbar-h: 36px; --header-gap: 10px; }
  .site-header { max-width: calc(100vw - 16px); border-radius: 999px; }
  .site-header.is-scrolled { top: 10px; border-radius: 999px; }
  .main-nav { display: none; }
  .header-tools { justify-self: end; }
  .header-tools .icon-btn { display: none; }
  .lang-switch { display: none; }
  .hamburger { display: inline-flex; }
  .brand img { height: 53px; }
  .is-scrolled .brand img { height: 45px; }
  .topbar { font-size: 12px; }
  .topbar-date { gap: 6px; }
  .hero-slider { min-height: clamp(560px, 80vh, 720px); }
  .hero-slide.theme-light::before { background-position: 130% 8%; background-size: 480px; }
  .hero-nav { width: 40px; height: 40px; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cta-strip-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-strip-buttons { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --topbar-h: 34px; }
  .section { padding: 72px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .underwater-rays .ray { width: 90px !important; }
  .float-cta a { width: 52px; height: 52px; }
  .brand img, .is-scrolled .brand img { height: 42px; }
  .mobile-menu nav a { font-size: 28px; padding: 12px 0; }
  .topbar-date { font-size: 11px; }
  .topbar-date .date-prefix { display: none; }
  .topbar-social a { width: 24px; height: 24px; }
  .hero-slider { min-height: 560px; }
  .hero-nav { display: none; }
  .hero-dots { bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ===== Footer legal links ===== */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.footer-legal a {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--c-accent); }

/* ===== Legal / policy pages ===== */
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-section .section-head h2 { color: var(--c-primary); }
.legal-meta {
  font-size: 13px;
  color: var(--c-text-2);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 8px 0 0;
}
.legal-lead {
  font-size: 17px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0 0 32px;
  padding: 20px 24px;
  background: var(--c-muted);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 12px 12px 0;
}
.legal-body { display: flex; flex-direction: column; gap: 24px; }
.legal-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--c-primary);
  margin: 0 0 8px;
}
.legal-block p {
  margin: 0;
  color: var(--c-text-2);
  line-height: 1.75;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(11, 54, 88, .98), rgba(5, 26, 46, .98));
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(115, 171, 150, .35);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(11, 54, 88, .45), 0 0 0 1px rgba(115, 171, 150, .15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 22px 26px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform var(--t-base), opacity var(--t-base);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner-text {
  flex: 1 1 360px;
  min-width: 0;
}
.cookie-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 4px;
}
.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.cookie-banner-text a {
  color: var(--c-accent-2);
  text-decoration: underline;
}
.cookie-banner-text a:hover { color: #fff; }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
}
.cookie-banner-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.cookie-banner-actions .btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 10px; }
  .cookie-banner-text { flex: 1 1 auto; }
  .cookie-banner-text strong { font-size: 14px; margin-bottom: 2px; }
  .cookie-banner-text p { font-size: 12.5px; line-height: 1.45; }
  .cookie-banner-actions { gap: 8px; flex-wrap: nowrap; }
  .cookie-banner-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
    font-size: 13px;
  }
  .footer-legal { gap: 14px; }
}

/* ============================================
   Mobile homepage popup
   ============================================ */
.mobile-popup { display: none; }

@media (max-width: 720px) {
  .mobile-popup {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
  }
  .mobile-popup[hidden] { display: none; }
  .mobile-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 37, 65, .62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .mobile-popup-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 24px));
    width: calc(100% - 28px);
    max-width: 420px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(8, 37, 65, .35);
    padding: 22px 20px 18px;
    transition: transform var(--t-base);
  }
  .mobile-popup.is-visible .mobile-popup-dialog {
    transform: translate(-50%, -50%);
  }
  .mobile-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(11, 54, 88, .08);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast);
  }
  .mobile-popup-close:hover,
  .mobile-popup-close:focus-visible {
    background: var(--c-primary);
    color: #fff;
    outline: none;
  }
  .mobile-popup-head {
    text-align: center;
    padding: 4px 8px 14px;
  }
  .mobile-popup-head picture,
  .mobile-popup-logo {
    display: inline-block;
    max-width: 150px;
    margin-bottom: 10px;
  }
  .mobile-popup-head picture img {
    width: 100%;
    height: auto;
    display: block;
  }
  .mobile-popup-head h3 {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.3;
    color: var(--c-primary);
    letter-spacing: .01em;
  }
  .mobile-popup-head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--c-text-2);
  }
  .mobile-popup-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
  }
  .mobile-popup-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 90%;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--c-muted);
    color: var(--c-primary);
    text-decoration: none;
    transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  }
  .mobile-popup-link:active {
    transform: scale(.98);
  }
  .mobile-popup-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--c-primary);
    flex-shrink: 0;
  }
  .mobile-popup-link-icon svg { width: 20px; height: 20px; }
  .mobile-popup-link-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.2;
    text-align: left;
    color: var(--c-text);
  }
  .mp-telegram  .mobile-popup-link-icon { background: #229ED9; }
  .mp-location  .mobile-popup-link-icon { background: #E94B3C; }
  .mp-website   .mobile-popup-link-icon { background: var(--c-primary); }
  .mp-instagram .mobile-popup-link-icon {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  }
  .mp-whatsapp  .mobile-popup-link-icon { background: #25D366; }

  .mobile-popup-timer {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--c-text-2);
  }
  .mobile-popup-timer-count {
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--c-primary);
    color: #fff;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
  }
}

@media (max-width: 380px) {
  .mobile-popup-link { padding: 10px 14px; gap: 12px; }
  .mobile-popup-link-label { font-size: 13px; }
  .mobile-popup-link-icon { width: 36px; height: 36px; }
  .mobile-popup-link-icon svg { width: 18px; height: 18px; }
}

.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-2);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--c-primary);
  flex-shrink: 0;
}

/* ===== SEO Content Sections ===== */
.seo-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--c-text);
  font-size: 17px;
}
.seo-text p {
  margin-bottom: 1.2em;
}
@media (max-width: 640px) {
  .seo-text {
    font-size: 16px;
  }
}
