/* ═══════════════════════════════════════════════
   Le Geai Informatique — Style principal
   ═══════════════════════════════════════════════ */

:root {
  --or-sable: #af8f3c;
  --or-sable-dim: rgba(175, 143, 60, 0.15);
  --rouge-antique: #b74d34;
  --vert-minuit: #1f2c23;
  --lune-lait: #f7f0de;
  --lune-lait-soft: #faf6ec;
  --ink: #1a1714;
  --muted: #7a7168;
  --muted-light: #a59d93;
  --shadow: rgba(31, 44, 35, 0.08);
  --shadow-deep: rgba(31, 44, 35, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', serif;
  font-weight: 400;
  background: var(--lune-lait);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
  font-size: 17px;
}

::selection { background: var(--or-sable-dim); color: var(--ink); }

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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1.2rem;
  background: var(--vert-minuit);
  color: var(--lune-lait);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.5rem;
}

/* ── 404 PAGE ── */
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.error-ornament {
  font-family: 'UnifrakturCook', cursive;
  font-size: 1.4rem;
  color: var(--or-sable);
  opacity: 0.3;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}

.error-code {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--ink);
  line-height: 0.9;
  margin-bottom: 1rem;
  opacity: 0.08;
}

.error-title {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.error-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 450px;
  margin-bottom: 2.5rem;
}

.error-links { margin-bottom: 3rem; }

.error-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.error-nav-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  width: 100%;
  margin-bottom: 0.5rem;
}

.error-nav a {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--or-sable);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.error-nav a:hover { opacity: 0.6; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 100;
  background: rgba(247, 240, 222, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(31, 44, 35, 0.06);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 0.9;
  gap: 0;
}

.nav-brand-top {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.nav-brand-bottom {
  font-family: 'Crimson Pro', serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-top: -1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

/* ── NAV BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.nav-burger:hover { transform: scale(1.08); }

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.nav-burger span:nth-child(2) {
  width: 18px;
  margin-left: auto;
}

nav.nav-open .nav-burger span {
  background: var(--or-sable);
}

nav.nav-open .nav-burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

nav.nav-open .nav-burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

nav.nav-open .nav-burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open { overflow: hidden; }

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--vert-minuit); }
.nav-links a.active {
  color: var(--or-sable);
  border-bottom: 1px solid var(--or-sable);
  padding-bottom: 2px;
}

/* ── NAV BOTTOM-START (landing only) ── */
nav.nav-bottom-start {
  top: 0;
  bottom: auto;
  border-bottom: 1px solid transparent;
  will-change: transform;
  transform: translateY(calc(100vh - 100%));
  transition: border-color 0.3s ease;
}

nav.nav-bottom-start.nav-arrived {
  border-bottom-color: rgba(31, 44, 35, 0.06);
}

nav.nav-skip {
  top: 0;
  bottom: auto;
  border-top: none;
  border-bottom: 1px solid rgba(31, 44, 35, 0.06);
}

/* ── HERO (pages internes) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 4rem;
  max-width: 880px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-family: 'IM Fell DW Pica', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 em { font-style: italic; color: var(--or-sable); }

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.4rem;
  background: var(--vert-minuit);
  color: var(--lune-lait);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-cta:hover {
  background: var(--or-sable);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px var(--shadow-deep);
}

.hero-cta .arrow { transition: transform 0.3s ease; }
.hero-cta:hover .arrow { transform: translateX(4px); }

/* ── LANDING HERO (index.html) ── */
.landing-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 2rem 6rem;
  position: relative;
}

.landing-hero-title {
  font-family: 'IM Fell DW Pica', serif;
  font-weight: 400;
  line-height: 0.88;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.landing-hero-title .line1 {
  display: block;
  font-size: clamp(5rem, 14vw, 12rem);
  color: var(--ink);
  letter-spacing: 0.02em;
}

.landing-hero-title .line2 {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-top: 0.2rem;
}

.landing-hero-provocation {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.8rem;
  max-width: 700px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.landing-hero-value {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.landing-hero-scroll-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  width: 1px;
  height: 48px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.5s forwards;
}

.landing-hero-scroll-line::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--or-sable);
  animation: scrollLine 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.divider::before, .divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--or-sable);
  opacity: 0.5;
}

.divider-symbol {
  font-family: 'UnifrakturCook', cursive;
  font-size: 1.2rem;
  color: var(--or-sable);
  opacity: 0.6;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'IM Fell DW Pica', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

/* ── DEVISE ── */
.devise {
  background: var(--ink);
  color: var(--lune-lait);
  text-align: center;
  padding: 4.5rem 2rem;
}

.devise blockquote {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

.devise .devise-latin {
  font-family: 'UnifrakturCook', cursive;
  display: block;
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--or-sable);
  margin-top: 1.5rem;
}

/* ── UNIVERSE HEADER ── */
.universe-header {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--vert-minuit);
  color: var(--lune-lait);
}

.universe-header h2 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--lune-lait);
}

