/* ═══════════════════════════════════════════════════════════════
   ROZWOJOWO.EDU.PL — Premium Design System
   Target: Women 30+ | Elegant Minimalism | E-E-A-T Optimized
   ═══════════════════════════════════════════════════════════════ */

/* ── IMPORT FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CUSTOM PROPERTIES ────────────────────────────────────────── */
:root {
  --ivory:       #FAFAF7;
  --cream:       #F4EFE6;
  --cream-dark:  #EDE6D8;
  --white:       #FFFFFF;
  --navy:        #1A2B4A;
  --charcoal:    #2C2C3A;
  --gold:        #C5956A;
  --gold-light:  #E8D4B8;
  --gold-pale:   #FAF4EC;
  --sage:        #7A9B6E;
  --sage-light:  #D4E5CE;
  --rose:        #C8887A;
  --gray-mid:    #9B968F;
  --gray-light:  #E5E0D8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-xl:   48px;

  --shadow-sm:  0 2px 12px rgba(26,43,74,.06);
  --shadow-md:  0 8px 32px rgba(26,43,74,.10);
  --shadow-lg:  0 20px 60px rgba(26,43,74,.13);
  --shadow-gold: 0 8px 32px rgba(197,149,106,.18);

  --transition: .35s cubic-bezier(.25,.46,.45,.94);
  --transition-slow: .6s cubic-bezier(.25,.46,.45,.94);

  --section-pad: clamp(80px, 10vw, 130px);
  --container: 1200px;
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold-light); color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ── TYPOGRAPHY SCALE ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

p { font-size: 1.05rem; line-height: 1.75; color: #4A4856; }
.lead { font-size: 1.2rem; line-height: 1.8; }
.small { font-size: .875rem; }

/* ── UTILITY ──────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }
.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.fw-300 { font-weight: 300; }
.fw-600 { font-weight: 600; }
.italic { font-style: italic; }
.serif { font-family: var(--font-display); }
.bg-cream { background-color: var(--cream); }
.bg-navy { background-color: var(--navy); }
.bg-ivory { background-color: var(--ivory); }
.bg-gold-pale { background-color: var(--gold-pale); }

/* ── SECTION HEADERS ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 20px; }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 40px;
}
.section-line.center { margin: 20px auto 40px; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary-rw {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-rw:hover {
  background: transparent;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #D4A574);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(197,149,106,.30);
  color: var(--white);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: .82rem; }

/* ── NAVBAR ───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(250,250,247,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.navbar-brand span { color: var(--gold); }
.navbar-brand .domain {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 400;
  color: var(--gray-mid);
  display: block;
  letter-spacing: .1em;
  margin-top: -4px;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-menu a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: .04em;
  position: relative;
}
.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.navbar-menu a:hover::after { width: 100%; }
.navbar-menu a:hover { color: var(--navy); }
.navbar-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,250,247,.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 65%; height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--cream-dark) 100%);
  border-radius: 0 0 0 60%;
  opacity: .7;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: .5;
}
.hero-decor-circle {
  position: absolute;
  top: 15%; right: 8%;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(197,149,106,.18);
  animation: rotateSlow 40s linear infinite;
}
.hero-decor-circle::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(197,149,106,.10);
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-image-frame {
  position: absolute;
  top: 50%; right: 6%;
  transform: translateY(-50%);
  width: clamp(300px, 38vw, 520px);
  height: clamp(380px, 55vw, 680px);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--gold-light) 60%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .85rem;
  text-align: center;
  padding: 32px;
}
.hero-image-placeholder svg { opacity: .4; }
.hero-image-placeholder p { color: var(--gray-mid); font-size: .78rem; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-top: 80px;
}
.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-pretitle::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #5A5570;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: .78rem;
  color: var(--gray-mid);
  letter-spacing: .05em;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-mid);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-mid), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)} }

/* ── TRUST BAR ────────────────────────────────────────────────── */
#trust-bar {
  background: var(--navy);
  padding: 36px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}

