/* ==========================================================================
   SuperFoot - static rebuild
   ========================================================================== */

:root {
  --brand:        #1b88b7;
  --brand-dark:   #146b92;
  --brand-light:  #98cfe4;
  --brand-tint:   #eef7fb;
  --accent:       #00a5ec;
  --ink:          #23282d;
  --ink-soft:     #5a6672;
  --line:         #e4e9ed;
  --bg:           #ffffff;
  --bg-soft:      #f7f9fa;
  --radius:       10px;
  --radius-sm:    6px;
  --shadow:       0 1px 2px rgba(16,42,58,.06), 0 8px 24px rgba(16,42,58,.07);
  --shadow-lg:    0 2px 6px rgba(16,42,58,.08), 0 18px 46px rgba(16,42,58,.12);
  --container:    1170px;
  --header-h:     90px;
  --ease:         cubic-bezier(.4,.16,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: Ubuntu, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.28;
  margin: 0 0 .6em;
  color: var(--ink);
}
h1 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.25rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); }
h3 { font-size: clamp(1.2rem, 1rem + .8vw, 1.5rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .35em; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: #fff; padding: .7rem 1.2rem;
}
.skip:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container-fluid { width: 100%; padding-inline: 20px; }
.container-narrow { max-width: 820px; }

.ta-left    { text-align: left; }
.ta-center  { text-align: center; }
.ta-right   { text-align: right; }
.ta-justify { text-align: justify; }

/* --------------------------------------------------------------- topbar -- */

.topbar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-soft);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 40px; flex-wrap: wrap;
}
.topbar-info {
  display: flex; align-items: center; gap: 1.4rem;
  list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.topbar-info li { margin: 0; }
.topbar-info a, .topbar-info .hours {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--ink-soft);
}
.topbar-info a:hover { color: var(--brand); text-decoration: none; }
.topbar-info .ico { color: var(--brand); flex: none; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }

.lang-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 24px; padding: 0 .45rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink-soft);
  font-size: .72rem; font-weight: 500; letter-spacing: .06em;
}
.lang-link:hover {
  border-color: var(--brand); color: var(--brand); text-decoration: none;
}

.social { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.social.ta-center { justify-content: center; }
.social.ta-right  { justify-content: flex-end; }
.social-link { color: var(--brand); display: inline-flex; }
.social-link:hover { color: var(--brand-dark); }
.social-sm .social-link .ico { width: 18px; height: 18px; }

/* --------------------------------------------------------------- header -- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.logo { flex: none; display: block; }
.logo img { width: 196px; height: auto; }

.burger {
  display: none; width: 44px; height: 44px; border: 0; background: none;
  padding: 10px; cursor: pointer;
}
.burger span {
  display: block; height: 2px; background: var(--ink); border-radius: 2px;
  margin: 5px 0; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; margin: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem .85rem; border-radius: var(--radius-sm);
  color: var(--ink); font-size: .95rem; white-space: nowrap;
}
.nav-link:hover { color: var(--brand); background: var(--brand-tint); text-decoration: none; }
.nav-link.is-current { color: var(--brand); font-weight: 400; }
.nav-shop .ico { color: var(--brand); }
.sub-toggle { display: none; }

.caret {
  width: 0; height: 0; margin-left: .1rem;
  border: 4px solid transparent; border-top-color: currentColor;
  transform: translateY(2px);
}

.subnav {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  list-style: none; margin: 0; padding: .4rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 20;
}
.nav-item:hover > .subnav,
.nav-item:focus-within > .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav .nav-link {
  display: flex; width: 100%; padding: .55rem .7rem;
  font-size: .9rem; white-space: normal;
}
.subnav .subnav { top: -.4rem; left: 100%; }

/* ---------------------------------------------------------- breadcrumbs -- */

.crumbs {
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  font-size: .84rem; color: var(--ink-soft);
}
.crumbs .container { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; min-height: 44px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.crumbs li { margin: 0; display: flex; align-items: center; gap: .4rem; }
.crumbs li + li::before { content: "/"; color: #b9c4cc; }
.crumbs-label { color: #9aa7b1; }

/* -------------------------------------------------------------- layout --- */

.sec { padding: 48px 0; position: relative; }
.sec-bg { background-repeat: no-repeat; background-size: cover; }
.sec-bg::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,.82);
}
.sec-bg > .container, .sec-bg > .container-fluid { position: relative; z-index: 1; }

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: start;
}
.col { grid-column: span 12; min-width: 0; }
@media (min-width: 768px) {
  .col-1 { grid-column: span 1; } .col-2 { grid-column: span 2; }
  .col-3 { grid-column: span 3; } .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; }
  .col-9 { grid-column: span 9; } .col-10 { grid-column: span 10; }
  .col-11 { grid-column: span 11; } .col-12 { grid-column: span 12; }
}