.universe-header p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(247, 240, 222, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* ── PAGE HERO (sous-pages) ── */
.page-hero {
  background: var(--vert-minuit);
  color: var(--lune-lait);
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.page-hero h1 {
  font-family: 'IM Fell DW Pica', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--lune-lait);
}

.page-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(247, 240, 222, 0.6);
  max-width: 550px;
  margin: 0 auto;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.card {
  background: var(--lune-lait-soft);
  border: 1px solid rgba(31, 44, 35, 0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--or-sable);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}

.card-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-bottom: 1rem;
}

.card-name {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.card-desc {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 300;
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.7;
}

.card-price {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 2rem;
  color: var(--vert-minuit);
  margin-bottom: 1.5rem;
}

.card-price span {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  font-family: 'Crimson Pro', serif;
}

.card-price-note {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.3rem;
  color: var(--or-sable);
  font-style: italic;
}

.card-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-features li {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.card-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--or-sable);
  font-weight: 600;
}

/* ── SECTION NOTE ── */
.section-note {
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 2rem 2.5rem;
  background: var(--lune-lait-soft);
  border: 1px solid rgba(31, 44, 35, 0.08);
  border-left: 3px solid var(--or-sable);
  text-align: left;
}

.section-note h3 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.section-note p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.section-note p:last-child { margin-bottom: 0; }

.section-note strong {
  color: var(--or-sable);
  font-weight: 600;
}

/* ── SERVICE SUMMARIES (landing) ── */
.service-summaries {
  max-width: 1000px;
  margin: 0 auto;
}

.service-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(31, 44, 35, 0.08);
  transition: all 0.35s ease;
  text-align: left;
}

.service-summary:first-child {
  border-top: 1px solid rgba(31, 44, 35, 0.08);
}

.service-summary:hover {
  background: var(--lune-lait-soft);
  padding-left: 2.8rem;
}

.service-summary h3 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.service-summary p {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 550px;
  line-height: 1.6;
}

.service-summary-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or-sable);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: 2rem;
}

.service-summary-link:hover { transform: translateX(4px); }

/* ── HOME SERVICE GROUPS (landing page cards) ── */
.home-services { max-width: 1000px; margin: 0 auto; }

.home-service-group { margin-bottom: 3.5rem; }
.home-service-group:last-child { margin-bottom: 0; }

.home-service-header {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--or-sable);
  padding-bottom: 0.8rem;
}

.home-service-header h3 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.5rem;
}

.home-service-footer {
  text-align: center;
  margin-top: 1.2rem;
}

.home-service-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lune-lait);
  background: var(--vert-minuit);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.55rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.35s ease;
}

.home-service-link:hover {
  background: var(--or-sable);
  color: var(--ink);
  transform: translateX(4px);
}

.card-compact { padding: 1.8rem 1.5rem; }
.card-compact .card-desc {
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ── RECOMMENDED CARD ── */
.card-recommended {
  border-color: rgba(175, 143, 60, 0.2);
  box-shadow: 0 8px 32px var(--shadow);
}

.card-recommended::before {
  transform: scaleX(1);
}

.card-badge-rec {
  position: absolute;
  top: 0;
  right: 1.5rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: var(--or-sable);
  color: var(--ink);
  z-index: 2;
}

/* ── COMPARISON TABLE ── */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 3rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.compare-table thead th {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 1rem 1rem 0.8rem;
  border-bottom: 2px solid var(--or-sable);
  color: var(--ink);
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
  font-family: 'Crimson Pro', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-sable);
}

.compare-table tbody td {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  border-bottom: 1px solid rgba(31, 44, 35, 0.06);
  text-align: center;
}

.compare-table tbody td:first-child {
  text-align: left;
  color: var(--ink);
  font-weight: 400;
}

.compare-table .c-yes {
  color: var(--or-sable);
  font-weight: 600;
  font-size: 1.1rem;
}

.compare-table .c-no {
  color: var(--muted-light);
  opacity: 0.35;
}

.compare-table .c-text {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.82rem;
}

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

