@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --charcoal: #12100E;
  --charcoal-light: #1E1B18;
  --charcoal-mid: #2A2622;
  --copper: #B87333;
  --copper-light: #D4954A;
  --copper-glow: rgba(184, 115, 51, 0.35);
  --bone: #F2EDE4;
  --bone-dark: #E5DDD0;
  --text: #F2EDE4;
  --text-muted: rgba(242, 237, 228, 0.65);
  --text-dark: #12100E;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--bone); }

.container { width: min(1200px, 92vw); margin: 0 auto; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: 0.02em; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-desc { color: var(--text-muted); max-width: 620px; font-size: 1.05rem; }
.copper-text { color: var(--copper-light); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary {
  background: var(--copper);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--copper-light); color: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 32px var(--copper-glow); }
.btn-outline {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(184, 115, 51, 0.5);
}
.btn-outline:hover { border-color: var(--copper); color: var(--copper-light); }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(18, 16, 14, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184, 115, 51, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.04em;
}
.logo:hover { color: var(--copper-light); }
.logo-img { width: 36px; height: 36px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; list-style: none; gap: 28px; }
.nav-list a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width var(--transition);
}
.nav-list a:hover, .nav-list a.active { color: var(--bone); }
.nav-list a.active::after, .nav-list a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; border: 1px solid rgba(184,115,51,0.3); }
.lang-btn {
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active { background: var(--copper); color: var(--charcoal); }
.lang-btn:hover:not(.active) { color: var(--bone); }
.header-cta {
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--charcoal);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.header-cta:hover { background: var(--copper-light); color: var(--charcoal); }
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  cursor: pointer;
  padding: 8px;
}
.menu-btn svg { width: 24px; height: 24px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,16,14,0.92) 0%, rgba(18,16,14,0.6) 50%, rgba(18,16,14,0.85) 100%);
}
.hero-motif {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}
.hero-motif svg { width: 100%; height: 100%; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(184,115,51,0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 .line2 { display: block; color: var(--copper-light); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(184,115,51,0.2);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--copper-light);
  margin-bottom: 4px;
}
.hero-stat span { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-visual { position: relative; }
.hero-image-frame {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  border: 1px solid rgba(184,115,51,0.3);
}
.hero-image-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--copper);
  border-right: 2px solid var(--copper);
}
.hero-float {
  position: absolute;
  background: rgba(18,16,14,0.9);
  border: 1px solid rgba(184,115,51,0.35);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.hero-float-1 { bottom: 40px; left: -30px; }
.hero-float-2 { top: 40px; right: -20px; }
.hero-float-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-float-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--copper-light); }
.hero-float-change { font-size: 0.75rem; color: #6BC97A; margin-top: 4px; }
.copper-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.5;
}
.copper-line-1 { top: 20%; left: 0; right: 0; }
.copper-line-2 { bottom: 30%; left: 10%; width: 40%; }

/* ─── Marquee ─── */
.marquee-wrap {
  background: var(--copper);
  color: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
  clip-path: polygon(0 8px, 100% 0, 100% calc(100% - 8px), 0 100%);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-right: 48px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── Sections ─── */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }
.section-diagonal {
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  background: var(--charcoal-light);
}
.section-bone {
  background: var(--bone);
  color: var(--text-dark);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}
.section-bone .section-label { color: var(--copper); }
.section-bone .section-desc { color: rgba(18,16,14,0.65); }
.section-bone h2, .section-bone h3 { color: var(--charcoal); }

/* ─── Cards ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--charcoal-light);
  border: 1px solid rgba(184,115,51,0.15);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.card:hover {
  border-color: rgba(184,115,51,0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,115,51,0.4);
  margin-bottom: 20px;
  color: var(--copper);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; }
.card-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}
.section-bone .card {
  background: #fff;
  border-color: rgba(184,115,51,0.2);
}
.section-bone .card p { color: rgba(18,16,14,0.6); }

/* ─── Tabs ─── */
.tabs-wrap { max-width: 1000px; margin: 0 auto; }
.tabs-nav {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(184,115,51,0.2);
}
.tab-btn {
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}
.tab-btn.active { color: var(--copper-light); }
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--copper);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tab-content-grid img {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  border: 1px solid rgba(184,115,51,0.25);
}
.tab-features { list-style: none; margin: 20px 0; }
.tab-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.tab-features svg { flex-shrink: 0; color: var(--copper); margin-top: 2px; }

/* ─── Process ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(184,115,51,0.15);
  position: relative;
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--copper);
  opacity: 0.4;
  margin-bottom: 12px;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── Testimonials ─── */
