/* ============================================================
   MOBILHOME-LANDES.FR — Design Moderne
   ============================================================ */

/* 1. VARIABLES
   ============================================================ */
:root {
  --c-primary:       #3d6b20;
  --c-primary-light: #91b54d;
  --c-primary-pale:  #edf5e0;
  --c-accent:        #f97e02;
  --c-accent-dark:   #d96800;
  --c-text:          #1c2e18;
  --c-text-soft:     #5a7050;
  --c-text-muted:    #8aaa80;
  --c-bg:            #ffffff;
  --c-bg-alt:        #f8fbf2;
  --c-border:        #daecc0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --header-h:  70px;
  --container: 1160px;
  --pad:       clamp(1rem, 4vw, 1.5rem);
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.12);
  --transition: .25s ease;
}

/* 2. RESET
   ============================================================ */
*, *::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: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; border: none; outline: none; width: 100%; }

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--c-text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-primary-light);
  display: block;
  margin-bottom: .6rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--c-text-soft); max-width: 60ch; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* 4. LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-alt { background: var(--c-bg-alt); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* 5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,126,2,.3);
}
.btn-primary:hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,126,2,.35);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-green {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(61,107,32,.25);
}
.btn-green:hover { background: #4d8228; transform: translateY(-2px); }
.btn-sm { padding: .5rem 1.2rem; font-size: .875rem; }

/* 6. HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.site-header.transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
}
.navbar {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
  transition: color var(--transition);
}
.logo-subtitle {
  font-size: .68rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.site-header.scrolled .logo-title { color: var(--c-text); text-shadow: none; }
.site-header.scrolled .logo-subtitle { color: var(--c-text-soft); }

.nav-menu { display: flex; align-items: center; gap: .2rem; }
.nav-menu li a {
  padding: .45rem .85rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: all var(--transition);
}
.nav-menu li a:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav-menu li a.active { color: #fff; background: rgba(255,255,255,.12); }
.site-header.scrolled .nav-menu li a { color: var(--c-text); }
.site-header.scrolled .nav-menu li a:hover { background: var(--c-primary-pale); color: var(--c-primary); }
.site-header.scrolled .nav-menu li a.active { color: var(--c-primary); background: var(--c-primary-pale); }
.nav-menu .btn-nav {
  background: var(--c-accent) !important;
  color: #fff !important;
  padding: .45rem 1.1rem;
  box-shadow: 0 2px 10px rgba(249,126,2,.25);
}
.nav-menu .btn-nav:hover { background: var(--c-accent-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--c-text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.open span { background: #fff !important; }

/* 7. HERO (homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,35,8,.78) 0%,
    rgba(25,55,12,.55) 55%,
    rgba(15,35,8,.38) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary-light);
  display: block;
}
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.7); }

/* 8. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,8,.82) 0%, rgba(15,35,8,.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-bottom: 2.5rem;
  padding-top: calc(var(--header-h) + 1rem);
}
.page-hero h1 { color: #fff; margin-bottom: .4rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.breadcrumb { display: flex; gap: .45rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,.7); }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .5; font-size: .7rem; }

/* 9. INFO BAR
   ============================================================ */
.info-bar { background: var(--c-primary); padding: .8rem 0; }
.info-bar-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.9); }
.info-item i { color: var(--c-primary-light); }
.info-item a { color: rgba(255,255,255,.9); }
.info-item a:hover { color: #fff; }

/* 10. ABOUT SECTION
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 200px; height: 200px;
  background: var(--c-primary-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text { font-size: .975rem; color: var(--c-text-soft); margin-bottom: 1.25rem; }
.about-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--c-text-soft);
}
.about-list i { color: var(--c-primary); margin-top: .15rem; flex-shrink: 0; }

/* 11. FEATURE CARDS
   ============================================================ */
.feature-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--c-primary);
  transition: background var(--transition), color var(--transition);
}
.feature-card:hover .feature-icon { background: var(--c-primary); color: #fff; }
.feature-title { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-text { font-size: .875rem; color: var(--c-text-soft); }

/* 12. ROOM CARDS
   ============================================================ */
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card-img { height: 240px; object-fit: cover; width: 100%; }
.room-card-body { padding: 1.75rem; }
.room-card-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-primary-light); margin-bottom: .5rem; display: block; }
.room-card-title { font-size: 1.2rem; margin-bottom: .75rem; }
.room-features { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.room-feature { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--c-text-soft); }
.room-feature i { color: var(--c-primary); }
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}

/* 13. OFFER CARDS
   ============================================================ */