.discount-card {
  background: var(--lune-lait-soft);
  border: 1px solid rgba(31, 44, 35, 0.08);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.discount-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--or-sable);
}

.discount-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}

.discount-value {
  display: block;
  font-family: 'IM Fell DW Pica', serif;
  font-size: 3.2rem;
  color: var(--or-sable);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.discount-label {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.discount-label a {
  color: var(--or-sable);
  text-decoration: none;
}

.discount-payment {
  max-width: 600px;
  margin: 0 auto 0.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.discount-payment strong {
  color: var(--ink);
  font-weight: 500;
}

/* ── ENHANCED PAGE HERO ── */
.page-hero-enhanced {
  background: var(--vert-minuit);
  color: var(--lune-lait);
  text-align: center;
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-enhanced::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(175, 143, 60, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-enhanced .page-hero-ornament {
  font-family: 'UnifrakturCook', cursive;
  font-size: 1.4rem;
  color: var(--or-sable);
  opacity: 0.5;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
}

.page-hero-enhanced h1 {
  font-family: 'IM Fell DW Pica', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--lune-lait);
  line-height: 1.15;
  position: relative;
}

.page-hero-enhanced .page-hero-accent {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-top: 0.5rem;
}

.page-hero-enhanced p {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(247, 240, 222, 0.6);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-hero-enhanced .hero-line {
  width: 40px;
  height: 1px;
  background: var(--or-sable);
  margin: 2rem auto 0;
  opacity: 0.4;
}

/* ── CARD CTA BUTTON ── */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(31, 44, 35, 0.15);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  margin-top: auto;
  align-self: flex-start;
}

.card-cta:hover {
  background: var(--vert-minuit);
  color: var(--lune-lait);
  border-color: var(--vert-minuit);
  transform: translateX(4px);
}

.card-recommended .card-cta {
  background: var(--vert-minuit);
  color: var(--lune-lait);
  border-color: var(--vert-minuit);
}

.card-recommended .card-cta:hover {
  background: var(--or-sable);
  border-color: var(--or-sable);
  color: var(--ink);
}

/* ── DARK SECTION ── */
.section-dark {
  background: var(--ink);
  color: var(--lune-lait);
}

.section-dark .section-title { color: var(--lune-lait); }
.section-dark .section-subtitle { color: rgba(247, 240, 222, 0.45); }

.section-dark .faq-item {
  border-color: rgba(247, 240, 222, 0.08);
}

.section-dark .faq-q { color: var(--lune-lait); }
.section-dark .faq-a { color: rgba(247, 240, 222, 0.5); }
.section-dark .faq-a a { color: var(--or-sable); }

/* ── FAQ ACCORDION ── */
.faq-item-accordion .faq-q {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.faq-item-accordion .faq-q:hover {
  color: var(--or-sable);
}

.faq-item-accordion .faq-toggle {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.5rem;
  color: var(--or-sable);
  opacity: 0.5;
  transition: all 0.35s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
}

.faq-item-accordion.open .faq-toggle {
  transform: rotate(45deg);
  opacity: 1;
}

.faq-item-accordion .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin 0.4s ease;
  margin-top: 0;
}

.faq-item-accordion.open .faq-a {
  max-height: 200px;
  margin-top: 0.8rem;
}

/* ── CTA BANNER ENHANCED ── */
.cta-banner-enhanced {
  background: var(--vert-minuit);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(175, 143, 60, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-enhanced h2 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--lune-lait);
  margin-bottom: 0.8rem;
  position: relative;
}

.cta-banner-enhanced .cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(247, 240, 222, 0.45);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner-enhanced .hero-cta {
  opacity: 1;
  animation: none;
  position: relative;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0;
  height: 0;
  position: relative;
  z-index: 2;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--or-sable);
  opacity: 0.35;
}

.section-divider .divider-dot {
  width: 4px;
  height: 4px;
  background: var(--or-sable);
  opacity: 0.4;
  transform: rotate(45deg);
}

/* ── GUARANTEE STRIP ── */
.guarantee-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(31, 44, 35, 0.06);
  border-bottom: 1px solid rgba(31, 44, 35, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-item {
  text-align: center;
}

.guarantee-number {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 2.2rem;
  color: var(--or-sable);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.guarantee-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── COMPARE COLUMN HIGHLIGHT ── */
.compare-table thead th.col-highlight {
  background: rgba(175, 143, 60, 0.08);
}

.compare-table tbody td.col-highlight {
  background: rgba(175, 143, 60, 0.04);
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(31, 44, 35, 0.08);
  padding: 1.8rem 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(31, 44, 35, 0.08);
}

.faq-q {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.faq-a {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--ink);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-banner h2 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.8rem;
  color: var(--lune-lait);
  margin-bottom: 1.5rem;
}

.cta-banner .hero-cta {
  opacity: 1;
  animation: none;
}

/* ── INFOGÉRANCE / GESTION MICROSOFT ── */
.info-showcase {
  max-width: 860px;
  margin: 0 auto;
}

.info-main {
  background: var(--lune-lait-soft);
  border: 1px solid rgba(31, 44, 35, 0.08);
  position: relative;
  overflow: hidden;
}

.info-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--or-sable);
}

.info-header {
  text-align: center;
  padding: 2.5rem 2.5rem 2rem;
  border-bottom: 1px solid rgba(31, 44, 35, 0.06);
}

.info-header-title {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.info-header-price {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 2.2rem;
  color: var(--or-sable);
}

.info-header-price span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  font-family: 'Crimson Pro', serif;
}

.info-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(31, 44, 35, 0.06);
}

.info-pillar {
  padding: 2rem;
  text-align: left;
  border-right: 1px solid rgba(31, 44, 35, 0.06);
}

.info-pillar:last-child { border-right: none; }

.info-pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.info-pillar-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-bottom: 0.8rem;
}

.info-pillar-list {
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.info-pillar-list li { padding: 0.35rem 0; }

.info-footer {
  padding: 1.5rem 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted-light);
}

/* ═══════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════ */

.portfolio-section {
  background: var(--ink);
  padding: 6rem 2rem;
}

.portfolio-section .section-label { color: var(--or-sable); }
.portfolio-section .section-title { color: var(--lune-lait); }
.portfolio-section .section-subtitle { color: rgba(247, 240, 222, 0.45); }

/* Featured project */
.pf-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--vert-minuit);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(175, 143, 60, 0.1);
  transition: box-shadow 0.5s ease;
}