.testimonial-slider { overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
  min-width: 100%;
  padding: 48px;
  text-align: center;
}
.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--bone);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.testimonial-author { font-weight: 700; color: var(--copper-light); }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,115,51,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--copper); }

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal-mid) 0%, var(--charcoal) 100%);
  border: 1px solid rgba(184,115,51,0.25);
  padding: 64px;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.7) 0%, var(--charcoal) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; text-transform: uppercase; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }

/* ─── Split layout ─── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-grid img {
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  border: 1px solid rgba(184,115,51,0.25);
}
.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(184,115,51,0.1);
  font-size: 0.95rem;
}
.feature-list svg { flex-shrink: 0; color: var(--copper); margin-top: 3px; }

/* ─── Stats row ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
}
.stat-box {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(184,115,51,0.2);
}
.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--copper-light);
  margin-bottom: 8px;
}
.stat-box span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.section-bone .stat-box { border-color: rgba(184,115,51,0.25); }
.section-bone .stat-box span { color: rgba(18,16,14,0.55); }

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  filter: grayscale(30%);
  transition: filter var(--transition);
}
.team-card:hover img { filter: grayscale(0%); }
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.82rem; color: var(--copper); letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184,115,51,0.15);
}
.contact-info-item svg { flex-shrink: 0; color: var(--copper); width: 22px; height: 22px; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--copper); margin-bottom: 4px; }
.contact-form {
  background: var(--charcoal-light);
  border: 1px solid rgba(184,115,51,0.2);
  padding: 40px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--charcoal);
  border: 1px solid rgba(184,115,51,0.2);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--copper);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-check input { margin-top: 4px; accent-color: var(--copper); }
.form-msg {
  display: none;
  padding: 14px;
  margin-top: 16px;
  font-size: 0.9rem;
}
.form-msg.show { display: block; }
.form-msg.success { background: rgba(107,201,122,0.15); border: 1px solid #6BC97A; color: #6BC97A; }
.form-msg.error { background: rgba(220,80,80,0.15); border: 1px solid #DC5050; color: #DC5050; }

/* ─── Policy pages ─── */
.policy-page { padding: calc(var(--header-h) + 60px) 0 80px; }
.policy-page h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 32px; text-transform: uppercase; }
.policy-content {
  background: var(--charcoal-light);
  border: 1px solid rgba(184,115,51,0.15);
  padding: 48px;
  max-width: 900px;
}
.policy-content h3, .policy-content h4 { margin: 28px 0 12px; font-size: 1.1rem; color: var(--copper-light); }
.policy-content p { margin-bottom: 16px; color: var(--text-muted); font-size: 0.92rem; }
.policy-content ul, .policy-content ol { margin: 12px 0 16px 24px; color: var(--text-muted); font-size: 0.92rem; }
.policy-content li { margin-bottom: 8px; }
.policy-content a { color: var(--copper-light); }
.policy-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.85rem; }
.policy-content th, .policy-content td { border: 1px solid rgba(184,115,51,0.25); padding: 10px 12px; text-align: left; }
.policy-content th { background: rgba(184,115,51,0.1); color: var(--copper-light); }

/* ─── Footer ─── */
.footer {
  background: var(--charcoal-light);
  border-top: 1px solid rgba(184,115,51,0.15);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin: 16px 0; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.88rem; }
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(184,115,51,0.1);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--copper-light); }

/* ─── Cookie bar ─── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: var(--charcoal-light);
  border-top: 1px solid rgba(184,115,51,0.3);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: none; } }
.cookie-bar p { font-size: 0.85rem; color: var(--text-muted); max-width: 720px; }
.cookie-bar a { color: var(--copper-light); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-accept { background: var(--copper); color: var(--charcoal); }
.cookie-accept:hover { background: var(--copper-light); }
.cookie-reject { background: transparent; color: var(--text-muted); border: 1px solid rgba(184,115,51,0.3); }
.cookie-reject:hover { color: var(--bone); border-color: var(--copper); }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Stagger text ─── */
.stagger-line { display: block; overflow: hidden; }
.stagger-line span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-line.visible span { transform: none; }

/* ─── Motif decorations ─── */
.motif-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
}
.motif-bg svg { width: 100%; height: 100%; }

/* ─── Product cards (investments/credit) ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(184,115,51,0.15);
  overflow: hidden;
  transition: all var(--transition);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.product-card:hover { border-color: rgba(184,115,51,0.4); transform: translateY(-4px); }
.product-card img { width: 100%; height: 180px; object-fit: cover; }
.product-card-body { padding: 28px; }
.product-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.product-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.product-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(184,115,51,0.3);
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid, .split-grid, .tab-content-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(18,16,14,0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(184,115,51,0.2);
  }
  .nav-list.open { display: flex; }
  .menu-btn { display: block; }
  .header-cta { display: none; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .process-grid, .product-grid, .team-grid, .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .policy-content { padding: 24px; }
  .cookie-bar { flex-direction: column; text-align: center; }
}