.offer-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--c-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.offer-badge {
  flex-shrink: 0;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
.offer-title { font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.offer-text { font-size: .875rem; color: var(--c-text-soft); }

/* 14. TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: .75rem; left: 1.5rem;
  font-size: 4.5rem;
  font-family: var(--font-heading);
  color: var(--c-primary-pale);
  line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--c-text-soft); margin-bottom: 1.25rem; padding-top: 1.75rem; font-size: .95rem; }
.testimonial-author { font-weight: 600; font-size: .875rem; color: var(--c-text); }
.stars { color: #f59e0b; font-size: .85rem; margin-bottom: .5rem; }

/* 15. BLOG CARDS
   ============================================================ */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 220px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 1.75rem; }
.blog-date { font-size: .8rem; color: var(--c-text-muted); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.blog-date i { color: var(--c-primary-light); }
.blog-title { font-size: 1.2rem; margin-bottom: .75rem; }
.blog-excerpt { font-size: .875rem; color: var(--c-text-soft); margin-bottom: 1.25rem; }
.blog-link { color: var(--c-primary); font-weight: 600; font-size: .875rem; display: inline-flex; align-items: center; gap: .4rem; transition: gap var(--transition); }
.blog-link:hover { gap: .8rem; }

/* Article page */
.article-header { max-width: 760px; margin: 0 auto 2.5rem; }
.article-body { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.85; }
.article-body h2, .article-body h3 { margin-top: 2rem; margin-bottom: 1rem; }
.article-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body ul li { margin-bottom: .4rem; color: var(--c-text-soft); }
.article-body p { color: var(--c-text-soft); }

/* 16. FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--c-text); margin-bottom: .45rem; }
.form-required { color: var(--c-accent); }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--c-text);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 3px rgba(145,181,77,.15);
  outline: none;
}
.form-control::placeholder { color: var(--c-text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235a7050' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: var(--c-primary-pale);
  border-radius: var(--radius);
  border: 1.5px solid var(--c-border);
}
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: .1rem; accent-color: var(--c-primary); }
.form-check label { font-size: .875rem; color: var(--c-text-soft); cursor: pointer; }
.form-msg {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  display: none;
}
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.form-msg.error   { background: #fde8e8; color: #b71c1c; border: 1px solid #ef9a9a; display: block; }

/* 17. CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.65fr; gap: 3rem; align-items: start; }
.contact-info-card {
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.contact-info-card h3 { color: #fff; margin-bottom: .4rem; }
.contact-info-sub { font-size: .875rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .9rem;
}
.contact-info-label { font-size: .72rem; color: rgba(255,255,255,.6); margin-bottom: .1rem; }
.contact-info-value { font-size: .9rem; color: #fff; }
.contact-info-value a { color: #fff; }
.contact-form-card { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-card h3 { margin-bottom: .4rem; }
.contact-form-sub { font-size: .875rem; color: var(--c-text-soft); margin-bottom: 2rem; }

/* 18. RÉSERVATION PAGE (mobil-homes)
   ============================================================ */
.mobil-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 2.5rem; }
.mobil-card-header {
  background: var(--c-primary);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.mobil-card-title { font-size: 1.3rem; font-family: var(--font-heading); color: #fff; margin: 0; }
.mobil-capacity { display: flex; align-items: center; gap: .5rem; font-size: .875rem; opacity: .9; }
.mobil-card-body { padding: 2rem; }
.mobil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.mobil-img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); }
.spec-list { display: flex; flex-direction: column; gap: .75rem; }
.spec-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; }
.spec-item i { color: var(--c-primary); width: 18px; margin-top: .1rem; flex-shrink: 0; }
.spec-label { font-weight: 600; color: var(--c-text); }
.spec-value { color: var(--c-text-soft); }

/* 19. REGION CARDS
   ============================================================ */
.region-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 2rem;
}
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.region-card:nth-child(even) { direction: rtl; }
.region-card:nth-child(even) > * { direction: ltr; }
.region-card-img { height: 280px; object-fit: cover; width: 100%; }
.region-card-body { padding: 2rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.region-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-accent); margin-bottom: .6rem; }
.region-card-title { font-size: 1.35rem; margin-bottom: .75rem; }
.region-card-text { font-size: .9rem; color: var(--c-text-soft); }

/* 20. MAP
   ============================================================ */
.map-embed { width: 100%; height: 420px; border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }

/* 21. LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; font-size: .975rem; color: var(--c-text-soft); }
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.4rem; color: var(--c-text); }
.legal-content h3 { margin-top: 1.75rem; margin-bottom: .75rem; font-size: 1.1rem; color: var(--c-text); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: .4rem; }
.legal-content a { color: var(--c-primary); text-decoration: underline; }
.legal-content p { margin-bottom: 1rem; }

/* 22. FOOTER
   ============================================================ */
.site-footer { background: #111d0f; color: rgba(255,255,255,.7); padding-top: 4rem; }
.footer-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-col h4 { font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--c-primary-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: .75rem; }
.footer-contact-item i { color: var(--c-primary-light); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-text { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom-text a { color: rgba(255,255,255,.35); }
.footer-bottom-text a:hover { color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* 23. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .6s ease forwards; }
.delay-1   { animation-delay: .1s; opacity: 0; }
.delay-2   { animation-delay: .2s; opacity: 0; }
.delay-3   { animation-delay: .3s; opacity: 0; }
.delay-4   { animation-delay: .4s; opacity: 0; }

/* 24. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .region-card { grid-template-columns: 1fr; }
  .region-card:nth-child(even) { direction: ltr; }
  .region-card-img { height: 220px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(15,30,8,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1050;
  }
  .nav-menu.open { opacity: 1; pointer-events: auto; }
  .nav-menu li a { font-size: 1.15rem; padding: .75rem 1.5rem; color: rgba(255,255,255,.9) !important; background: transparent !important; }
  .nav-menu li a:hover { background: rgba(255,255,255,.08) !important; color: #fff !important; }
  .nav-menu .btn-nav { background: var(--c-accent) !important; color: #fff !important; }

  .hero { min-height: 90vh; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { height: 280px; }
  .about-img-accent { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .mobil-grid { grid-template-columns: 1fr; }
  .info-bar-inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .page-hero { height: 240px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .offer-card { flex-direction: column; text-align: center; }
}
