/* ============================================
   SILLAGE ROYAL — International Style (.com)
   Version 3.0 — Corporate / Partnership
   ============================================ */

/* --- Variables --- */
:root {
  --bg-primary: #0A1A0F;
  --bg-secondary: #0D2818;
  --bg-card: #11261A;
  --bg-nav: #07120A;
  --text-primary: #F5F0E8;
  --text-secondary: #C4BBAF;
  --text-muted: #8A847A;
  --accent: #C9A96E;
  --accent-hover: #D8BD82;
  --accent-soft: rgba(201, 169, 110, 0.12);
  --accent-subtle: rgba(201, 169, 110, 0.06);
  --border: rgba(201, 169, 110, 0.20);
  --border-light: rgba(245, 240, 232, 0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-title: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

ul { list-style: none; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--bg-primary);
  padding: .6rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
}

.nav-links a.nav-cta:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

/* --- Hamburger (mobile) --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.overlay.open { display: block; opacity: 1; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(10, 26, 15, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 90%, rgba(201, 169, 110, 0.04) 0%, transparent 40%);
  background-color: var(--bg-primary);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: .4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
  color: var(--text-primary);
}

.hero h1 span {
  color: var(--accent);
}

.hero .hero-sub {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero .hero-tagline {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--accent);
  opacity: 0.7;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Hero Stats --- */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.hero-stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.2rem 2.8rem;
  font-size: 1.15rem;
}

/* --- Sections générales --- */
.section {
  padding: 100px 0;
}

.bg-alt {
  background: var(--bg-secondary);
}

.bg-card-alt {
  background: var(--accent-subtle);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-header p {
  color: var(--te
...(truncated)...
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 169, 110, 0.35);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.pillar-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: var(--accent);
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- About Preview (Home) --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.about-preview-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-preview-text .highlight {
  color: var(--accent);
  font-weight: 500;
}

.about-preview-map {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-icon { font-size: 4rem; margin-bottom: 1rem; }
.map-text { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.map-text strong { color: var(--text-primary); }

/* --- Trust Strip --- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 1.5rem 1rem;
}

.trust-item .num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.trust-item .label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* --- Vision Statement --- */
.vision-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.vision-block blockquote {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  font-style: italic;
  position: relative;
}

.vision-block blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 130px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-hero .badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero p {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- About Page --- */
.about-story {
  max-width: 800px;
  margin: 0 auto;
}

.about-story h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.about-story p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-story p strong {
  color: var(--text-primary);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.value-card .icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.timeline-content h4 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Expertise Page --- */
.expertise-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  transition: all var(--transition);
}

.expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 169, 110, 0.35);
}

.expertise-card .icon-box {
  width: 80px;
  height: 80px;
  background: var(--accent-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.expertise-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.expertise-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.expertise-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.expertise-card ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
}

.expertise-card ul li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--accent);
}
/* --- Contact Page --- */
.contact-hero {
  padding: 130px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-light);
}

.contact-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-hero .badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.contact-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-main {
  padding: 60px 0 80px;
}

/* Form wrapper — single column, centered */
.contact-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Each cartouche = a card around form fields */
.form-cartouche {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  transition: border-color var(--transition);
}

.form-cartouche:hover {
  border-color: rgba(201, 169, 110, 0.35);
}

.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.form-group .required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-primary);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-send:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.btn-wrap {
  text-align: center;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success .check {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.form-success h3 {
  font-family: var(--font-title);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.form-success p {
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
}

/* Info strip — horizontal row of 4 items below form */
.info-strip {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.info-strip-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: border-color var(--transition);
}

.info-strip-item:hover {
  border-color: rgba(201, 169, 110, 0.35);
}

.info-strip-icon {
  font-size: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 7px;
  flex-shrink: 0;
}

.info-strip-item h4 {
  font-family: var(--font-title);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.info-strip-item p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.info-strip-item a {
  font-size: 0.78rem;
  color: var(--accent);
  word-break: break-all;
  line-height: 1.4;
  display: block;
}

.info-strip-item a:hover {
  color: var(--accent-hover);
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 320px;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-links h4 {
  color: var(--text-primary);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-links a {
  color: var(--text-muted);
  font-size: .85rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: .8rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-preview-map {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-nav);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    padding: 80px 2rem 2rem;
    gap: 1.8rem;
    transition: right .35s ease;
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open { right: 0; }

  .nav-links a.nav-cta {
    width: 100%;
    text-align: center;
    padding: .75rem;
  }

  .hamburger { display: flex; }

  .section { padding: 70px 0; }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .expertise-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .expertise-card .icon-box {
    margin: 0 auto;
  }

  .expertise-card ul {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .form-cartouche {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 120px 0 80px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .info-str
...(truncated)...