:root {
  --ivory: #f8f5ee;
  --cream: #efe8db;
  --sand: #dfd3bf;
  --olive: #66724b;
  --olive-dark: #3f4934;
  --sage: #a9b293;
  --sage-light: #dce2d3;
  --brown: #6c523c;
  --ink: #2f352c;
  --muted: #687064;
  --white: #fff;
  --shadow: 0 24px 60px rgba(55, 65, 46, .12);
  --radius: 1.4rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
[hidden] { display: none !important; }

.container {
  width: min(1160px, calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 999;
  padding: .8rem 1rem;
  color: var(--white);
  background: var(--olive-dark);
  border-radius: .4rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 88px;
  background: rgba(248, 245, 238, .9);
  border-bottom: 1px solid rgba(103, 113, 79, .12);
  backdrop-filter: blur(16px);
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  height: 74px;
  background: rgba(248, 245, 238, .96);
  box-shadow: 0 8px 30px rgba(47, 53, 44, .08);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: block; text-decoration: none; }
.brand img { width: 190px; height: auto; transition: width .25s ease; }
.site-header.scrolled .brand img { width: 160px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  position: relative;
  color: var(--olive-dark);
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 100%;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: .7rem 1.2rem;
  color: var(--white) !important;
  background: var(--olive);
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover { background: var(--olive-dark); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--olive-dark);
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media, .hero-media img, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img { object-fit: cover; object-position: center 58%; }

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(33, 39, 28, .85) 0%, rgba(43, 50, 36, .62) 46%, rgba(43, 50, 36, .16) 80%),
    linear-gradient(0deg, rgba(26, 31, 23, .45) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.hero-content > * { max-width: 680px; }

.eyebrow {
  margin: 0 0 1.15rem;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.eyebrow-dark { color: var(--olive); }

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.15rem, 7vw, 6.4rem);
  letter-spacing: -.045em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.5rem;
  color: var(--olive-dark);
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  letter-spacing: -.035em;
}

h3 { font-size: clamp(1.65rem, 3vw, 2.35rem); color: var(--olive-dark); }

.hero-lead {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.hero-copy {
  margin: 0 0 2.1rem;
  max-width: 650px;
  color: rgba(255, 255, 255, .84);
  font-size: .98rem;
  line-height: 1.75;
}

.button-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 720;
  letter-spacing: .025em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--olive-dark); background: var(--white); }
.button-primary:hover { background: var(--cream); }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, .62); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: var(--white); color: var(--olive-dark); }

.scroll-cue {
  position: absolute;
  right: 3rem;
  bottom: 2.3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .8);
  font-size: .65rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; animation: float 2s ease-in-out infinite; }

.section { padding: clamp(5.5rem, 10vw, 9.5rem) 0; }

.about { position: relative; background: var(--ivory); overflow: hidden; }

.about::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -150px;
  top: 2rem;
  border: 1px solid rgba(102, 114, 75, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(102, 114, 75, .035), 0 0 0 120px rgba(102, 114, 75, .025);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .75fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-copy p { color: var(--muted); }
.about-copy strong { color: var(--olive-dark); }

.signature {
  display: block;
  margin-top: 1.7rem;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.about-photo {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0;
  justify-self: end;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: -1.3rem 1.6rem 1.3rem -1.6rem;
  z-index: -1;
  background: var(--sage-light);
  border-radius: var(--radius);
}

.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 9vw, 8rem);
  margin-bottom: 0;
  padding-left: 0;
  border-top: 1px solid rgba(102, 114, 75, .18);
  list-style: none;
}

.feature { padding: 2.5rem 2.3rem 0; text-align: center; }
.feature + .feature { border-left: 1px solid rgba(102, 114, 75, .18); }

.feature-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.35rem;
  color: var(--olive);
  background: var(--sage-light);
  border-radius: 50%;
}

