@import url('fonts.css');

:root {
  --bg: #F6F3EC;
  --surface: #FFFFFF;
  --fg: #14140F;
  --muted: rgba(20, 20, 15, 0.6);
  --border: rgba(20, 20, 15, 0.1);
  --accent: #9A9A1E;
  --accent-hover: #B5B53A;
  --dark: #23261C;
  --light: #F6F3EC;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-text {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 120px 0;
}

.bg-dark {
  background-color: var(--dark);
  color: var(--light);
}

.bg-dark .section-subtitle {
  color: var(--accent);
}

.wood-texture {
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at center, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 100%);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* Typography & Titles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-subtitle {
  font-family: var(--font-display);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-subtitle::before, .section-subtitle::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--light);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(154, 154, 30, 0.25);
}

.btn-outline {
  border: 1px solid var(--fg);
  color: var(--fg);
  background: transparent;
}

.bg-dark .btn-outline {
  border-color: var(--light);
  color: var(--light);
}

.btn-outline:hover {
  background-color: var(--fg);
  color: var(--bg);
}

.bg-dark .btn-outline:hover {
  background-color: var(--light);
  color: var(--dark);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(246, 243, 236, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 5%;
  box-shadow: 0 4px 30px rgba(20, 20, 15, 0.05);
}

.bg-dark-header.site-header:not(.scrolled) {
  color: var(--light);
  background: linear-gradient(to bottom, rgba(20, 20, 15, 0.5) 0%, rgba(20, 20, 15, 0) 100%);
}

.bg-dark-header.site-header:not(.scrolled) .nav-link {
  text-shadow: 0 1px 8px rgba(20, 20, 15, 0.35);
}

/* Persistent solid header bar on subpages (light backgrounds) */
.site-header.solid-header {
  background-color: rgba(246, 243, 236, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(20, 20, 15, 0.08);
}

/* Light outline button over the dark hero */
.hero .btn-outline {
  border-color: rgba(246, 243, 236, 0.7);
  color: var(--light);
}

.hero .btn-outline:hover {
  background-color: var(--light);
  color: var(--dark);
  border-color: var(--light);
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.bg-dark-header.site-header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: auto;
}

/* Przełącznik języka PL / DE */
.lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: 20px;
}

.lang-switch button {
  background: none;
  border: 2px solid transparent;
  padding: 2px;
  border-radius: 5px;
  cursor: pointer;
  line-height: 0;
  opacity: 0.55;
  transition: var(--transition);
}

.lang-switch button.active { opacity: 1; border-color: var(--accent); }
.lang-switch button:hover { opacity: 1; }

.lang-switch .flag {
  display: block;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.flag-pl { background: linear-gradient(to bottom, #ffffff 0 50%, #dc143c 50% 100%); }
.flag-de { background: linear-gradient(to bottom, #000000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%); }
.flag-en {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='t'%3E%3Cpath d='M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z'/%3E%3C/clipPath%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' clip-path='url(%23t)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E")
    center / cover no-repeat;
}

/* Wybór języka w menu hamburgera — tylko telefon */
.lang-switch-mobile { display: none; }

@media (max-width: 768px) {
  .lang-switch { display: none; }

  .lang-switch-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 260px;
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }
  .lang-switch-mobile .lang-switch-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .lang-switch-mobile button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: none;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--fg);
    cursor: pointer;
    transition: var(--transition);
  }
  .lang-switch-mobile button.active {
    border-color: var(--accent);
    background: rgba(154, 154, 30, 0.12);
    font-weight: 600;
  }
  .lang-switch-mobile .flag {
    display: block;
    width: 30px;
    height: 20px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
    flex: none;
  }
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: inherit;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 20, 15, 0.85) 0%, rgba(20, 20, 15, 0.55) 45%, rgba(35, 38, 28, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-display);
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background-color: var(--accent-hover);
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--surface);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(20, 20, 15, 0.07);
  border-color: transparent;
}

.process-step .step-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}

.process-step .process-icon {
  width: 52px;
  height: 52px;
  color: var(--accent);
  margin-bottom: 20px;
}

