/* ==========================================================================
   polskanosybe.pl — Design System
   Palette: Jungle épurée / Luxe tropical
   ========================================================================== */

:root {
  --jungle-deep:  #1C3D2E;
  --jungle-mid:   #2D6A4F;
  --jungle-light: #52B788;
  --sand:         #F5F0E8;
  --sand-dark:    #E8DFD0;
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --cream:        #FDFAF5;
  --dark:         #1A1A1A;
  --gray:         #6B7280;
  --gray-light:   #9CA3AF;
  --white:        #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card:  0 4px 24px rgba(28, 61, 46, 0.12);
  --shadow-hover: 0 12px 40px rgba(28, 61, 46, 0.2);
  --shadow-deep:  0 24px 60px rgba(28, 61, 46, 0.3);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
  --container-narrow: 860px;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--jungle-deep);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p { margin-bottom: 1rem; }
em { color: var(--gold); font-style: italic; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 5%; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.nav-logo .logo-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  margin-left: 0.25rem;
}
.navbar.scrolled .nav-logo { color: var(--jungle-deep); }
.navbar.scrolled .nav-logo .logo-accent { color: var(--jungle-mid); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.navbar.scrolled .nav-menu a { color: var(--jungle-deep); }

.nav-cta {
  padding: 0.7rem 1.4rem;
  background: var(--gold);
  color: var(--dark) !important;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-cta::after { display: none !important; }

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  color: var(--white);
}
.navbar.scrolled .nav-lang { border-color: rgba(28,61,46,0.2); color: var(--jungle-deep); }
.nav-lang .active-lang { font-weight: 700; color: var(--gold); }

.nav-toggle {
  display: none;
  width: 32px; height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  position: absolute;
  height: 2px; width: 100%;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.navbar.scrolled .nav-toggle span { background: var(--jungle-deep); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 11px; background: var(--jungle-deep); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); bottom: 11px; background: var(--jungle-deep); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-jungle {
  background: var(--jungle-deep);
  color: var(--white);
}
.btn-jungle:hover {
  background: var(--jungle-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}
.hero-sub { min-height: 60vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg,
    rgba(28, 61, 46, 0.75) 0%,
    rgba(28, 61, 46, 0.45) 60%,
    rgba(28, 61, 46, 0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 6rem 5% 4rem;
  text-align: center;
}
.hero-content.left { text-align: left; margin: 0; padding-left: 5%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0.92;
  font-weight: 300;
  line-height: 1.6;
}
.hero-content.left .hero-subtitle { margin-left: 0; }

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-content.left .hero-ctas { justify-content: flex-start; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================================================
   Sections
   ========================================================================== */
section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-cream { background: var(--cream); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--jungle-deep); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.section-dark .section-eyebrow { color: var(--gold-light); }

/* ==========================================================================
   Service Cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--jungle-mid);
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--jungle-mid);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-link {
  color: var(--jungle-mid);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-link:hover { color: var(--gold); gap: 0.7rem; }

/* ==========================================================================
   Split layout (two-column: text + image)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse .split-text { order: 2; }
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p { color: var(--gray); font-size: 1.05rem; margin-bottom: 1rem; }
.section-dark .split-text p { color: rgba(255,255,255,0.8); }

.split-features {
  list-style: none;
  margin: 1.5rem 0;
}
.split-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--dark);
}
.section-dark .split-features li { color: rgba(255,255,255,0.9); }
.split-features .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--gold);
  margin-top: 2px;
}
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ==========================================================================
   Lifestyle Grid (3 photos)
   ========================================================================== */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.lifestyle-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3/4;
}
.lifestyle-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lifestyle-item:hover img { transform: scale(1.06); }
.lifestyle-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 5%;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(28, 61, 46, 0.92), rgba(28, 61, 46, 0.85));
}
.cta-banner-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Blog Preview
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card-img {
  height: 240px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.75rem; }
.blog-card-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Timeline / Steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   Info Box (ambasada, EDBM)
   ========================================================================== */
.info-box {
  background: var(--white);
  border-left: 4px solid var(--jungle-mid);
  padding: 2rem 2.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-card);
  margin: 2rem 0;
}
.info-box-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--jungle-deep);
  margin-bottom: 1rem;
  font-weight: 600;
}
.info-box dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.25rem;
  font-size: 0.95rem;
}
.info-box dt {
  font-weight: 600;
  color: var(--jungle-mid);
}
.info-box dd { color: var(--dark); }
.info-box .info-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sand-dark);
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