.section-title {
  color: var(--brand);
  text-align: center;
  margin-bottom: .35em;
}
.section-sub { text-align: center; color: var(--ink-soft); margin-bottom: 2rem; }
.block-title { color: var(--brand); }
.block-title::after {
  content: ""; display: block; width: 64px; height: 3px;
  background: var(--brand); border-radius: 2px; margin-top: .5rem;
}
.ta-center.block-title::after { margin-inline: auto; }

.space { display: block; }
.divider { border: 0; border-top: 1px solid var(--line); }

/* ---------------------------------------------------------------- text --- */

.rte img { margin-inline: auto; border-radius: var(--radius-sm); }
.rte table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; }
.rte th, .rte td { border: 1px solid var(--line); padding: .55rem .7rem; text-align: left; }
.rte th { background: var(--bg-soft); font-weight: 500; }
.rte a { text-decoration: underline; text-underline-offset: 2px; }
.rte iframe { max-width: 100%; }

.table-wrap { overflow-x: auto; }

.dropcap > p:first-of-type::first-letter {
  float: left; font-size: 3.2rem; line-height: .9;
  padding: .1em .12em 0 0; color: var(--brand); font-weight: 400;
}

.quote {
  margin: 0; padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--brand);
  background: var(--brand-tint); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.quote footer { font-style: normal; color: var(--ink-soft); font-size: .9rem; }
.quote p:last-of-type { margin-bottom: .4rem; }

.figure { margin: 0 0 1rem; }
.figure img { border-radius: var(--radius-sm); display: inline-block; }
.ta-center.figure img { margin-inline: auto; }

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.4rem; border: 2px solid var(--brand); border-radius: 999px;
  background: var(--brand); color: #fff; font-size: .95rem; font-weight: 400;
  cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease),
                               border-color .2s var(--ease), transform .12s var(--ease);
}
.btn:hover {
  background: var(--brand-dark); border-color: var(--brand-dark);
  color: #fff; text-decoration: none; transform: translateY(-1px);
}
.btn-outline { background: transparent; color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-lg { padding: .85rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: var(--bg-soft);
}
.hero-track {
  display: flex; list-style: none; margin: 0; padding: 0;
  transition: transform .6s var(--ease);
}
.hero-slide { flex: 0 0 100%; margin: 0; }
.hero-slide img { width: 100%; aspect-ratio: 12 / 5; object-fit: cover; }

.hero-nav, .car-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--ink);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow); opacity: 0; transition: opacity .2s var(--ease);
}
.hero:hover .hero-nav, .carousel:hover .car-nav,
.hero-nav:focus-visible, .car-nav:focus-visible { opacity: 1; }
.hero-prev, .car-prev { left: 14px; }
.hero-next, .car-next { right: 14px; }

.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 14px;
  display: flex; justify-content: center; gap: .45rem;
}
.hero-dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.65); cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.hero-dot.is-active { background: var(--brand); width: 22px; border-radius: 999px; }

.carousel { position: relative; overflow: hidden; border-radius: var(--radius); }
.car-track { display: flex; list-style: none; margin: 0; padding: 0; transition: transform .5s var(--ease); }
.car-slide { flex: 0 0 100%; margin: 0; }
.car-slide img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* -------------------------------------------------------------- gallery -- */

.gallery {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.gal-item {
  display: block; overflow: hidden; border-radius: var(--radius-sm);
  background: var(--bg-soft); position: relative;
}
.gal-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .35s var(--ease);
}
.gal-item:hover img { transform: scale(1.05); }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12,20,26,.92);
  display: grid; place-items: center; padding: 5vmin;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 100%; max-height: 100%; text-align: center; }
.lightbox img { max-height: 80vh; width: auto; margin-inline: auto; border-radius: var(--radius-sm); }
.lightbox figcaption { color: #e8eef2; margin-top: .9rem; font-size: .9rem; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; border: 0; background: rgba(255,255,255,.12); color: #fff;
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.6rem; cursor: pointer;
}
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.24); }

/* ----------------------------------------------------------------- tabs -- */