.pf-featured:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.4); }

.pf-featured-visual {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pf-featured-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0a1628 0%, #132238 40%, rgba(175,143,60,0.12) 100%);
  transition: transform 0.6s ease;
}

.pf-featured:hover .pf-featured-visual::before { transform: scale(1.05); }

.pf-featured-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-sable), transparent);
  opacity: 0.3;
}

.pf-featured-watermark {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(4rem, 7vw, 6rem);
  color: var(--lune-lait);
  opacity: 0.06;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
  user-select: none;
}

.pf-featured-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  background: var(--or-sable);
  color: var(--ink);
  z-index: 2;
}

.pf-featured-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pf-featured-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-bottom: 0.8rem;
}

.pf-featured-content h3 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--lune-lait);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pf-featured-content > p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(247, 240, 222, 0.55);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.pf-featured-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pf-highlight {
  text-align: center;
  padding: 0.8rem 0.5rem;
  background: rgba(175, 143, 60, 0.06);
  border: 1px solid rgba(175, 143, 60, 0.1);
}

.pf-highlight-value {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.5rem;
  color: var(--or-sable);
  line-height: 1.2;
}

.pf-highlight-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 240, 222, 0.35);
  margin-top: 0.2rem;
}

.pf-featured-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.pf-featured-tags span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  background: rgba(175, 143, 60, 0.12);
  color: var(--or-sable);
  border: 1px solid rgba(175, 143, 60, 0.15);
}

.pf-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: var(--or-sable);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  align-self: flex-start;
}

.pf-featured-link:hover {
  background: var(--lune-lait);
  transform: translateX(4px);
}

/* Project cards */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pf-card {
  background: var(--vert-minuit);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(175, 143, 60, 0.06);
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(175, 143, 60, 0.15);
}

.pf-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--or-sable);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.pf-card:hover::after { transform: scaleX(1); }

.pf-card-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(175, 143, 60, 0.06);
  overflow: hidden;
}

.pf-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.pf-card:hover .pf-card-visual::before { transform: scale(1.08); }

