/* =========================================
   BELDI TAPISSERIE — salonmarocainmoderne.com
   ========================================= */

:root {
  --black:      #0a0a0a;
  --dark:       #141414;
  --dark2:      #1e1e1e;
  --white:      #ffffff;
  --cream:      #f8f5f0;
  --cream2:     #f0ebe3;
  --gold:       #c9a96e;
  --gold-light: #e8d5a3;
  --gray:       #888888;
  --gray-light: #d4d4d4;
  --text:       #1a1a1a;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', 'Helvetica Neue', sans-serif;
  --radius:     4px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

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

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(30,25,20,0.35);
}
.btn-outline:hover {
  background: rgba(30,25,20,0.06);
  border-color: var(--dark);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark2); }

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { background: #20b858; }

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 5%;
  height: 70px;
  background: #fff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30,25,20,0.08);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--dark);
  text-transform: uppercase;
}
.logo span { color: var(--gold); }

nav ul,
.nav-menu ul {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
nav ul li a,
.nav-menu ul li a {
  color: rgba(30,25,20,0.7);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  white-space: nowrap;
}
nav ul li a:hover,
.nav-menu ul li a:hover { color: var(--gold); }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  margin-right: 1.2rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(30,25,20,0.35);
  padding: 0.2rem 0.1rem;
  transition: color var(--transition);
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active { color: var(--gold); }
.lang-sep { color: rgba(30,25,20,0.2); font-size: 0.7rem; }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

#hero::before { display: none; }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { z-index: 1; }
.hero-text .label { margin-bottom: 1.2rem; display: block; }
.hero-text h1 {
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text p {
  color: rgba(30,25,20,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 520px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2218 50%, #1a1510 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 6px;
  color: rgba(201,169,110,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-img-placeholder svg { opacity: 0.3; }

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge span { color: var(--white); font-size: 0.78rem; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── TRUST BAR ── */
#trust {
  background: var(--dark);
  padding: 2rem 5%;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 1rem;
  min-width: 0;
  overflow: hidden;
}

.trust-text {
  min-width: 0;
  overflow: hidden;
}

.trust-text strong,
.trust-text span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}

.trust-text strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-text span {
  color: var(--gray);
  font-size: 0.76rem;
}

/* ── SECTIONS COMMON ── */
section { padding: 6rem 5%; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .label { display: block; margin-bottom: 0.8rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── CATEGORIES ── */
#categories { background: var(--cream); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-4px); }

.cat-img {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.04); }

.cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.cat-overlay-box {
  background: rgba(14, 10, 6, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
}

.cat-overlay .label { color: var(--gold); margin-bottom: 0.4rem; }
.cat-overlay h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.8rem; }
.cat-overlay p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 1.2rem; line-height: 1.6; }
.cat-link {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.cat-card:hover .cat-link { gap: 0.8rem; }

/* ── BADGES ── */
#badges {
  background: var(--dark);
  padding: 3rem 5%;
}

.badges-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.badge-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 8px;
  padding: 1.5rem 1.6rem;
  transition: border-color var(--transition);
}

.badge-card:hover { border-color: rgba(201,169,110,0.4); }

.badge-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.badge-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.badge-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ── COMPARATIF ── */
#comparatif { background: var(--black); }
#comparatif .section-header h2 { color: var(--white); }
#comparatif .section-header .label { color: var(--gold); }
#comparatif .section-header p { color: rgba(255,255,255,0.5); }
#comparatif .section-header[style] h2 { color: var(--white); }

.density-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: var(--radius);
}

.density-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
  min-width: 640px;
}

.density-table thead th {
  background: rgba(255,255,255,0.04);
  padding: 1.2rem 1.4rem;
  text-align: center;
  color: var(--white);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  font-family: var(--font-body);
  font-weight: 500;
}

.density-table thead th:first-child { text-align: left; }

.density-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.density-table tbody tr:last-child { border-bottom: none; }
.density-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.density-table td {
  padding: 1rem 1.4rem;
  vertical-align: top;
  text-align: center;
}

.density-table td.row-label {
  text-align: left;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.density-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.density-badge.ferme { background: rgba(201,169,110,0.15); color: var(--gold); border: 1px solid rgba(201,169,110,0.3); }
.density-badge.equilibree { background: rgba(201,169,110,0.3); color: var(--gold-light); border: 1px solid rgba(201,169,110,0.5); }
.density-badge.moelleuse { background: var(--gold); color: var(--black); }

.density-table small { color: rgba(255,255,255,0.35); font-size: 0.72rem; }

.comp-list { list-style: none; text-align: left; display: inline-block; }
.comp-list li { font-size: 0.78rem; padding: 0.15rem 0 0.15rem 1rem; position: relative; }
.comp-list.plus li::before { content: '+'; position: absolute; left: 0; color: #6bcb77; font-weight: 700; }
.comp-list.minus li::before { content: '−'; position: absolute; left: 0; color: #e07070; font-weight: 700; }

/* ── FABRIC GRID ── */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.fabric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.fabric-card:hover { border-color: rgba(201,169,110,0.35); }

.fabric-swatch {
  height: 80px;
  width: 100%;
}

.fabric-swatch.velours       { background: linear-gradient(135deg, #4a2d6e, #7b4fa6); }
.fabric-swatch.chenille      { background: linear-gradient(135deg, #5c3d2e, #8b6244); }
.fabric-swatch.lin           { background: linear-gradient(135deg, #b5a48a, #d4c5a9); }
.fabric-swatch.microfibre    { background: linear-gradient(135deg, #2c4a3e, #3d6b5a); }
.fabric-swatch.velours-cotele { background: repeating-linear-gradient(90deg, #1a3a5c 0px, #1a3a5c 4px, #2a5a8c 4px, #2a5a8c 8px); }

.fabric-info { padding: 1.4rem; }

.fabric-info h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.fabric-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fabric-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.pro-label, .con-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.pro-label { color: #6bcb77; }
.con-label { color: #e07070; }

.pros ul, .cons ul { list-style: none; }
.pros ul li, .cons ul li { font-size: 0.75rem; color: rgba(255,255,255,0.6); padding: 0.1rem 0; }

.fabric-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.fabric-tags span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold);
  border-radius: 20px;
}

.fabric-card--cta {
  background: rgba(201,169,110,0.07);
  border-color: rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fabric-cta-inner {
  padding: 2rem 1.4rem;
  text-align: center;
}

.fabric-cta-inner h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin: 0.8rem 0 0.6rem;
}

.fabric-cta-inner p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── PROCESS ── */
#process { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
}

.step h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step p { color: var(--gray); font-size: 0.82rem; line-height: 1.6; }

.process-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── MATERIAUX ── */
#materiaux { background: var(--cream); }
#materiaux .section-header h2 { color: var(--text); }

.mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.mat-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: box-shadow var(--transition);
}

.mat-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.mat-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  line-height: 1;
}

.mat-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.mat-card > p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.mat-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mat-list li {
  font-size: 0.82rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
}

.mat-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 3px;
}

/* ── GALLERY ── */
#gallery { background: var(--black); }
#gallery .section-header h2 { color: var(--white); }
#gallery .section-header .label { color: var(--gold); }
#gallery .section-header p { color: rgba(255,255,255,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark2);
  aspect-ratio: 4/3;
  position: relative;
  transition: transform var(--transition);
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--cream); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  border: 1px solid var(--cream2);
  position: relative;
}

.testi-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testi-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--dark2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author-info strong { display: block; font-size: 0.88rem; }
.testi-author-info span { color: var(--gray); font-size: 0.78rem; }

/* ── B2B ── */
#b2b {
  background: var(--dark);
  padding: 6rem 5%;
}

.b2b-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.b2b-text .label { margin-bottom: 1rem; display: block; }
.b2b-text h2 { color: var(--white); margin-bottom: 1.2rem; }
.b2b-text p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 1rem; }

.b2b-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.b2b-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}
.b2b-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.b2b-visual {
  height: 400px;
  border-radius: 6px;
  border: 1px solid rgba(201,169,110,0.2);
  overflow: hidden;
  position: relative;
}
.b2b-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.b2b-visual:hover img { transform: scale(1.04); }

/* ── FINAL CTA ── */
#final-cta {
  background: var(--black);
  text-align: center;
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
}

#final-cta .label { display: block; margin-bottom: 1.2rem; }
#final-cta h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
#final-cta p {
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 3rem 5% 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── MOBILE NAV OVERLAY ── */
.nav-menu { transition: var(--transition); }

@media (max-width: 900px) {
  nav ul,
  .nav-menu ul { display: none; }
  .hamburger { display: flex; }

  .nav-menu.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0.5rem 0;
    gap: 0;
    z-index: 99;
    box-shadow: 0 12px 40px rgba(30,25,20,0.12);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 10px 10px;
    animation: dropDown 0.2s ease;
  }
  @keyframes dropDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-menu.open ul li {
    border-bottom: 1px solid rgba(30,25,20,0.05);
  }
  .nav-menu.open ul li:last-child { border-bottom: none; }
  .nav-menu.open ul li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.03em;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
  }
  .nav-menu.open ul li a:hover {
    background: rgba(201,169,110,0.07);
    color: var(--gold);
    padding-left: 1.8rem;
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 300px; order: -1; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .cat-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cat-card { min-height: 520px; aspect-ratio: unset; }
  .cat-overlay-box { padding: 1rem 1.2rem; }
  .cat-overlay h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
  .cat-overlay p { font-size: 0.82rem; margin-bottom: 0.9rem; }

  .badges-inner { grid-template-columns: 1fr; gap: 1rem; }
  .mat-grid { grid-template-columns: 1fr; }
  .fabric-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .process-steps::before { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }

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

  .b2b-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .b2b-visual { height: 250px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .fabric-grid { grid-template-columns: 1fr; }
  .fabric-pros-cons { grid-template-columns: 1fr; }
}