.tabs { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tab-list { display: flex; flex-wrap: wrap; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.tab-btn {
  flex: 1 1 auto; padding: .8rem 1rem; border: 0; background: none;
  font: inherit; font-size: .9rem; color: var(--ink-soft); cursor: pointer;
  border-bottom: 3px solid transparent;
}
.tab-btn:hover { color: var(--brand); }
.tab-btn.is-active { color: var(--brand); background: #fff; border-bottom-color: var(--brand); }
.tab-pane { padding: 1.3rem; }

.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-item summary {
  padding: .9rem 1.1rem; cursor: pointer; font-weight: 400; color: var(--brand);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after { content: "+"; font-size: 1.3rem; color: var(--ink-soft); }
.acc-item[open] summary::after { content: "\2013"; }
.acc-body { padding: 0 1.1rem 1.1rem; }

/* ------------------------------------------------------------- counters -- */

.counter { margin-bottom: 1rem; }
.counter-num { font-weight: 500; line-height: 1.1; }
.counter-label { color: var(--ink-soft); }

.progress { margin-bottom: 1.1rem; }
.progress-label { font-size: .9rem; margin-bottom: .3rem; color: var(--ink-soft); }
.progress-track { background: #edf1f3; border-radius: 999px; overflow: hidden; }
.progress-fill { width: 0; height: 100%; border-radius: 999px; transition: width 1.4s var(--ease); }

.pie { text-align: center; margin-bottom: 1.4rem; }
.pie-circle {
  position: relative; display: inline-grid; place-items: center;
  max-width: 100%;
}
.pie-svg { display: block; grid-area: 1 / 1; max-width: 100%; height: auto; }
.pie-arc { transition: stroke-dashoffset 1.6s var(--ease); }
.pie-val {
  grid-area: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; line-height: 1; color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.pie-val::after { content: "%"; font-size: .75em; margin-left: .05em; }
.pie-title { font-size: 1.05rem; color: var(--ink); margin-top: .4rem; }
.pie-text { color: var(--ink-soft); font-size: .9rem; }

/* ---------------------------------------------------------------- cards -- */

.cta {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; text-align: center; height: 100%;
  box-shadow: var(--shadow); transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.cta:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cta-media img { border-radius: var(--radius-sm); margin-inline: auto; }
.cta-title { margin: .9rem 0 .8rem; color: var(--brand); font-size: 1.15rem; }

.image-content { display: grid; gap: 24px; align-items: center; }
@media (min-width: 768px) {
  .image-content { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .ic-right .ic-media { order: 2; }
}
.ic-media img { border-radius: var(--radius); margin-inline: auto; }

.cards {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-meta { font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; margin: 0; }
.card-title { font-size: 1.12rem; margin: 0; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--brand); text-decoration: none; }
.card-intro { color: var(--ink-soft); font-size: .94rem; margin: 0; }
.card-more { margin-top: auto; font-size: .9rem; font-weight: 400; }
.card-more::after { content: " \2192"; }

.article-body img { border-radius: var(--radius-sm); margin-block: 1rem; }

/* ------------------------------------------------------------------ map -- */

.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; border: 0; display: block; }

.latest-posts { display: grid; gap: 1rem; }
.lp-item { display: flex; gap: .9rem; align-items: flex-start; }
.lp-item img { width: 96px; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.lp-title { font-size: .98rem; margin: 0 0 .2rem; }
.lp-date { font-size: .78rem; color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------- footer -- */

.site-footer {
  margin-top: 20px; padding: 26px 0;
  background: var(--bg-soft); border-top: 1px solid var(--line);
  font-size: .84rem; color: var(--ink-soft);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.copyright { margin: 0; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a { color: var(--ink-soft); font-size: .78rem; letter-spacing: .02em; }
.footer-links a:hover { color: var(--brand); }

.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ----------------------------------------------------------- animations -- */

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }

/* --------------------------------------------------------------- mobile -- */

@media (max-width: 991px) {
  :root { --header-h: 72px; }
  .burger { display: block; }
  .mainnav {
    position: fixed; top: var(--header-h); right: 0; left: auto; bottom: 0;
    height: calc(100vh - var(--header-h));
    width: min(88vw, 360px);
    background: #fff; border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y: auto; padding: 1rem; z-index: 80; box-shadow: var(--shadow-lg);
  }
  .mainnav.is-open { transform: translateX(0); }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link { padding: .85rem .6rem; width: 100%; white-space: normal; }
  .caret { display: none; }
  .has-sub { position: relative; }
  .sub-toggle {
    display: block; position: absolute; top: 4px; right: 0;
    width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  }
  .sub-toggle::after {
    content: ""; display: block; width: 9px; height: 9px; margin: 0 auto;
    border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
    transform: rotate(45deg); transition: transform .2s var(--ease);
  }
  .sub-toggle[aria-expanded="true"]::after { transform: rotate(-135deg); }
  .subnav {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; padding: 0 0 .4rem .8rem; display: none;
    min-width: 0;
  }
  .subnav.is-open { display: block; }
  .nav-item:hover > .subnav { opacity: 1; visibility: visible; }
  .subnav .subnav { padding-left: .9rem; }
  .body-locked { overflow: hidden; }
  .sec { padding: 36px 0; }
  .grid { gap: 24px; }
  .topbar-info { gap: .9rem; font-size: .78rem; }
  .topbar-info .hours { display: none; }
}

@media (max-width: 560px) {
  .logo img { width: 150px; }
  .footer-inner { justify-content: center; text-align: center; }
  .topbar-inner { justify-content: center; }
  .hero-slide img { aspect-ratio: 4 / 3; }
}

@media print {
  .topbar, .site-header, .crumbs, .to-top, .site-footer { display: none; }
}