.pf-visual-styr::before { background: linear-gradient(145deg, #0d1a12 0%, #1a2e1f 40%, rgba(175,143,60,0.08) 100%); }
.pf-visual-lore::before { background: linear-gradient(145deg, #1a0f1e 0%, #2a1832 40%, rgba(175,143,60,0.08) 100%); }
.pf-visual-legeai::before { background: linear-gradient(145deg, #1a1610 0%, #2a2318 40%, rgba(175,143,60,0.1) 100%); }

.pf-card-visual-name {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 2.5rem;
  color: var(--lune-lait);
  opacity: 0.08;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
  user-select: none;
}

.pf-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: var(--rouge-antique);
  color: var(--lune-lait);
  z-index: 2;
}

.pf-card-body {
  padding: 2rem 2rem 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pf-card-type {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-bottom: 0.5rem;
}

.pf-card-body h3 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.5rem;
  color: var(--lune-lait);
  margin-bottom: 0.8rem;
}

.pf-card-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 240, 222, 0.5);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.pf-card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pf-card-tags span {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  background: rgba(175, 143, 60, 0.1);
  color: var(--or-sable);
  border: 1px solid rgba(175, 143, 60, 0.1);
}

.pf-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--or-sable);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  margin-top: 0.8rem;
}

.pf-card-link:hover { opacity: 0.7; }

/* ── PORTFOLIO ENHANCED ── */
.portfolio-section { position: relative; }

.portfolio-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(175, 143, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.portfolio-section > .section-inner { position: relative; z-index: 1; }

.portfolio-ornament {
  font-family: 'UnifrakturCook', cursive;
  font-size: 1.4rem;
  color: var(--or-sable);
  opacity: 0.3;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.portfolio-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.portfolio-divider::before,
.portfolio-divider::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--or-sable);
  opacity: 0.2;
}

.portfolio-divider-dot {
  width: 4px;
  height: 4px;
  background: var(--or-sable);
  opacity: 0.3;
  transform: rotate(45deg);
}

/* Featured project top border glow */
.pf-featured { position: relative; }

.pf-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(175, 143, 60, 0.4), transparent);
  z-index: 2;
}

/* ── APPROACH ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.approach-item { padding: 1.5rem 0; }

.approach-number {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 2.8rem;
  color: var(--or-sable);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.approach-title {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.approach-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* 5-item engagements: center last row + visual accents */
.engagements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.engagements-grid .approach-item {
  flex: 0 1 calc((100% - 4rem) / 3);
  min-width: 250px;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid var(--or-sable);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--vert-minuit);
  color: var(--lune-lait);
  text-align: center;
}

.contact-section .section-title { color: var(--lune-lait); }
.contact-section .section-subtitle { color: rgba(247, 240, 222, 0.55); }

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.contact-email, .contact-phone {
  font-family: 'IM Fell DW Pica', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--or-sable);
  text-decoration: none;
  border-bottom: 1px solid rgba(175, 143, 60, 0.3);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.contact-phone { font-size: clamp(1.1rem, 2vw, 1.6rem); }

.contact-email:hover, .contact-phone:hover { border-color: var(--or-sable); }

.contact-method {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 240, 222, 0.45);
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 240, 222, 0.4);
}

.contact-details strong {
  color: rgba(247, 240, 222, 0.7);
  font-weight: 500;
}

/* ── CONTACT PAGE ── */
.contact-page-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-page-content .contact-email,
.contact-page-content .contact-phone {
  color: var(--or-sable);
}

.contact-page-content .contact-method {
  color: var(--muted);
}

.contact-page-content .contact-locations {
  display: inline-block;
  text-align: left;
}

.contact-locations {
  list-style: none;
  margin-top: 1.5rem;
}

.contact-locations li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.contact-locations li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--or-sable);
  font-weight: 600;
}

.contact-locations li strong {
  color: var(--ink);
  font-weight: 500;
}

.contact-form-placeholder {
  background: var(--lune-lait-soft);
  border: 1px solid rgba(31, 44, 35, 0.08);
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 300;
}

