/* =========================================================
   AWARA — Design system
   Palette : vert forêt profond + or, fond papier chaud
   Typo : Fraunces (titres) + Inter (texte)
========================================================= */

:root {
  --forest-900: #0b2e26;
  --forest-800: #0e3b31;
  --forest-700: #144a3d;
  --forest-600: #1c5c4b;
  --gold-500: #c8973c;
  --gold-400: #dcb45f;
  --gold-100: #f4e6c8;
  --paper-100: #faf7f0;
  --paper-200: #f3ede0;
  --ink-900: #14201c;
  --ink-700: #3a463f;
  --ink-500: #667169;
  --line: rgba(20, 32, 28, 0.1);
  --white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(11, 46, 38, 0.06);
  --shadow-md: 0 12px 40px rgba(11, 46, 38, 0.12);
  --shadow-lg: 0 24px 70px rgba(11, 46, 38, 0.18);

  --container: 1180px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  background: var(--paper-100);
  color: var(--ink-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-900);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.lede {
  font-size: 1.1rem;
  color: var(--ink-700);
  max-width: 62ch;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--forest {
  background: var(--forest-900);
  color: var(--paper-100);
}
.section--forest h2, .section--forest h3 { color: var(--paper-100); }
.section--forest .lede { color: rgba(250, 247, 240, 0.75); }
.section--paper2 { background: var(--paper-200); }

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--forest-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }
.btn-outline {
  border-color: rgba(20, 32, 28, 0.25);
  color: var(--forest-900);
}
.btn-outline:hover { border-color: var(--forest-900); background: rgba(20, 32, 28, 0.04); }
.btn-outline-light {
  border-color: rgba(250, 247, 240, 0.35);
  color: var(--paper-100);
}
.btn-outline-light:hover { border-color: var(--paper-100); background: rgba(250, 247, 240, 0.08); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--forest-900);
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.footer-icon {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .brand-logo { height: 36px; }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--forest-900); }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest-900);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--paper-100);
  z-index: 99;
  padding: 28px 24px;
  overflow-y: auto;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--forest-900);
}
.nav-mobile .nav-actions { margin-top: 28px; flex-direction: column; align-items: flex-start; gap: 14px; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions .nav-tel { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--forest-900);
  color: var(--paper-100);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 151, 60, 0.28), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(28, 92, 75, 0.55), transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  padding-block: clamp(72px, 12vw, 140px) clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-block: 20px 20px; }
.hero .lede { color: rgba(250, 247, 240, 0.78); font-size: 1.15rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-eyebrow { color: var(--gold-400); }
.hero-eyebrow::before { background: var(--gold-400); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.hero-stat {
  padding: 18px 20px;
  border: 1px solid rgba(250, 247, 240, 0.18);
  border-radius: var(--radius-md);
  background: rgba(250, 247, 240, 0.05);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-400);
}
.hero-stat span { font-size: 0.85rem; color: rgba(250, 247, 240, 0.7); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--forest-700), var(--forest-800) 55%, var(--forest-900));
  border: 1px solid rgba(250, 247, 240, 0.15);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual .route-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visual .visual-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(250, 247, 240, 0.92);
  color: var(--forest-900);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
}
.visual-card strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.visual-card span { font-size: 0.82rem; color: var(--ink-500); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; }
}

/* ---------- Marquee / trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-200);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  padding-block: 26px;
  font-size: 0.85rem;
  color: var(--ink-500);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--forest-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-700); font-size: 0.96rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest-800);
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-500);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--ink-700); font-size: 0.92rem; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: linear-gradient(160deg, var(--paper-200), var(--gold-100));
  border: 1px solid var(--line);
  position: relative;
}
.split-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-700);
}
.check-list li:last-child { border-bottom: none; }
.check-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold-500); margin-top: 2px; }

/* ---------- Stat band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 900px) { .stat-band { grid-template-columns: 1fr 1fr; } }
.stat-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-400);
}
.stat-band span { font-size: 0.85rem; color: rgba(250, 247, 240, 0.7); }

/* ---------- Testimonial ---------- */
.quote {
  background: var(--paper-200);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--forest-900);
  line-height: 1.4;
}
.quote footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--ink-500);
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-900));
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  color: var(--paper-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(250, 247, 240, 0.75); }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--forest-900); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-900);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200, 151, 60, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--ink-500); }
.form-success {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(28, 92, 75, 0.1);
  border: 1px solid var(--forest-600);
  color: var(--forest-800);
  font-weight: 600;
  margin-top: 18px;
}
.form-success.is-visible { display: block; }

/* ---------- Contact cards ---------- */
.contact-info { display: grid; gap: 18px; }
.contact-info .card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; }
.contact-info .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info p { font-size: 0.92rem; }

/* ---------- Breadcrumb / page header ---------- */
.page-header {
  background: var(--forest-900);
  color: var(--paper-100);
  padding-block: 56px 64px;
}
.page-header .eyebrow { color: var(--gold-400); }
.page-header .eyebrow::before { background: var(--gold-400); }
.page-header h1 { color: var(--white); margin-top: 14px; }
.page-header .lede { color: rgba(250, 247, 240, 0.78); margin-top: 14px; }
.breadcrumb { font-size: 0.85rem; color: rgba(250, 247, 240, 0.6); }
.breadcrumb a { color: rgba(250, 247, 240, 0.85); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-900);
  color: rgba(250, 247, 240, 0.7);
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--paper-100);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-grid a, .footer-grid p { font-size: 0.92rem; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-brand p { margin-top: 14px; max-width: 32ch; font-size: 0.88rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
}

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--forest-900);
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