.process-step .process-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--muted);
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* Page Header (Subpages) */
.page-header {
  padding: 160px 0 64px 0;
  background-color: var(--bg);
  position: relative;
}

.page-header-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.page-header-eyebrow {
  font-family: var(--font-display);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.page-header-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--accent);
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  color: var(--fg);
}

.page-header p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
}

/* Cards & Grid Layouts */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background-color: var(--surface);
  padding: 48px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(20, 20, 15, 0.04);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(20, 20, 15, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(154, 154, 30, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 32px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--muted);
}

/* Counters */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.stat-item p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: var(--dark);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 15, 0.8) 0%, rgba(20, 20, 15, 0.2) 50%, rgba(20, 20, 15, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Phones: bigger gallery tiles (2 columns instead of cramped 3) */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* Touch devices: labels always visible (no hover) */
@media (hover: none) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(20, 20, 15, 0.85) 0%, rgba(20, 20, 15, 0.1) 60%, rgba(20, 20, 15, 0) 100%);
  }
  .gallery-overlay span {
    transform: translateY(0);
  }
}

/* Split Section (Image + Text) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.split-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.split-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Marquee */
.marquee-container {
  background-color: var(--dark);
  color: var(--accent);
  padding: 32px 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  border-top: 1px solid rgba(154, 154, 30, 0.15);
  border-bottom: 1px solid rgba(154, 154, 30, 0.15);
}

.marquee-content {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee-content span::after {
  content: '•';
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  color: var(--fg);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(20, 20, 15, 0.05);
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkbox-group input {
  margin-top: 6px;
  cursor: pointer;
}

.checkbox-group label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
}

/* Form result message */
.form-result {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.98rem;
  font-family: var(--font-body);
}

.form-result.success {
  background-color: rgba(154, 154, 30, 0.12);
  color: #5f5f12;
  border: 1px solid rgba(154, 154, 30, 0.4);
}

.form-result.error {
  background-color: rgba(180, 50, 30, 0.08);
  color: #9a2f1c;
  border: 1px solid rgba(180, 50, 30, 0.3);
}

/* Contact Info */
.contact-info {
  background-color: var(--surface);
  padding: 56px 48px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(20, 20, 15, 0.04);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(154, 154, 30, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-text h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-text p, .info-text a {
  color: var(--muted);
  font-size: 1.1rem;
  transition: var(--transition);
}

.info-text a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  background-color: #161812;
  color: #A0A0A0;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 24px;
}

.footer-col h4 {
  color: var(--light);
  margin-bottom: 24px;
  font-size: 1.25rem;
  font-family: var(--font-display);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

/* Legal / Content Pages */
.legal-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--muted);
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.legal-content a {
  color: var(--accent);
  transition: var(--transition);
}

.legal-content a:hover {
  opacity: 0.75;
}

.legal-content strong {
  color: var(--fg);
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 940px;
  margin: 0 auto;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(20, 20, 15, 0.2);
  padding: 24px 28px;
  z-index: 1000;
  transform: translateY(160%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s, visibility 0.5s;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.cookie-text h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.cookie-text p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

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

.cookie-actions .btn {
  padding: 12px 22px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.cookie-btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
}

.cookie-btn-secondary:hover {
  background-color: var(--bg);
  border-color: var(--fg);
}

.cookie-gear {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--dark);
  color: var(--light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(20, 20, 15, 0.25);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-gear.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-gear:hover {
  background-color: var(--accent);
  transform: rotate(40deg);
}

.cookie-gear svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

/* Animations (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-grid, .split-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .split-image {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg);
    padding: 120px 5%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 1.5rem;
  }

  .bg-dark-header.site-header:not(.scrolled) .nav-link {
    color: var(--fg);
  }

  .hamburger {
    display: block;
    z-index: 101;
  }
  
  .bg-dark-header.site-header:not(.scrolled) .hamburger {
    color: var(--light);
  }
  
  .site-header.nav-active .hamburger {
    color: var(--fg) !important;
  }
  
  .site-header.nav-active .logo img {
    filter: none !important;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