/* ── COURSES SECTION ──────────────────────────────────────────── */
#szkolenia { background: var(--ivory); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.course-card:hover::before { transform: scaleX(1); }
.course-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}
.course-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
}
.course-card:hover .course-icon {
  background: var(--gold);
  color: var(--white);
}
.course-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  padding-right: 40px;
  line-height: 1.3;
}
.course-benefit {
  font-size: .95rem;
  color: var(--gray-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.course-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--cream);
  color: var(--navy);
}
.course-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  transition: var(--transition);
}
.course-link:hover { gap: 14px; color: var(--navy); }
.course-popularity {
  position: absolute;
  top: 22px; left: 32px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── ABOUT / EEAT ─────────────────────────────────────────────── */
#o-mnie { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--cream-dark), var(--gold-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-mid);
  font-size: .85rem;
  text-align: center;
  padding: 40px;
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.about-badge-num span { color: var(--gold); }
.about-badge-text {
  font-size: .78rem;
  color: var(--gray-mid);
  margin-top: 4px;
}
.about-content .section-label { margin-bottom: 8px; }
.eeat-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.eeat-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.eeat-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}
.eeat-item-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.eeat-item-title {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.eeat-item-text {
  font-size: .82rem;
  color: var(--gray-mid);
  line-height: 1.5;
}
.credentials-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.credential-badge {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1.5px solid var(--gold-light);
  color: var(--navy);
  background: var(--gold-pale);
}

/* ── BENEFITS ─────────────────────────────────────────────────── */
#korzysci { background: var(--navy); position: relative; overflow: hidden; }
#korzysci::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,149,106,.12) 0%, transparent 70%);
}
#korzysci .section-label { color: var(--gold); }
#korzysci .section-title { color: var(--white); }
#korzysci .section-line { background: linear-gradient(90deg, var(--gold), transparent); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-item {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  position: relative;
}
.benefit-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(197,149,106,.30);
  transform: translateY(-4px);
}
.benefit-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(197,149,106,.2);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin: 44px 0 14px;
  line-height: 1.3;
}
.benefit-text {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(197,149,106,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
#opinie { background: var(--ivory); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: .6;
  margin-bottom: 20px;
  font-weight: 300;
}
.testimonial-text {
  font-size: .98rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-display);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.testimonial-role { font-size: .78rem; color: var(--gray-mid); }
.stars { color: var(--gold); font-size: .9rem; margin-bottom: 16px; }

/* ── BLOG / ARTICLES ──────────────────────────────────────────── */
#blog { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: .82rem;
  overflow: hidden;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-image-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream-dark), var(--gold-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-mid);
  font-size: .78rem;
  text-align: center;
  padding: 24px;
}
.blog-body { padding: 28px 24px; }
.blog-category {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card h4 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--navy);
  transition: var(--transition);
}
.blog-card:hover h4 { color: var(--gold); }
.blog-excerpt {
  font-size: .88rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.blog-date { font-size: .75rem; color: var(--gray-mid); }
.blog-read {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-read:hover { gap: 10px; color: var(--navy); }

/* ── PORTFOLIO / GALLERY ──────────────────────────────────────── */
#portfolio { background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item-inner {
  width: 100%; height: 100%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.05); }
.gallery-item-inner img { width: 100%; height: 100%; object-fit: cover; }
.gallery-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-mid);
  font-size: .75rem;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,43,74,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CONTACT ──────────────────────────────────────────────────── */
#kontakt { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-item-label { font-size: .75rem; font-weight: 600; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .1em; }
.contact-item-value { font-size: 1rem; color: var(--navy); font-weight: 500; margin-top: 2px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-form-wrap .form-subtitle {
  font-size: .9rem;
  color: var(--gray-mid);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.form-control-rw {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
}
.form-control-rw::placeholder { color: var(--gray-mid); }
.form-control-rw:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(197,149,106,.12);
}
textarea.form-control-rw { resize: vertical; min-height: 120px; }
.form-select-rw {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
  appearance: none;
  cursor: pointer;
}
.form-select-rw:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(197,149,106,.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent {
  font-size: .78rem;
  color: var(--gray-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-consent a { color: var(--gold); text-decoration: underline; }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  margin-top: 16px;
  display: none;
}
.form-message.success { background: #D1FAE5; color: #065F46; display: block; }
.form-message.error   { background: #FEE2E2; color: #991B1B; display: block; }

/* ── SOCIAL MEDIA ─────────────────────────────────────────────── */
#social-section {
  background: var(--ivory);
  padding: 60px 0;
}
.social-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social-btn.fb:hover  { border-color: #1877F2; color: #1877F2; }
.social-btn.ig:hover  { border-color: #E1306C; color: #E1306C; }
.social-btn.li:hover  { border-color: #0A66C2; color: #0A66C2; }
.social-btn.yt:hover  { border-color: #FF0000; color: #FF0000; }
.social-btn i { font-size: 1.1rem; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: #10182A;
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand span { color: var(--gold); }
.footer-tagline {
  font-size: .95rem;
  font-style: italic;
  font-family: var(--font-display);
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer-about { font-size: .87rem; line-height: 1.7; color: rgba(255,255,255,.45); }
.footer-heading {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .87rem;
  color: rgba(255,255,255,.5);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.3); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }
.footer-counter {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-counter-num { color: var(--gold); font-weight: 600; }

/* ── LIGHTBOX OVERRIDE ────────────────────────────────────────── */
.glightbox-clean .gslide-description { background: var(--navy); }
.glightbox-clean .gdesc-inner .gslide-title { color: var(--gold); font-family: var(--font-display); }

/* ── BACK TO TOP ──────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { transform: translateY(-4px); background: var(--navy); }

/* ── COOKIE BANNER ────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
  z-index: 9999;
  display: none;
}
#cookie-banner.show { display: block; animation: slideUp .4s ease; }
@keyframes slideUp { from{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1} }
.cookie-text { font-size: .85rem; color: var(--charcoal); line-height: 1.6; margin-bottom: 16px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 420px; margin: 0 auto; }
  .about-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-image-frame { display: none; }
  .hero-content { max-width: 100%; }
}
@media (max-width: 900px) {
  .navbar-menu { display: none; }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
  .eeat-items { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .courses-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; gap: 24px; }
  .trust-divider { width: 48px; height: 1px; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── AOS OVERRIDES ────────────────────────────────────────────── */
[data-aos] { transition-duration: .7s !important; }