.feature-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.feature h3 { margin-bottom: .75rem; font-size: 1.35rem; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

.classes { background: #f0ebe1; }

.section-heading { max-width: 720px; margin-bottom: 4.5rem; text-align: center; }
.section-heading p:last-child { color: var(--muted); font-size: 1.08rem; }

.class-grid { display: grid; gap: 2rem; }

.class-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  min-height: 450px;
  overflow: hidden;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(102, 114, 75, .11);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(65, 73, 55, .07);
}

.class-card-reverse { grid-template-columns: 1.25fr .75fr; }
.class-card-reverse .class-image { order: 2; }

.class-image { position: relative; min-height: 450px; overflow: hidden; }
.class-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(40,47,34,.24), transparent 50%); }
.class-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.class-card:hover .class-image img { transform: scale(1.035); }

.class-body { align-self: center; padding: clamp(2.3rem, 6vw, 5rem); }
.class-tag { margin: 0 0 1rem; color: var(--olive); font-size: .72rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.class-body h3 { margin-bottom: 1.4rem; font-size: clamp(2.25rem, 4vw, 3.4rem); }
.class-body p:last-child { margin: 0; color: var(--muted); }

.beginner-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
  padding: 1.7rem 2rem;
  color: var(--olive-dark);
  background: var(--sage-light);
  border-radius: var(--radius);
  text-align: left;
}

.beginner-note svg { flex: 0 0 auto; width: 44px; fill: none; stroke: var(--olive); stroke-width: 1.4; }
.beginner-note p { margin: 0; line-height: 1.55; }

.schedule {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  padding: 7rem 0;
  overflow: hidden;
}

.schedule-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(48, 57, 41, .66), rgba(48, 57, 41, .76)),
    url("assets/images/grafik-tlo.webp") center 50% / cover no-repeat;
}

.schedule-card {
  position: relative;
  max-width: 546px;
  padding: clamp(2.1rem, 4.9vw, 3.5rem);
  color: var(--white);
  background: rgba(56, 67, 47, .74);
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  backdrop-filter: blur(0px);
  text-align: center;
  box-shadow: var(--shadow);
}

.schedule-card h2 {
  margin-bottom: 1.15rem;
  color: var(--white);
  font-size: clamp(2.15rem, 4vw, 3.25rem);
}
.schedule-card > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.schedule-card .button {
  min-height: 46px;
  padding: .75rem 1.2rem;
  font-size: .82rem;
}
.schedule-card small { display: block; margin-top: .9rem; color: rgba(255,255,255,.65); }

.button-light { gap: .7rem; color: var(--olive-dark); background: var(--white); }
.button-light:hover { background: var(--cream); }
.button-light svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-large { padding: 1rem 1.75rem; }

/* Sekcja Opinie */
.reviews {
  overflow: hidden;
  background: #f7f4ed;
}

.reviews-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}

.reviews-heading h2 { margin-bottom: .75rem; }

.reviews-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: .55rem;
  color: var(--olive-dark);
  font-size: 1.84rem;
  font-weight: 600;
  line-height: 1;
}

.reviews-summary-stars {
  color: #c59b45;
  letter-spacing: .1em;
}

.reviews-summary-label {
  font-size: .92rem;
  line-height: 1.2;
}