/* ==========================================================================
   Pitfalls / Warning list
   ========================================================================== */
.pitfalls {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.pitfalls li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 3px solid #C9501F;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-card);
}
.pitfalls .pitfall-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: #C9501F;
  margin-top: 2px;
}
.pitfalls p { margin: 0; color: var(--dark); }
.pitfalls strong { color: var(--jungle-deep); display: block; margin-bottom: 0.2rem; }

/* ==========================================================================
   Form
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jungle-deep);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark);
  background: var(--cream);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--jungle-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
}

.contact-side {
  padding: 2rem;
  background: var(--jungle-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
}
.contact-side h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.contact-side .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-side .contact-item:last-child { border-bottom: none; }
.contact-side .contact-item svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--gold-light);
  margin-top: 3px;
}
.contact-side .contact-item div { font-size: 0.95rem; }
.contact-side .contact-item a { color: var(--gold-light); }
.contact-side .contact-item a:hover { color: var(--white); }
.contact-side small { display: block; color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--sand-dark);
}
.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--jungle-deep);
  background: transparent;
  cursor: pointer;
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 1.5rem; }
.faq-answer p { color: var(--gray); line-height: 1.7; }

/* ==========================================================================
   Price blocks
   ========================================================================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.price-item {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  text-align: center;
  border-top: 3px solid var(--gold);
}
.price-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.price-item .price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--jungle-deep);
  font-weight: 600;
}
.price-item .price-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* ==========================================================================
   Prose content (rich text pages)
   ========================================================================== */
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.prose p {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.prose ul, .prose ol {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--jungle-deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; display: inline-block; }
.footer-brand .nav-logo .logo-accent { color: var(--gold-light); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  max-width: 280px;
  line-height: 1.6;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.footer ul a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .sources {
  font-style: italic;
}

/* ==========================================================================
   WhatsApp float button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: var(--transition);
  color: var(--white);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ==========================================================================
   Sticky sidebar CTA (visa/business pages)
   ========================================================================== */
.sticky-cta {
  position: sticky;
  top: 100px;
  background: var(--jungle-deep);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}
.sticky-cta h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.sticky-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse .split-text { order: 0; }
  .split-image img { height: 400px; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .with-sidebar { grid-template-columns: 1fr !important; }
  .sticky-cta { position: relative; top: auto; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-menu.active { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    color: var(--jungle-deep) !important;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--sand-dark);
    font-size: 1.1rem;
  }
  .nav-menu a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 1rem; }
  .nav-toggle { display: block; }
  .nav-lang { margin-top: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero { min-height: 85vh; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form { padding: 1.75rem; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Footer Legal / RGPD block
   ========================================================================== */
.footer-legal {
  padding: 1.25rem 0 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.footer-legal strong {
  color: var(--gold-light, #E2C785);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-legal a {
  color: var(--gold-light, #E2C785);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: #fff;
}
.footer-legal .legal-ids {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  opacity: 0.85;
}
.footer-legal .legal-ids span {
  white-space: nowrap;
}

/* Prose page (legal / privacy) */
.prose-legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 5% 5rem;
}
.prose-legal h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--jungle-deep, #1C3D2E);
  margin-bottom: 0.5rem;
}
.prose-legal .legal-meta {
  font-size: 0.85rem;
  color: var(--gray, #6B7280);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(28, 61, 46, 0.12);
}
.prose-legal h2 {
  font-family: 'Playfair Display', serif;
  color: var(--jungle-deep, #1C3D2E);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2.5rem 0 0.75rem;
}
.prose-legal p,
.prose-legal li {
  color: #374151;
  line-height: 1.75;
  font-size: 1rem;
}
.prose-legal ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}
.prose-legal li { margin-bottom: 0.4rem; }
.prose-legal .legal-box {
  background: #F5F0E8;
  border-left: 4px solid var(--gold, #C9A84C);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}
