:root {
  --ink: #111827;
  --muted: #5c6673;
  --line: #d9e2ea;
  --surface: #ffffff;
  --teal: #0f9d9a;
  --blue: #062b55;
  --pink: #ec2f84;
  --green: #36a852;
  --red: #dd1d2d;
  --gold: #f4a51c;
  --shadow: 0 22px 60px rgba(10, 23, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f6f8fb;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto auto;
  gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.header-message,
.header-call,
.button,
.trust-signal,
.messenger-float {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(221, 29, 45, 0.24);
}

.nav-links {
  gap: 24px;
  font-size: 15px;
  font-weight: 800;
}

.header-message {
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: #151d28;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.header-call {
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #151d28;
  background: #fff;
  border: 2px solid #151d28;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  grid-template-areas:
    "copy media"
    "trust media";
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 92px) clamp(18px, 5vw, 86px);
  background:
    radial-gradient(circle at 7% 18%, rgba(236, 47, 132, 0.16), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f7fbff 48%, #edf3f8 100%);
}

.hero-copy {
  grid-area: copy;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(56px, 6.8vw, 118px);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 0.98;
}

h3 {
  font-size: 25px;
}

p {
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.48;
}

.hero-copy p {
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  gap: 10px;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid #151d28;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(10, 23, 38, 0.1);
}

.button-primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 20px 38px rgba(221, 29, 45, 0.24);
}

.button-secondary {
  background: #fff;
}

.hero-media {
  grid-area: media;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: min(68vh, 760px);
  object-fit: cover;
}

.lokal-panel {
  grid-area: trust;
  display: grid;
  width: min(100%, 360px);
  gap: 10px;
  align-self: start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-left: 6px solid var(--pink);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(10, 23, 38, 0.12);
}

.trust-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lokal-panel img {
  width: min(100%, 235px);
  height: auto;
}

.lokal-panel b {
  font-size: 18px;
}

.lokal-panel small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.trust-chip {
  justify-self: start;
  padding: 8px 12px;
  color: #06492f;
  background: #effaf2;
  border: 1px solid #cdeed7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.trust-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-signal {
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-signal svg {
  fill: currentColor;
  stroke: currentColor;
}

.trust-signal.local svg {
  color: var(--teal);
}

.trust-signal.trusted svg {
  color: var(--pink);
}

.trust-signal.verified svg {
  color: var(--green);
}

.section {
  display: grid;
  gap: 28px;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 86px);
}

.programs {
  background: #fff;
}

.section-copy {
  max-width: 820px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-grid article,
.membership-card,
.map-card,
.contact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.program-grid article {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.program-grid span,
.membership-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-grid p {
  margin: 0;
  font-size: 17px;
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  background: #f3f7fb;
}

.membership-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.membership-card img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  background: #0c0c0f;
  border-radius: 8px;
}

.membership-card strong {
  font-size: 28px;
  line-height: 1.1;
}

.location {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  align-items: center;
  background: #fff;
}

.map-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 157, 154, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(15, 157, 154, 0.1) 1px, transparent 1px),
    #effbfc;
  background-size: 34px 34px;
  text-align: center;
}

.map-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(236, 47, 132, 0.26);
  border-radius: 999px;
  animation: pulse 2.5s ease-in-out infinite;
}

.map-dot {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  background: var(--red);
  border: 4px solid #fff;
  border-radius: 999px 999px 999px 0;
  box-shadow: 0 14px 24px rgba(221, 29, 45, 0.22);
  transform: rotate(-45deg);
}

.map-card strong,
.map-card small {
  position: relative;
  z-index: 1;
}

.map-card strong {
  font-size: 24px;
}

.map-card small {
  color: var(--muted);
  font-size: 15px;
}

.contact {
  place-items: center;
  text-align: center;
}

.contact p {
  max-width: 620px;
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.messenger-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  gap: 10px;
}

.float-copy {
  display: grid;
  gap: 3px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.float-copy b {
  font-size: 14px;
}

.float-copy small {
  color: var(--muted);
  font-size: 13px;
}

.float-button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #1b82ee;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(27, 130, 238, 0.32);
}

.float-button svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.15;
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .split,
  .location,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-areas:
      "copy"
      "media"
      "trust";
  }

  .hero-media img {
    height: min(54vh, 440px);
  }

  .lokal-panel {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand {
    font-size: 22px;
  }

  .nav-links {
    display: none;
  }

  .header-message {
    justify-self: start;
  }

  .header-call {
    justify-self: start;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 54px;
  }

  .button {
    width: 100%;
  }

  .messenger-float {
    right: 14px;
    bottom: 14px;
  }

  .float-copy {
    display: none;
  }
}