.reviews-viewport { position: relative; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.review-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid rgba(56, 67, 47, .11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 40px rgba(56, 67, 47, .07);
}

.review-card[hidden] { display: none; }

.review-stars {
  margin-bottom: 1rem;
  color: #c59b45;
  font-size: 1rem;
  letter-spacing: .12em;
  line-height: 1;
}

.review-card blockquote {
  margin: 0 0 1.4rem;
  color: var(--text, #34382f);
  font-size: .98rem;
  line-height: 1.72;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: auto;
}

.review-avatar {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e7eadc;
  color: var(--olive-dark);
  font-weight: 700;
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author span {
  margin-top: .12rem;
  color: var(--muted);
  font-size: .78rem;
}

.review-author .review-avatar {
  display: grid;
  margin-top: 0;
  place-items: center;
  color: var(--olive-dark);
  font-size: .78rem;
  line-height: 1;
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.65rem;
}

.reviews-arrow {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(56, 67, 47, .25);
  border-radius: 50%;
  background: transparent;
  color: var(--olive-dark);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.reviews-arrow:hover:not(:disabled) {
  background: var(--olive-dark);
  color: var(--white);
}

.reviews-arrow:disabled {
  cursor: default;
  opacity: .28;
}

.reviews-arrow svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reviews-status {
  min-width: 3.5rem;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

.reviews-link {
  margin-left: .25rem;
  color: var(--olive-dark);
  font-size: .82rem;
  text-underline-offset: .2em;
}

.contact { background: #f0ebe1; }
.contact-intro { max-width: 720px; margin-bottom: 4rem; text-align: center; }
.contact-intro > p:last-child { color: var(--muted); font-size: 1.05rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: stretch; }

.contact-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--cream);
  border-radius: var(--radius);
}

.contact-logo {
  width: min(155px, 52%);
  height: auto;
  margin: 0 auto 1.6rem;
  object-fit: contain;
}
.contact-list { display: grid; gap: 1.1rem; padding: 1.5rem 0; border-block: 1px solid rgba(102, 114, 75, .18); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--ink);
  text-decoration: none;
}

a.contact-item:hover strong { color: var(--olive); }
.contact-item svg { flex: 0 0 auto; width: 22px; margin-top: .25rem; fill: none; stroke: var(--olive); stroke-width: 1.6; }
.contact-item div { display: grid; }
.contact-item span { color: var(--muted); line-height: 1.55; }
.contact-item strong { color: var(--olive-dark); transition: color .2s ease; }

.social-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .9rem;
  color: var(--olive-dark);
  border: 1px solid rgba(102, 114, 75, .25);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 650;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.social-row a:hover { color: var(--white); background: var(--olive); }
.social-row svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.map-wrap { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 500px; border: 0; filter: saturate(.7) sepia(.05); }
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2rem;
  color: var(--olive-dark);
  background: linear-gradient(145deg, var(--cream), var(--sage-light));
  text-align: center;
}
.map-consent svg { width: 38px; fill: none; stroke: var(--olive); stroke-width: 1.5; }
.map-consent strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.map-consent p { max-width: 390px; margin: 0; color: var(--muted); font-size: .88rem; }
.map-consent-button {
  min-height: 42px;
  margin-top: .35rem;
  padding: .65rem 1.1rem;
  color: var(--white);
  background: var(--olive);
  border: 0;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
}
.map-consent-button:hover { background: var(--olive-dark); }
.map-link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--olive-dark);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer { padding: 2.2rem 0; color: rgba(255,255,255,.75); background: var(--olive-dark); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-inner div { display: grid; gap: .2rem; }
.footer-inner strong { color: var(--white); font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
.footer-inner span { font-size: .78rem; }
.footer-inner > a { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; text-decoration: none; }
.footer-inner > a:hover { color: var(--white); }
.footer-inner svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.privacy-settings {
  margin-left: auto;
  padding: 0;
  color: rgba(255,255,255,.75);
  background: transparent;
  border: 0;
  font-size: .8rem;
  text-decoration: underline;
  text-underline-offset: .2em;
  cursor: pointer;
}
.privacy-settings:hover { color: var(--white); }

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 1000;
}

.cookie-card {
  width: min(920px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 1.25rem 1.4rem;
  color: var(--ink);
  background: rgba(248, 245, 238, .98);
  border: 1px solid rgba(102, 114, 75, .22);
  border-radius: 1.1rem;
  box-shadow: 0 18px 55px rgba(35, 43, 31, .22);
  backdrop-filter: blur(12px);
}

.cookie-copy > strong { display: block; margin-bottom: .2rem; color: var(--olive-dark); font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.cookie-copy > p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.cookie-details { margin-top: .45rem; color: var(--muted); font-size: .76rem; }
.cookie-details summary { width: fit-content; color: var(--olive-dark); font-weight: 700; cursor: pointer; }
.cookie-details p { margin: .55rem 0 0; line-height: 1.55; }
.cookie-details a { color: var(--olive-dark); }

.cookie-actions { display: flex; gap: .65rem; }
.cookie-button {
  min-width: 112px;
  min-height: 42px;
  padding: .65rem 1rem;
  border: 1px solid var(--olive);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
}
.cookie-button-accept { color: var(--white); background: var(--olive); }
.cookie-button-accept:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
.cookie-button-reject { color: var(--olive-dark); background: var(--white); }
.cookie-button-reject:hover { background: var(--cream); }
.cookie-button:focus-visible,
.map-consent-button:focus-visible,
.privacy-settings:focus-visible { outline: 3px solid rgba(190, 98, 57, .45); outline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 900px) {
  .container { width: min(100% - 2rem, 720px); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header, .site-header.scrolled { height: 74px; }
  .brand img, .site-header.scrolled .brand img { width: 155px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    padding: 6rem 2rem 2rem;
    background: rgba(248, 245, 238, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
  .main-nav .nav-cta { padding: .65rem 1.4rem; font-family: var(--sans); font-size: .9rem; }
  .hero { min-height: 800px; }
  .hero-content { padding-top: 8rem; }
  .scroll-cue { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { max-width: 680px; }
  .about-photo { width: min(80%, 480px); margin-inline: auto; }
  .features { grid-template-columns: 1fr; border-top: 0; }
  .feature { padding: 2rem; border-top: 1px solid rgba(102, 114, 75, .18); }
  .feature + .feature { border-left: 0; }
  .class-card, .class-card-reverse { grid-template-columns: .8fr 1.2fr; }
  .class-card-reverse .class-image { order: initial; }
  .class-body { padding: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 430px; }
  .privacy-settings { margin-left: 0; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }
  body { font-size: .95rem; }
  .container { width: min(100% - 1.4rem, 560px); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .reviews-footer { flex-wrap: wrap; }
  .reviews-link {
    width: 100%;
    margin: .2rem 0 0;
    text-align: center;
  }
  .hero { min-height: 860px; align-items: end; }
  .hero-media img { object-position: 60% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(31,38,28,.94) 0%, rgba(42,50,36,.74) 58%, rgba(42,50,36,.35) 100%); }
  .hero-content { padding: 8.8rem 0 4rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .hero-copy { font-size: .9rem; line-height: 1.65; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .section { padding: 5.5rem 0; }
  .about::before { display: none; }
  .about-photo { width: calc(100% - 1.2rem); }
  .about-photo::before { inset: -.8rem .8rem .8rem -.8rem; }
  .features { margin-top: 4.5rem; }
  .section-heading { margin-bottom: 3rem; }
  .class-card, .class-card-reverse { display: block; min-height: 0; }
  .class-image {
    height: auto;
    min-height: 0;
  }
  .class-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .class-body { padding: 2rem 1.4rem 2.3rem; }
  .class-body h3 { font-size: 2.25rem; }
  .beginner-note { align-items: flex-start; padding: 1.4rem; }
  .beginner-note svg { width: 34px; }
  .schedule { min-height: 600px; padding: 4.5rem 0; }
  .schedule-card { padding: 2.2rem 1.2rem; }
  .contact-intro { margin-bottom: 3rem; }
  .contact-card { padding: 2rem 1.3rem; }
  .social-row a { flex: 1; justify-content: center; }
  .map-wrap, .map-wrap iframe { min-height: 380px; }
  .map-link { left: 1rem; right: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner { inset: auto .6rem .6rem; }
  .cookie-card { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-button { flex: 1; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .reviews-arrow { transition: none; }
}
/* Ukrycie menu w wersji mobilnej */
@media (max-width: 900px) {
  .menu-toggle,
  .main-nav {
    display: none;
  }
}

.schedule-buttons {
  display: flex;
  justify-content: center;
  gap: .8rem;
  width: 100%;
}

.schedule-buttons .schedule-button {
  min-width: 150px;
  min-height: 42px;
  padding: .65rem 1rem;
  justify-content: center;
  font-size: .78rem;
  white-space: nowrap;
}

.schedule-buttons .schedule-button svg { width: 18px; }

@media (max-width: 540px) {
  .schedule-buttons { flex-direction: column; align-items: center; }
  .schedule-buttons .schedule-button { width: min(100%, 230px); }
}
