:root {
  --beige: #fff7f2;
  --yellow: #caa829;
  --yellow-dark: #ab8c1f;
  --blue: #232d58;
  --blue-light: #334174;
  --white: #ffffff;
  --text: #1f1f1f;
  --muted: #646464;
  --line: #e9ddd5;
  --shadow: 0 16px 40px rgba(35, 45, 88, 0.1);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Calibri, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }
h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--blue);
  font-family: Calibri, Arial, sans-serif;
  line-height: 1.18;
}
h1 { font-size: clamp(2.35rem, 5vw, 4.6rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
h3 { font-size: 1.35rem; }
.hero h1 {
  max-width: 780px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 4.05rem);
  line-height: 1.12;
}
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.6rem 0; }
.bg-beige { background: var(--beige); }
.bg-blue { background: var(--blue); color: var(--white); }
.bg-blue h2, .bg-blue h3 { color: var(--white); }
.eyebrow {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--yellow-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bg-blue .eyebrow { color: #f1d971; }
.lead { max-width: 780px; color: var(--muted); font-size: 1.15rem; }
.bg-blue .lead { color: rgba(255, 255, 255, .83); }
.flow > * + * { margin-top: 1rem; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(35, 45, 88, .08);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .75rem; color: var(--blue); font-weight: 800; letter-spacing: -.02em; }
.brand-logo { width: clamp(150px, 16vw, 205px); height: auto; }
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a { padding: .65rem .72rem; border-radius: 999px; color: var(--blue); font-size: .9rem; font-weight: 700; }
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a.active { background: var(--beige); color: var(--blue); }
.nav-links .lang-link { margin-left: .35rem; background: var(--blue); color: var(--white); }
.menu-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  background: var(--beige);
  color: var(--blue);
  cursor: pointer;
  font-size: 1.4rem;
  padding: .45rem .75rem;
}

.hero { overflow: hidden; padding-block: 3.3rem 3.8rem; background: var(--beige); }
.hero .container { width: min(calc(100% - 4rem), 1320px); }
.hero-grid { display: grid; align-items: center; gap: 3rem; grid-template-columns: minmax(0, 1.28fr) minmax(500px, .92fr); }
.hero p { max-width: 680px; color: #4e4e4e; font-size: 1.12rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: .82rem 1.35rem;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--blue); }
.btn-yellow:hover { background: var(--yellow-dark); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-light); }
.btn-outline { border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.hero-visual { position: relative; }
.hero-visual::before {
  position: absolute;
  inset: -16px 20px 20px -16px;
  border-radius: 42px;
  background: var(--yellow);
  content: "";
}
.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  border-radius: 36px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center center;
}
.hero-image-de { object-position: 58% center !important; }
.hero-image-pl { object-position: 50% center !important; }
.hero-note {
  position: absolute;
  right: -18px;
  bottom: 22px;
  max-width: 210px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--blue);
  font-weight: 800;
  padding: 1rem 1.2rem;
}

.page-hero { padding: 4.5rem 0 3.2rem; background: var(--beige); }
.page-hero h1 { max-width: 950px; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-visual { margin-top: 2rem; }
.page-visual img {
  width: 100%;
  max-height: 390px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.page-visual-tall img { max-height: 480px; }
.content-narrow { max-width: 880px; }
.grid-2 { display: grid; gap: 1.4rem; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.card {
  height: 100%;
  border: 1px solid rgba(35, 45, 88, .08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(35, 45, 88, .06);
  padding: 1.55rem;
}
.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 16px;
  background: var(--beige);
  color: var(--yellow-dark);
  font-size: 1.25rem;
  font-weight: 900;
}
.card p:last-child { margin-bottom: 0; }
.image-card img { width: 100%; height: 250px; margin-bottom: 1.25rem; border-radius: 18px; object-fit: cover; }
.membership-card {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: minmax(220px, 360px) 1fr;
  border: 1px solid rgba(35, 45, 88, .08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.membership-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
}
.membership-card h2 { margin-bottom: .7rem; }
.feature-list { display: grid; gap: .8rem; padding: 0; list-style: none; grid-template-columns: repeat(2, 1fr); }
.feature-list li { position: relative; border-radius: 16px; background: var(--white); box-shadow: 0 8px 20px rgba(35,45,88,.06); padding: 1rem 1rem 1rem 2.8rem; }
.feature-list li::before { position: absolute; left: 1rem; color: var(--yellow-dark); content: "✓"; font-weight: 900; }

.cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta h2 { max-width: 760px; }
.cta p { max-width: 760px; margin-bottom: 0; }
.cost-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.cost-row { display: flex; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); padding: .95rem 1.2rem; }
.cost-row:last-child { border: 0; background: var(--blue); color: var(--white); font-weight: 800; }
.cost-row span:last-child { white-space: nowrap; font-weight: 800; }
.small-note { color: var(--muted); font-size: .88rem; }

.accordion { display: grid; gap: .8rem; }
.accordion-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.accordion-button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; border: 0; background: transparent; color: var(--blue); cursor: pointer; font: inherit; font-weight: 800; padding: 1.15rem 1.25rem; text-align: left; }
.accordion-button span:last-child { color: var(--yellow-dark); font-size: 1.35rem; }
.accordion-panel { display: none; padding: 0 1.25rem 1.15rem; }
.accordion-item.open .accordion-panel { display: block; }
.accordion-item.open .accordion-button span:last-child { transform: rotate(45deg); }

.contact-grid { display: grid; gap: 2rem; grid-template-columns: .9fr 1.1fr; }
.contact-box { border-radius: var(--radius); background: var(--blue); color: var(--white); padding: 2rem; }
.contact-box h2, .contact-box h3 { color: var(--white); }
.contact-box a { color: #f1d971; font-weight: 800; }

.site-footer { background: var(--blue); color: rgba(255,255,255,.83); padding: 3.5rem 0 1.2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.3fr 1fr 1fr; }
.site-footer h2, .site-footer h3 { color: var(--white); }
.footer-links { display: grid; gap: .42rem; }
.footer-links a:hover { color: #f1d971; }
.copyright { margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.16); padding-top: 1rem; font-size: .82rem; }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: .75rem;
  }
  .nav-links.open { display: grid; }
  .nav-links .lang-link { margin: .25rem 0 0; text-align: center; }
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .membership-card { grid-template-columns: 1fr; }
  .hero h1 { max-width: 760px; }
  .hero-visual { max-width: 680px; margin-inline: auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero .container { width: min(calc(100% - 2rem), 1320px); }
  .brand-logo { width: 145px; }
  .section { padding: 4rem 0; }
  .hero { padding-block: 2.8rem 3.2rem; }
  .hero-visual img { aspect-ratio: 16 / 10; }
  .hero-note { right: 10px; bottom: 12px; font-size: .85rem; }
  .grid-2, .grid-3, .feature-list { grid-template-columns: 1fr; }
  .cta { display: block; }
  .cta .btn { margin-top: 1.3rem; }
  .cost-row { display: grid; gap: .25rem; }
}