/* ── CONTACT PAGE ENHANCED ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.contact-block {
  background: var(--lune-lait-soft);
  border: 1px solid rgba(31, 44, 35, 0.08);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--or-sable);
}

.contact-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}

.contact-block-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-bottom: 1.5rem;
}

.contact-block .contact-links {
  align-items: flex-start;
}

.contact-block .contact-email,
.contact-block .contact-phone {
  color: var(--or-sable);
}

.contact-block-detail {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 44, 35, 0.06);
}

.contact-block-detail p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.2rem;
}

.contact-block-detail p:last-child { margin-bottom: 0; }

.contact-locations-enhanced {
  list-style: none;
}

.contact-locations-enhanced li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(31, 44, 35, 0.06);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
}

.contact-locations-enhanced li:first-child { padding-top: 0; }
.contact-locations-enhanced li:last-child { border-bottom: none; padding-bottom: 0; }

.contact-locations-enhanced li strong {
  display: block;
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.1rem;
}

.contact-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.contact-step {
  padding-left: 1.5rem;
  border-left: 2px solid var(--or-sable);
}

.contact-step-number {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 2rem;
  color: var(--or-sable);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.contact-step h3 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-step p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.08em;
}

footer a { color: var(--or-sable); text-decoration: none; }

.footer-legal {
  margin-top: 0.8rem;
  font-size: 0.72rem;
}

.footer-legal a {
  color: var(--muted-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--or-sable); }

.footer-legal .sep {
  margin: 0 0.5rem;
  color: var(--muted-light);
}

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
}

.legal-content h2 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.legal-content h3 {
  font-family: 'IM Fell DW Pica', serif;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-content a {
  color: var(--or-sable);
  text-decoration: none;
}

.placeholder {
  color: var(--rouge-antique);
  font-weight: 500;
  background: rgba(183, 77, 52, 0.08);
  padding: 0.1rem 0.4rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.7rem; }
  .pf-featured { grid-template-columns: 1fr; }
  .pf-featured-visual { min-height: 260px; }
  .pf-featured-highlights { grid-template-columns: repeat(4, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.5rem;
  }

  .nav-burger { display: flex; }

  .nav-brand { position: relative; z-index: 2; }

  /* When open, nav covers full viewport */
  nav.nav-open {
    bottom: 0;
  }

  .nav-links {
    position: absolute;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: var(--lune-lait);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links::before {
    content: 'G';
    font-family: 'UnifrakturCook', cursive;
    font-size: 1.2rem;
    color: var(--or-sable);
    opacity: 0.3;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(31, 44, 35, 0.05);
  }

  .nav-links li:first-child {
    border-top: 1px solid rgba(31, 44, 35, 0.05);
  }

  nav.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-family: 'IM Fell DW Pica', serif;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--ink);
    display: block;
    padding: 0.9rem 2rem;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--or-sable);
    background: rgba(175, 143, 60, 0.05);
  }

  .nav-links a.active {
    color: var(--or-sable);
    border-bottom: none;
    padding-bottom: 0.9rem;
  }

  /* Landing nav override */
  nav.nav-bottom-start {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  nav.nav-bottom-start.nav-open {
    transform: none !important;
    bottom: 0;
  }

  .cards-grid, .cards-grid-2, .cards-grid-4, .portfolio-grid, .approach-grid { grid-template-columns: 1fr; }
  .engagements-grid { flex-direction: column; }
  .engagements-grid .approach-item { flex: 1 1 100%; min-width: 0; padding: 1.2rem 0 1.2rem 1.2rem; }
  .info-pillars { grid-template-columns: 1fr; }
  .info-pillar { border-right: none; border-bottom: 1px solid rgba(31, 44, 35, 0.06); }
  .info-pillar:last-child { border-bottom: none; }
  section { padding: 4rem 1.5rem; }
  .portfolio-section { padding: 4rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 3rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .contact-details { flex-direction: column; gap: 1rem; }
  .section-note { padding: 1.5rem; }
  .pf-featured-content { padding: 2rem 1.5rem; }
  .pf-featured-highlights { grid-template-columns: repeat(2, 1fr); }
  .landing-hero { padding: 2rem 1.5rem 5rem; }
  .landing-hero-title .line1 { font-size: clamp(3.5rem, 18vw, 5rem); }
  .service-summary { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 2rem 1.5rem; }
  .service-summary-link { margin-left: 0; }
  .home-service-footer { text-align: center; margin-top: 1rem; }
  .compare-wrap { overflow-x: visible; }
  .compare-table { min-width: 0; }
  .compare-table thead { display: none; }
  .compare-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(31, 44, 35, 0.08);
  }
  .compare-table tbody td:first-child {
    width: 100%;
    font-weight: 500;
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
    padding: 0;
    border: none;
  }
  .compare-table tbody td {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.3rem;
    border: none;
    font-size: 0.85rem;
  }
  .compare-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: 0.15rem;
  }
  .compare-table tbody td:first-child::before { display: none; }
  .compare-table tbody td.col-highlight { background: none; }
  .faq-item { padding: 1.4rem 0; }
  .faq-q { font-size: 1.05rem; }
  .discount-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .discount-value { font-size: 2.6rem; }
  .page-hero-enhanced { padding: 8rem 1.5rem 4rem; }
  .guarantee-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .cta-banner-enhanced { padding: 4rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-process { grid-template-columns: 1fr; }
  .contact-block { padding: 2rem 1.5rem; }
}
