/*
Theme Name: DSart
Theme URI: https://www.dsart.sk
Author: Dominik Sabol
Author URI: https://www.dsart.sk
Description: Moderná minimalistická one-page téma pre svadobného videokameramana
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: dsart
*/

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

:root {
  --white:      #ffffff;
  --off-white:  #f8f8f6;
  --light:      #f0eeea;
  --mid:        #d1cdc6;
  --text-muted: #8a8680;
  --text:       #2a2825;
  --accent:     #c9a96e;       /* gold — kamera/film asociácia */
  --accent-dk:  #a8853f;
  --black:      #1a1815;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:   4px;
  --shadow:   0 4px 24px rgba(0,0,0,0.08);
  --trans:    0.3s ease;

  --max-w: 1160px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
  margin-bottom: 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--trans), box-shadow var(--trans);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--mid);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color var(--trans);
  display: flex;
  align-items: center;
}
#navbar.scrolled .nav-logo { color: var(--text); }

/* Logo obrázok — výška sa nastavuje v admin Nastavenia → DSart (inline CSS) */
.logo-img { width: auto; }
.logo-dark { display: none; }
#navbar.scrolled .logo-light { display: none; }
#navbar.scrolled .logo-dark  { display: block; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--trans);
}
#navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--accent) !important; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  transition: background var(--trans) !important;
}
.nav-cta:hover { background: var(--accent-dk); color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--trans);
}
#navbar.scrolled .nav-toggle span { background: var(--text); }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1815 0%, #2e2b26 50%, #1a1815 100%);
}

/* Film grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

/* Gold accent line */
.hero-accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 40px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--trans), transform var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-1px); }

.btn-secondary {
  color: rgba(255,255,255,0.7);
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--trans);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

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

/* =============================================
   O MNE
   ============================================= */
#o-mne {
  padding: var(--section-pad);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

/* Gold corner accent */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 2px 0 0;
  pointer-events: none;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; left: -16px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 0 0 0 2px;
  pointer-events: none;
}

.about-stat-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-stat-badge .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-stat-badge .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.about-detail-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* =============================================
   PORTFÓLIO / VIDEÁ
   ============================================= */
#portfolio {
  padding: var(--section-pad);
  background: var(--off-white);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}
.portfolio-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Lazy video — thumbnail + play button, iframe loads on click */
.video-lazy { cursor: pointer; background: var(--black); }
.video-lazy img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--trans), opacity var(--trans);
}
.video-lazy:hover img { transform: scale(1.04); opacity: 0.85; }

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,169,110,0.92);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), transform var(--trans);
  z-index: 2;
}
.video-play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.video-lazy:hover .video-play-btn {
  background: var(--accent-dk);
  transform: translate(-50%, -50%) scale(1.08);
}

.portfolio-more {
  text-align: center;
  margin-top: 48px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color var(--trans), color var(--trans);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline svg { color: #ff0000; }

.video-info {
  padding: 20px 24px;
}
.video-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.video-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Srdiečka v názvoch videí — červené */
.heart {
  color: #d3455b;
  font-style: normal;
}

/* =============================================
   SLUŽBY — 2 karty v štýle Spolupráce
   ============================================= */
#sluzby {
  padding: var(--section-pad);
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px 36px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.service-icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--off-white);
}
.service-icon-circle svg { width: 44px; height: 44px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   CENNÍK
   ============================================= */
#cennik {
  padding: var(--section-pad);
  background: var(--off-white);
}

.cennik-header {
  text-align: center;
  margin-bottom: 56px;
}

.cennik-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1020px;
  margin: 0 auto;
}

.cennik-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.cennik-outro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--text) !important;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  margin-top: 28px !important;
}

.cennik-cta { margin-top: 16px; }

.cennik-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  border-top: 3px solid var(--accent);
}

.cennik-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--text);
}

.cennik-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cennik-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cennik-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   SPOLUPRÁCA
   ============================================= */
#spolupraca {
  padding: var(--section-pad);
  background: var(--white);
}

.partners-header {
  text-align: center;
  margin-bottom: 56px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px 36px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.partner-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--accent);
  padding: 3px;
  background: var(--white);
  flex-shrink: 0;
}
.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.partner-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
}
.partner-photo-empty svg {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
}

/* Predel medzi fotkou a textom */
.partner-divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 20px;
  border: none;
}

.partner-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}

.partner-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color var(--trans);
}
.partner-link:hover { color: var(--accent-dk); }

/* =============================================
   KONTAKT
   ============================================= */
#kontakt {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#kontakt::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { color: var(--white); }
.contact-intro {
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
}
.contact-item svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item a { transition: color var(--trans); }
.contact-item a:hover { color: var(--accent); }

.contact-area {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--trans), background var(--trans);
  outline: none;
  width: 100%;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
}
.form-group select option { background: var(--black); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--accent-dk); transform: translateY(-1px); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #111009;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
}
.footer-logo-img { width: auto; }

.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--accent); }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   PODSTRÁNKY (page.php) — napr. Ochrana osobných údajov
   ============================================= */
.legal-page {
  padding: 150px 24px 100px;
  background: var(--white);
  min-height: 55vh;
}

.legal-page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.legal-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 40px;
}

.legal-page-content {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.legal-page-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin: 40px 0 16px;
}
.legal-page-content h2:first-child { margin-top: 0; }
.legal-page-content p { margin-bottom: 16px; }
.legal-page-content ul { margin: 0 0 16px 20px; }
.legal-page-content li { margin-bottom: 8px; }
.legal-page-content a { color: var(--accent); text-decoration: underline; }
.legal-page-content a:hover { color: var(--accent-dk); }
.legal-page-content strong { color: var(--text); }

/* =============================================
   COOKIE LIŠTA
   ============================================= */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--black);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cookie-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  flex: 1 1 320px;
}
.cookie-bar a { color: var(--accent); text-decoration: underline; }
.cookie-bar a:hover { color: #ddc38f; }

.cookie-bar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.75);
  transition: all var(--trans);
  white-space: nowrap;
}
.cookie-btn:hover { border-color: var(--accent); color: var(--accent); }

.cookie-btn-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.cookie-btn-accept:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: var(--white); }

@media (max-width: 600px) {
  .cookie-bar-inner { flex-direction: column; align-items: stretch; text-align: center; padding: 18px 20px; }
  .cookie-bar-actions { justify-content: center; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  :root { --section-pad: 72px 24px; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .cennik-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-stat-badge { right: 16px; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  #navbar { padding: 0 20px; }

  #hero { min-height: 62vh; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(26,24,21,0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.4rem; color: var(--white) !important; }

  .hero-content { padding: 100px 20px 50px; }

  .legal-page { padding: 110px 20px 72px; }

  .video-grid { grid-template-columns: 1fr; }

  .partners-grid { grid-template-columns: 1fr; }
  .partner-card { padding: 36px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 24px; }

  footer { flex-direction: column; align-items: center; text-align: center; }
}

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