/* ============================================================
   NetPlume — Comprehensive Stylesheet
   Netlinking & Affiliation, le duo gagnant

   Design System: Luxury editorial, high-end French SEO agency
   Fonts: Syne (headings/logo), Plus Jakarta Sans (body)
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------------------------ */
:root {
    --ink: #0a0a0f;
    --cream: #faf8f4;
    --gold: #c9a227;
    --gold-light: #e8d48b;
    --slate: #3a3a4a;
    --mist: #e8e6e0;
    --accent: #1a1a2e;
    --white: #ffffff;
    --success: #2ecc71;
    --danger: #e74c3c;

    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Syne', 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --shadow-sm: 0 1px 3px rgba(10, 10, 15, 0.06);
    --shadow: 0 4px 16px rgba(10, 10, 15, 0.08);
    --shadow-lg: 0 8px 32px rgba(10, 10, 15, 0.12);
    --shadow-xl: 0 16px 48px rgba(10, 10, 15, 0.16);
    --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.2);

    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;

    --container-width: 1200px;
    --container-narrow: 800px;
    --container-wide: 1400px;
}

/* ------------------------------------------------------------
   2. Reset & Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--mist);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--slate);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--ink);
}

/* ------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--ink);
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.02;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -1px;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    letter-spacing: -0.3px;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    letter-spacing: -0.2px;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
}

h6 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

p {
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate);
}

em {
    font-style: italic;
    color: var(--gold);
}

strong {
    font-weight: 600;
}

blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.5px;
}

.text-gold {
    color: var(--gold);
}

.text-slate {
    color: var(--slate);
}

.text-cream {
    color: var(--cream);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: rgba(58, 58, 74, 0.6);
}

.text-small {
    font-size: 0.875rem;
}

.text-large {
    font-size: 1.25rem;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.gold-underline:hover::after {
    width: 100%;
}

/* ------------------------------------------------------------
   4. Navigation
   ------------------------------------------------------------ */
nav,
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: padding var(--transition), background var(--transition);
}

.nav--scrolled {
    padding: 16px 48px;
    background: rgba(250, 248, 244, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav--dark {
    background: rgba(10, 10, 15, 0.9);
    border-bottom: 1px solid rgba(250, 248, 244, 0.06);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0;
}

.logo span {
    color: var(--gold);
}

.nav--dark .logo {
    color: var(--cream);
}

.nav-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav--dark .nav-links a {
    color: rgba(250, 248, 244, 0.6);
}

.nav--dark .nav-links a:hover,
.nav--dark .nav-links a.active {
    color: var(--cream);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1010;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform var(--transition), opacity var(--transition);
}

.nav--dark .hamburger span {
    background: var(--cream);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    z-index: 1005;
    padding: 120px 48px 48px;
    flex-direction: column;
    gap: 24px;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.nav-mobile a:hover {
    color: var(--gold);
}

/* ------------------------------------------------------------
   5. Hero Sections
   ------------------------------------------------------------ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 48px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(201, 162, 39, 0.04) 60%, rgba(201, 162, 39, 0.08) 100%);
    pointer-events: none;
}

.hero--dark {
    background: var(--ink);
    color: var(--cream);
}

.hero--dark::before {
    background: linear-gradient(135deg, transparent 40%, rgba(201, 162, 39, 0.03) 60%, rgba(201, 162, 39, 0.06) 100%);
}

.hero--dark h1 {
    color: var(--cream);
}

.hero--centered {
    align-items: center;
    text-align: center;
}

.hero--centered .hero-sub {
    margin-left: auto;
    margin-right: auto;
}

.hero-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero h1 {
    max-width: 900px;
}

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

.hero-sub {
    margin-top: 40px;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 560px;
    color: var(--slate);
}

.hero--dark .hero-sub {
    color: rgba(250, 248, 244, 0.6);
}

.hero-line {
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin-top: 48px;
}

.hero--centered .hero-line {
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero--centered .hero-actions {
    justify-content: center;
}

/* Mini hero (sub-pages) */
.hero--mini {
    min-height: 50vh;
    padding: 160px 48px 60px;
}

/* ------------------------------------------------------------
   6. Section Layouts
   ------------------------------------------------------------ */
.section {
    padding: 120px 48px;
    position: relative;
}

.section-dark {
    background: var(--ink);
    color: var(--cream);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--cream);
}

.section-dark p {
    color: rgba(250, 248, 244, 0.6);
}

.section-gold {
    background: var(--gold);
    color: var(--ink);
}

.section-gold h2,
.section-gold h3,
.section-gold p {
    color: var(--ink);
}

.section-accent {
    background: var(--accent);
    color: var(--cream);
}

.section-mist {
    background: var(--mist);
}

.section-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.section-header--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    margin-top: 20px;
    font-size: 1.1rem;
}

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

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

/* ------------------------------------------------------------
   7. Cards
   ------------------------------------------------------------ */
.card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 24px 28px 0;
}

.card-body {
    padding: 24px 28px;
}

.card-footer {
    padding: 16px 28px;
    border-top: 1px solid var(--mist);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-image {
    width: 100%;
    height: 200px;
    background: var(--mist);
    object-fit: cover;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Dark card variant */
.card--dark {
    background: var(--accent);
    border-color: rgba(250, 248, 244, 0.08);
}

.card--dark:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.card--dark h3,
.card--dark h4 {
    color: var(--cream);
}

.card--dark p {
    color: rgba(250, 248, 244, 0.6);
}

/* Flat card (no hover lift) */
.card--flat {
    transition: border-color var(--transition);
}

.card--flat:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gold);
}

/* ------------------------------------------------------------
   8. Spot Cards (Catalogue)
   ------------------------------------------------------------ */
.spot-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.spot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.spot-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.spot-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.spot-card-theme {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.spot-card-metrics {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.spot-card-url {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 400;
    margin-bottom: 16px;
    opacity: 0.7;
}

.spot-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--mist);
}

.spot-card-price-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ink);
}

.spot-card-price-label {
    font-size: 0.75rem;
    color: var(--slate);
    font-weight: 400;
}

.spot-card-price-suffix {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--slate);
}

/* Spot card featured variant */
.spot-card--featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.spot-card--featured::before {
    content: 'Premium';
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* ------------------------------------------------------------
   9. Badges & Tags
   ------------------------------------------------------------ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    background: var(--mist);
    color: var(--slate);
}

.badge-da {
    background: rgba(46, 204, 113, 0.12);
    color: #1e8449;
}

.badge-dr {
    background: rgba(52, 152, 219, 0.12);
    color: #1a5276;
}

.badge-traffic {
    background: rgba(155, 89, 182, 0.12);
    color: #6c3483;
}

.badge-gold {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
}

.badge-success {
    background: rgba(46, 204, 113, 0.12);
    color: var(--success);
}

.badge-danger {
    background: rgba(231, 76, 60, 0.12);
    color: var(--danger);
}

.badge-dark {
    background: var(--ink);
    color: var(--cream);
}

/* Badge with value inside */
.badge-metric {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1px solid var(--mist);
}

.badge-metric-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1;
}

.badge-metric-label {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate);
    margin-top: 3px;
}

/* Active filter pills */
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--ink);
    color: var(--cream);
    cursor: pointer;
    transition: background var(--transition);
}

.filter-pill:hover {
    background: var(--accent);
}

.filter-pill-close {
    font-size: 0.9rem;
    line-height: 1;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.filter-pill:hover .filter-pill-close {
    opacity: 1;
}

/* ------------------------------------------------------------
   10. Filters Sidebar
   ------------------------------------------------------------ */
.filters-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.filter-group {
    margin-bottom: 32px;
}

.filter-group-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--mist);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--slate);
    cursor: pointer;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.filter-group label:hover {
    color: var(--ink);
}

/* Custom checkbox */
.filter-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--mist);
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    transition: border-color var(--transition-fast), background var(--transition-fast);
    flex-shrink: 0;
}

.filter-group input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.filter-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Custom range input */
.filter-group input[type="range"] {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--mist);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 12px 0 8px;
}

.filter-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(201, 162, 39, 0.3);
    transition: transform var(--transition-fast);
}

.filter-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.filter-group input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(201, 162, 39, 0.3);
}

.filter-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--slate);
}

.filters-active-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

/* Catalogue layout with sidebar */
.catalogue-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.catalogue-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ------------------------------------------------------------
   11. Pricing Tables
   ------------------------------------------------------------ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.03);
}

.pricing-card--popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-card--popular::before {
    content: 'Le plus populaire';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.pricing-card-desc {
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}

.pricing-card-amount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--ink);
    line-height: 1;
}

.pricing-card-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
}

.pricing-card-period {
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 300;
}

.pricing-card-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--slate);
    padding: 8px 0;
    border-bottom: 1px solid rgba(232, 230, 224, 0.5);
}

.pricing-card-features li:last-child {
    border-bottom: none;
}

.pricing-card-features li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    margin-top: 1px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* ------------------------------------------------------------
   12. Buttons
   ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: #b8921f;
    border-color: #b8921f;
    color: var(--ink);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
}

.btn-secondary--light {
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary--light:hover {
    background: var(--cream);
    color: var(--ink);
}

.btn-ghost {
    background: transparent;
    color: var(--slate);
    border-color: transparent;
    padding: 14px 16px;
}

.btn-ghost:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, 0.04);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

.btn:disabled,
.btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Dark background button variants */
.section-dark .btn-secondary {
    color: var(--cream);
    border-color: rgba(250, 248, 244, 0.3);
}

.section-dark .btn-secondary:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

/* ------------------------------------------------------------
   13. Forms
   ------------------------------------------------------------ */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.form-group label .required {
    color: var(--danger);
    margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--mist);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(58, 58, 74, 0.4);
    font-weight: 300;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%233a3a4a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

/* Validation states */
.form-group--error .form-input,
.form-group--error .form-textarea,
.form-group--error .form-select {
    border-color: var(--danger);
}

.form-group--error .form-input:focus,
.form-group--error .form-textarea:focus,
.form-group--error .form-select:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.form-error {
    font-size: 0.8rem;
    color: var(--danger);
    margin-top: 6px;
    font-weight: 500;
}

.form-group--success .form-input,
.form-group--success .form-textarea {
    border-color: var(--success);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--slate);
    margin-top: 6px;
    font-weight: 300;
}

/* Inline form row */
.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

/* ------------------------------------------------------------
   14. Testimonials
   ------------------------------------------------------------ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 28px;
}

.testimonial-quote {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 24px;
    padding-top: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--slate);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 300;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars .star {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-stars .star--empty {
    color: var(--mist);
}

/* Dark testimonial variant */
.testimonial-card--dark {
    background: var(--accent);
    border-color: rgba(250, 248, 244, 0.06);
}

.testimonial-card--dark .testimonial-quote {
    color: rgba(250, 248, 244, 0.7);
}

.testimonial-card--dark .testimonial-name {
    color: var(--cream);
}

.testimonial-card--dark .testimonial-role {
    color: rgba(250, 248, 244, 0.4);
}

/* ------------------------------------------------------------
   15. Trust Logos
   ------------------------------------------------------------ */
.trust-section {
    padding: 80px 48px;
    text-align: center;
}

.trust-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 40px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 32px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: filter var(--transition), opacity var(--transition);
}

.trust-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ------------------------------------------------------------
   16. Process / Steps
   ------------------------------------------------------------ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--ink);
}

.step {
    padding: 40px 32px 40px 0;
    border-right: 1px solid var(--mist);
    position: relative;
}

.step:last-child {
    border-right: none;
}

.step-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.step h4 {
    margin-bottom: 12px;
}

.step p {
    font-size: 0.88rem;
    line-height: 1.65;
    font-weight: 300;
}

/* Alternative steps with connector lines */
.steps-connected {
    display: flex;
    gap: 0;
    position: relative;
}

.step-connected {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.step-connected-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-connected::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: var(--mist);
    z-index: 1;
}

.step-connected:last-child::after {
    display: none;
}

.step-connected h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-connected p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ------------------------------------------------------------
   17. Metrics Display
   ------------------------------------------------------------ */
.metric {
    margin-bottom: 40px;
}

.metric:last-child {
    margin-bottom: 0;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.5);
    margin-top: 8px;
    font-weight: 300;
}

/* Light variant */
.metric--light .metric-value {
    color: var(--ink);
}

.metric--light .metric-label {
    color: var(--slate);
}

/* Gold variant */
.metric--gold .metric-value {
    color: var(--gold);
}

/* Metrics row (horizontal) */
.metrics-row {
    display: flex;
    gap: 64px;
}

.metrics-row .metric {
    margin-bottom: 0;
}

/* Split sections */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-left {
    background: var(--gold);
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ink);
    line-height: 1.15;
    max-width: 460px;
}

.split-right {
    background: var(--accent);
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ------------------------------------------------------------
   18. Stats Bar
   ------------------------------------------------------------ */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px;
    background: var(--white);
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
}

.stats-bar-item {
    text-align: center;
    padding: 0 48px;
    border-right: 1px solid var(--mist);
}

.stats-bar-item:last-child {
    border-right: none;
}

.stats-bar-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--ink);
    line-height: 1;
}

.stats-bar-label {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 400;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dark variant */
.stats-bar--dark {
    background: var(--ink);
    border-color: rgba(250, 248, 244, 0.06);
}

.stats-bar--dark .stats-bar-item {
    border-color: rgba(250, 248, 244, 0.08);
}

.stats-bar--dark .stats-bar-value {
    color: var(--gold-light);
}

.stats-bar--dark .stats-bar-label {
    color: rgba(250, 248, 244, 0.4);
}

/* ------------------------------------------------------------
   19. Blog Cards
   ------------------------------------------------------------ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: var(--mist);
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--gold);
    color: var(--ink);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
    letter-spacing: -0.3px;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.blog-card:hover .blog-card-title {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 400;
    padding-top: 16px;
    border-top: 1px solid var(--mist);
}

.blog-card-date {
    opacity: 0.6;
}

.blog-card-read {
    font-weight: 600;
    color: var(--gold);
    transition: color var(--transition);
}

.blog-card:hover .blog-card-read {
    color: #b8921f;
}

/* Blog card featured */
.blog-card--featured {
    grid-column: span 2;
}

.blog-card--featured .blog-card-image {
    height: 320px;
}

.blog-card--featured .blog-card-title {
    font-size: 1.5rem;
}

/* ------------------------------------------------------------
   20. Tables
   ------------------------------------------------------------ */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table thead th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--slate);
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--ink);
    white-space: nowrap;
}

.table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--mist);
    color: var(--ink);
    font-weight: 400;
    vertical-align: middle;
}

.table tbody tr:nth-child(even) {
    background: rgba(250, 248, 244, 0.5);
}

.table tbody tr:hover {
    background: rgba(201, 162, 39, 0.04);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Dark table variant */
.table--dark thead th {
    color: rgba(250, 248, 244, 0.5);
    border-bottom-color: rgba(250, 248, 244, 0.15);
}

.table--dark tbody td {
    color: var(--cream);
    border-bottom-color: rgba(250, 248, 244, 0.06);
}

.table--dark tbody tr:nth-child(even) {
    background: rgba(250, 248, 244, 0.03);
}

.table--dark tbody tr:hover {
    background: rgba(201, 162, 39, 0.06);
}

/* ------------------------------------------------------------
   21. Footer
   ------------------------------------------------------------ */
footer,
.footer {
    padding: 80px 48px 40px;
    background: var(--ink);
    color: var(--cream);
    border-top: 1px solid rgba(250, 248, 244, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    color: var(--cream);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.4);
    font-weight: 300;
    line-height: 1.7;
    max-width: 320px;
}

.footer-column-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.5);
    font-weight: 300;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

/* Newsletter signup */
.footer-newsletter {
    margin-top: 24px;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-form .form-input {
    background: rgba(250, 248, 244, 0.06);
    border-color: rgba(250, 248, 244, 0.1);
    color: var(--cream);
    padding: 12px 16px;
    font-size: 0.85rem;
    flex: 1;
}

.footer-newsletter-form .form-input::placeholder {
    color: rgba(250, 248, 244, 0.3);
}

.footer-newsletter-form .form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.footer-newsletter-form .btn {
    padding: 12px 20px;
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(250, 248, 244, 0.06);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(250, 248, 244, 0.25);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: rgba(250, 248, 244, 0.25);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Simple footer (from landing page) */
.footer--simple {
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer--simple .logo {
    font-size: 1.2rem;
}

/* ------------------------------------------------------------
   22. Manifesto / Blockquote Sections
   ------------------------------------------------------------ */
.manifesto {
    padding: 120px 48px;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.manifesto::after {
    content: '\201C';
    position: absolute;
    top: -60px;
    right: 48px;
    font-family: var(--font-heading);
    font-size: 400px;
    font-weight: 800;
    color: rgba(201, 162, 39, 0.06);
    line-height: 1;
    pointer-events: none;
}

.manifesto-inner {
    max-width: var(--container-narrow);
}

.manifesto blockquote em {
    font-style: normal;
    color: var(--gold);
}

.manifesto-credit {
    margin-top: 40px;
    font-size: 0.85rem;
    color: rgba(250, 248, 244, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ------------------------------------------------------------
   23. Pillars / Feature Grid
   ------------------------------------------------------------ */
.pillars {
    padding: 120px 48px;
}

.pillars-header {
    margin-bottom: 80px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.pillar {
    padding: 48px 40px;
    background: var(--white);
    border: 1px solid var(--mist);
    position: relative;
    transition: all 0.4s ease;
}

.pillar:hover {
    background: var(--ink);
    color: var(--cream);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--mist);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.pillar:hover .pillar-number {
    color: var(--gold);
}

.pillar h3 {
    margin-bottom: 16px;
}

.pillar p {
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

.pillar:hover h3 {
    color: var(--cream);
}

.pillar:hover p {
    color: rgba(250, 248, 244, 0.6);
}

/* ------------------------------------------------------------
   24. Closing / CTA Sections
   ------------------------------------------------------------ */
.closing {
    padding: 160px 48px;
    text-align: center;
    background: var(--ink);
    color: var(--cream);
    position: relative;
}

.closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.closing h2 {
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 32px;
}

.closing h2 em {
    font-style: italic;
    color: var(--gold);
}

.closing p {
    font-size: 1.1rem;
    color: rgba(250, 248, 244, 0.5);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
}

.closing .btn {
    margin-top: 40px;
}

/* ------------------------------------------------------------
   25. Animations
   ------------------------------------------------------------ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse for CTAs */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
}

.pulse {
    animation: pulse-gold 2s infinite;
}

/* Subtle float */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Spin for loaders */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--mist);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ------------------------------------------------------------
   26. Utility Classes
   ------------------------------------------------------------ */

/* Container */
/* (already defined in Section Layouts) */

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* Grid */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Margins */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mb-80 { margin-bottom: 80px; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding */
.pt-0 { padding-top: 0; }
.pt-24 { padding-top: 24px; }
.pt-48 { padding-top: 48px; }
.pb-0 { padding-bottom: 0; }
.pb-24 { padding-bottom: 24px; }
.pb-48 { padding-bottom: 48px; }
.px-24 { padding-left: 24px; padding-right: 24px; }
.px-48 { padding-left: 48px; padding-right: 48px; }
.py-24 { padding-top: 24px; padding-bottom: 24px; }
.py-48 { padding-top: 48px; padding-bottom: 48px; }

/* Width */
.w-full { width: 100%; }
.max-w-narrow { max-width: var(--container-narrow); }
.max-w-default { max-width: var(--container-width); }
.max-w-wide { max-width: var(--container-wide); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }

/* Decorative line */
.gold-line {
    width: 64px;
    height: 2px;
    background: var(--gold);
}

.gold-line--center {
    margin-left: auto;
    margin-right: auto;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: var(--mist);
}

.divider--dark {
    background: rgba(250, 248, 244, 0.06);
}

/* Visually hidden (accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ------------------------------------------------------------
   27. Approach Section
   ------------------------------------------------------------ */
.approach {
    padding: 120px 48px;
}

.approach-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.approach-header p {
    margin-top: 20px;
    font-size: 1.1rem;
}

/* ------------------------------------------------------------
   28. Responsive — Tablet (max-width: 768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
    /* Navigation */
    nav,
    .nav {
        padding: 16px 24px;
    }

    .nav--scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-tag {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 140px 24px 60px;
    }

    .hero--mini {
        padding: 120px 24px 40px;
        min-height: 40vh;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Sections */
    .section {
        padding: 80px 24px;
    }

    /* Manifesto */
    .manifesto {
        padding: 80px 24px;
    }

    .manifesto::after {
        display: none;
    }

    /* Pillars */
    .pillars {
        padding: 80px 24px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Split */
    .split {
        grid-template-columns: 1fr;
    }

    .split-left,
    .split-right {
        padding: 60px 24px;
    }

    /* Approach / Steps */
    .approach {
        padding: 80px 24px;
    }

    .steps,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step {
        border-right: none;
        border-bottom: 1px solid var(--mist);
        padding: 32px 0;
    }

    .step:last-child {
        border-bottom: none;
    }

    .steps-connected {
        flex-direction: column;
        gap: 32px;
    }

    .step-connected::after {
        display: none;
    }

    /* Closing */
    .closing {
        padding: 100px 24px;
    }

    /* Grids */
    .card-grid,
    .card-grid--2,
    .card-grid--4 {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card--popular {
        transform: none;
    }

    .pricing-card--popular:hover {
        transform: translateY(-4px);
    }

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

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

    .blog-card--featured {
        grid-column: span 1;
    }

    .blog-card--featured .blog-card-image {
        height: 220px;
    }

    /* Catalogue */
    .catalogue-layout {
        flex-direction: column;
    }

    .filters-sidebar {
        width: 100%;
        position: static;
    }

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

    /* Stats bar */
    .stats-bar {
        flex-direction: column;
        gap: 32px;
        padding: 40px 24px;
    }

    .stats-bar-item {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--mist);
        padding-bottom: 32px;
    }

    .stats-bar-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stats-bar--dark .stats-bar-item {
        border-bottom-color: rgba(250, 248, 244, 0.08);
    }

    /* Trust logos */
    .trust-logos {
        gap: 32px;
    }

    .trust-section {
        padding: 60px 24px;
    }

    /* Metrics */
    .metrics-row {
        flex-direction: column;
        gap: 32px;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    /* Footer */
    footer,
    .footer {
        padding: 60px 24px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer--simple {
        padding: 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    /* Form row */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Tables */
    .table {
        font-size: 0.8rem;
    }

    .table thead th,
    .table tbody td {
        padding: 12px 14px;
    }

    /* Utility grid */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Typography scale-down */
    h1 {
        letter-spacing: -1px;
    }
}

/* ------------------------------------------------------------
   29. Responsive — Mobile (max-width: 480px)
   ------------------------------------------------------------ */
@media (max-width: 480px) {
    /* Navigation */
    nav,
    .nav {
        padding: 14px 16px;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Hero */
    .hero {
        padding: 120px 16px 48px;
    }

    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }

    .hero-sub {
        font-size: 1.05rem;
        margin-top: 28px;
    }

    .hero-line {
        margin-top: 32px;
    }

    /* Sections */
    .section {
        padding: 60px 16px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Manifesto */
    .manifesto {
        padding: 60px 16px;
    }

    /* Pillars */
    .pillars {
        padding: 60px 16px;
    }

    .pillars-header {
        margin-bottom: 48px;
    }

    .pillar {
        padding: 36px 28px;
    }

    .pillar-number {
        font-size: 3rem;
    }

    /* Split */
    .split-left,
    .split-right {
        padding: 48px 16px;
    }

    .metric-value {
        font-size: 2rem;
    }

    /* Approach */
    .approach {
        padding: 60px 16px;
    }

    .approach-header {
        margin-bottom: 48px;
    }

    /* Closing */
    .closing {
        padding: 80px 16px;
    }

    .closing::before {
        height: 48px;
    }

    /* Cards */
    .card-body {
        padding: 20px;
    }

    .card-header {
        padding: 20px 20px 0;
    }

    .card-footer {
        padding: 14px 20px;
    }

    .spot-card {
        padding: 20px;
    }

    .spot-card-metrics {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Pricing */
    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card-amount {
        font-size: 2.5rem;
    }

    /* Blog */
    .blog-card-image {
        height: 180px;
    }

    .blog-card-body {
        padding: 20px;
    }

    /* Stats bar */
    .stats-bar {
        padding: 32px 16px;
    }

    .stats-bar-value {
        font-size: 2rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    /* Footer */
    footer,
    .footer {
        padding: 48px 16px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    /* Forms */
    .form-input,
    .form-textarea,
    .form-select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 28px 24px;
    }

    /* Trust */
    .trust-logos {
        gap: 24px;
    }

    .trust-logos img {
        height: 24px;
    }

    /* Tables */
    .table {
        font-size: 0.75rem;
    }

    .table thead th,
    .table tbody td {
        padding: 10px 10px;
    }

    /* Utility spacing adjustments */
    .gap-48 { gap: 24px; }
    .gap-32 { gap: 16px; }
    .mt-80 { margin-top: 48px; }
    .mt-64 { margin-top: 40px; }
    .mb-80 { margin-bottom: 48px; }
    .mb-64 { margin-bottom: 40px; }
}

/* ============================================================
   BRIDGE: BEM class aliases + page-specific components
   Maps template BEM classes to flat CSS equivalents
   ============================================================ */

/* --- Nav BEM aliases --- */
.nav__container { display: flex; width: 100%; justify-content: space-between; align-items: center; max-width: var(--container-wide); margin: 0 auto; }
.nav__logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.5px; color: var(--ink); text-decoration: none; }
.nav__logo span { color: var(--gold); }
.nav__logo:hover { color: var(--ink); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1010; padding: 4px; background: none; border: none; }
.nav__hamburger-line { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform var(--transition), opacity var(--transition); }
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__links { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav__links li { margin: 0; }
.nav__link { font-size: 0.9rem; font-weight: 500; color: var(--slate); padding: 8px 16px; position: relative; transition: color var(--transition); text-decoration: none; }
.nav__link::after { content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px; height: 1.5px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.nav__link:hover, .nav__link--active { color: var(--ink); }
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); }
.nav__cta { margin-left: 16px; }
.nav-open .nav__menu { display: flex; }
.btn--primary { background: var(--gold); color: var(--ink); border: 2px solid var(--gold); font-weight: 600; padding: 14px 32px; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 0.9rem; }
.btn--primary:hover { background: #b8921f; border-color: #b8921f; color: var(--ink); box-shadow: var(--shadow-gold); }
.btn--secondary { background: transparent; color: var(--ink); border: 2px solid var(--ink); font-weight: 600; padding: 14px 32px; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 0.9rem; }
.btn--secondary:hover { background: var(--ink); color: var(--cream); }
.btn--lg { padding: 18px 44px; font-size: 1rem; border-radius: var(--radius-lg); }

/* --- Hero BEM aliases --- */
.hero__container { position: relative; z-index: 1; }
.hero__label { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: block; }
.hero__title { font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 800; line-height: 1.02; letter-spacing: -2px; max-width: 900px; color: var(--ink); }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle { margin-top: 40px; font-size: 1.25rem; font-weight: 300; line-height: 1.7; max-width: 560px; color: var(--slate); }
.hero__actions { display: flex; gap: 16px; margin-top: 48px; flex-wrap: wrap; }
.hero__line { width: 64px; height: 2px; background: var(--gold); margin-top: 48px; }

/* --- Stats Section --- */
.stats { background: var(--ink); padding: 48px; border-top: 1px solid rgba(250, 248, 244, 0.06); border-bottom: 1px solid rgba(250, 248, 244, 0.06); }
.stats__container { display: flex; justify-content: center; align-items: center; max-width: var(--container-width); margin: 0 auto; flex-wrap: wrap; gap: 24px; }
.stats__item { text-align: center; padding: 0 48px; }
.stats__number { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; color: var(--gold-light); line-height: 1; display: block; }
.stats__label { font-size: 0.8rem; color: rgba(250, 248, 244, 0.4); font-weight: 400; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; display: block; }
.stats__divider { width: 1px; height: 48px; background: rgba(250, 248, 244, 0.1); }

/* --- Section Labels --- */
.section__label { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section__title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -1px; color: var(--ink); margin-bottom: 48px; }

/* --- Process Section --- */
.process { background: var(--cream); }
.process__container { max-width: var(--container-width); margin: 0 auto; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 2px solid var(--ink); margin-top: 48px; }
.process__step { padding: 40px 32px 40px 0; border-right: 1px solid var(--mist); }
.process__step:last-child { border-right: none; }
.process__number { font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.process__heading { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.2px; }
.process__text { font-size: 0.88rem; line-height: 1.65; color: var(--slate); font-weight: 300; }

/* --- Trust Section --- */
.trust { background: var(--cream); }
.trust__container { max-width: var(--container-width); margin: 0 auto; text-align: center; }
.trust__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 48px; }
.trust__logo { background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius); padding: 32px 24px; display: flex; align-items: center; justify-content: center; transition: border-color var(--transition), box-shadow var(--transition); }
.trust__logo:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.trust__logo span { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--slate); }

/* --- Testimonials Section --- */
.testimonials { background: var(--cream); }
.testimonials__container { max-width: var(--container-width); margin: 0 auto; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial { background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius); padding: 36px 32px; position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial__stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial__quote { font-size: 0.95rem; font-weight: 400; line-height: 1.7; color: var(--slate); margin-bottom: 24px; font-style: normal; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--mist); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--slate); flex-shrink: 0; }
.testimonial__name { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.testimonial__role { font-size: 0.8rem; color: var(--slate); font-weight: 300; }

/* --- CTA Section --- */
.cta-section { padding: 160px 48px; text-align: center; background: var(--ink); color: var(--cream); position: relative; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 80px; background: linear-gradient(to bottom, var(--gold), transparent); }
.cta-section__container { max-width: 700px; margin: 0 auto; }
.cta-section__title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: var(--cream); margin-bottom: 20px; }
.cta-section__text { font-size: 1.1rem; color: rgba(250, 248, 244, 0.5); font-weight: 300; margin-bottom: 40px; line-height: 1.7; }

/* --- Footer BEM aliases --- */
.footer__container { max-width: var(--container-width); margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer__col { }
.footer__logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--cream); text-decoration: none; display: block; margin-bottom: 16px; }
.footer__logo span { color: var(--gold); }
.footer__logo:hover { color: var(--cream); }
.footer__description { font-size: 0.9rem; color: rgba(250, 248, 244, 0.4); font-weight: 300; line-height: 1.7; max-width: 320px; }
.footer__heading { font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); margin-bottom: 24px; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 0.9rem; color: rgba(250, 248, 244, 0.5); font-weight: 300; transition: color var(--transition); text-decoration: none; }
.footer__links a:hover { color: var(--gold); }
.footer__contact { list-style: none; padding: 0; margin: 0; }
.footer__contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: rgba(250, 248, 244, 0.5); font-weight: 300; }
.footer__contact a { color: rgba(250, 248, 244, 0.5); text-decoration: none; transition: color var(--transition); }
.footer__contact a:hover { color: var(--gold); }
.footer__contact svg { flex-shrink: 0; color: rgba(250, 248, 244, 0.3); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(250, 248, 244, 0.06); }
.footer__bottom p { font-size: 0.75rem; color: rgba(250, 248, 244, 0.25); }
.footer__siret { opacity: 0.6; }

/* --- Page Hero (sub-pages) --- */
.page-hero { padding: 140px 48px 60px; background: var(--cream); position: relative; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent 40%, rgba(201, 162, 39, 0.04) 60%, rgba(201, 162, 39, 0.08) 100%); pointer-events: none; }
.page-hero-inner { max-width: var(--container-width); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -1.5px; color: var(--ink); }
.page-hero-label { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.page-hero-sub { font-size: 1.15rem; font-weight: 300; line-height: 1.7; color: var(--slate); max-width: 600px; margin-top: 20px; }

/* --- Catalogue-specific --- */
.catalogue { padding: 60px 48px 120px; }
.catalogue-results { flex: 1; min-width: 0; }
.results-header { margin-bottom: 24px; }
.results-count { font-size: 0.9rem; font-weight: 500; color: var(--slate); }
.spots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.spot-card { display: block; text-decoration: none; color: inherit; }
.spot-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.spot-thematic-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); background: rgba(201, 162, 39, 0.1); padding: 4px 10px; border-radius: 20px; }
.spot-price { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.spot-domain { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.2px; }
.spot-metrics { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.spot-metric-badge { display: inline-flex; align-items: center; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.badge-green { background: rgba(46, 204, 113, 0.12); color: #1e8449; }
.badge-slate { background: var(--mist); color: var(--slate); }
.spot-tags { display: flex; gap: 8px; margin-bottom: 12px; }
.spot-tag { font-size: 0.75rem; font-weight: 500; color: var(--slate); background: var(--cream); padding: 3px 8px; border-radius: 4px; border: 1px solid var(--mist); }
.spot-description { font-size: 0.85rem; line-height: 1.6; color: var(--slate); font-weight: 300; margin-bottom: 16px; }
.spot-cta { font-size: 0.85rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.spot-card:hover .spot-cta { color: #b8921f; }
.spots-empty { display: flex; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; }
.spots-empty-inner h3 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 12px; }
.spots-empty-inner p { color: var(--slate); font-weight: 300; }
.spots-empty-inner a { color: var(--gold); font-weight: 500; }
.catalogue-cta { padding: 100px 48px; background: var(--ink); text-align: center; }
.catalogue-cta-inner h2 { font-family: var(--font-heading); color: var(--cream); font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 16px; }
.catalogue-cta-inner p { color: rgba(250, 248, 244, 0.5); font-weight: 300; margin-bottom: 32px; font-size: 1.05rem; }
.btn-gold { background: var(--gold); color: var(--ink); border: 2px solid var(--gold); font-weight: 600; padding: 14px 32px; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); text-decoration: none; display: inline-flex; align-items: center; font-family: var(--font-body); font-size: 0.9rem; }
.btn-gold:hover { background: #b8921f; border-color: #b8921f; color: var(--ink); box-shadow: var(--shadow-gold); }

/* Catalogue Filters Styling */
.filters-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--ink); }
.filters-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.filters-reset { font-size: 0.8rem; color: var(--gold); font-weight: 500; text-decoration: none; }
.filters-reset:hover { text-decoration: underline; }
.filter-label { font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; display: block; }
.filter-input { width: 100%; padding: 12px 16px; font-size: 0.9rem; color: var(--ink); background: var(--white); border: 1.5px solid var(--mist); border-radius: var(--radius); transition: border-color var(--transition); }
.filter-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12); outline: none; }
.filter-input::placeholder { color: rgba(58, 58, 74, 0.4); font-weight: 300; }
.filter-select { width: 100%; padding: 12px 16px; font-size: 0.9rem; color: var(--ink); background: var(--white); border: 1.5px solid var(--mist); border-radius: var(--radius); appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%233a3a4a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; cursor: pointer; transition: border-color var(--transition); }
.filter-select:focus { border-color: var(--gold); outline: none; }
.filter-checkboxes { display: flex; flex-direction: column; gap: 4px; }
.filter-checkbox { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 400; color: var(--slate); cursor: pointer; padding: 6px 0; transition: color var(--transition-fast); }
.filter-checkbox:hover { color: var(--ink); }
.filter-checkbox input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border: 2px solid var(--mist); border-radius: var(--radius-sm); cursor: pointer; position: relative; transition: border-color var(--transition-fast), background var(--transition-fast); flex-shrink: 0; }
.filter-checkbox input[type="checkbox"]:checked { background: var(--gold); border-color: var(--gold); }
.filter-checkbox input[type="checkbox"]:checked::after { content: ''; position: absolute; top: 2px; left: 5px; width: 5px; height: 9px; border: 2px solid var(--white); border-top: none; border-left: none; transform: rotate(45deg); }
.filter-checkbox-label { font-size: 0.85rem; }

/* --- Tarifs-specific --- */
.pricing { padding: 0 48px 120px; }
.pricing-tier { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-bottom: 8px; }
.pricing-price { font-size: 0.95rem; color: var(--slate); margin-bottom: 24px; }
.pricing-price strong { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; color: var(--ink); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; font-weight: 400; color: var(--slate); padding: 8px 0; border-bottom: 1px solid rgba(232, 230, 224, 0.5); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '\2713'; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; font-size: 0.7rem; font-weight: 700; color: var(--success); background: rgba(46, 204, 113, 0.1); border-radius: 50%; margin-top: 1px; }
.pricing-btn { display: block; width: 100%; text-align: center; background: var(--gold); color: var(--ink); border: 2px solid var(--gold); font-weight: 600; padding: 14px 32px; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); text-decoration: none; font-family: var(--font-body); font-size: 0.9rem; }
.pricing-btn:hover { background: #b8921f; border-color: #b8921f; color: var(--ink); box-shadow: var(--shadow-gold); }
.pricing-card-header { margin-bottom: 24px; }
.pricing-card--highlighted { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: scale(1.03); position: relative; }
.pricing-card--highlighted::before { content: 'Le plus populaire'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 20px; border-radius: 20px; white-space: nowrap; }

/* FAQ (details/summary) */
details { border-bottom: 1px solid var(--mist); }
details summary { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; padding: 20px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); transition: transform var(--transition); }
details[open] summary::after { content: '\2212'; }
details .faq-answer, details p { padding: 0 0 20px; font-size: 0.95rem; line-height: 1.7; color: var(--slate); font-weight: 300; }

/* --- Pourquoi (differentiators) --- */
.differentiators { padding: 0 48px 120px; }
.differentiators-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.differentiator { padding: 48px 40px; background: var(--white); border: 1px solid var(--mist); position: relative; transition: all 0.4s ease; }
.differentiator:hover { background: var(--ink); color: var(--cream); }
.differentiator:hover h3 { color: var(--cream); }
.differentiator:hover p { color: rgba(250, 248, 244, 0.6); }
.differentiator-number { font-family: var(--font-heading); font-size: 4rem; font-weight: 800; color: var(--mist); line-height: 1; margin-bottom: 24px; transition: color 0.4s ease; }
.differentiator:hover .differentiator-number { color: var(--gold); }
.differentiator h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.3px; }
.differentiator p { font-size: 0.95rem; line-height: 1.7; color: var(--slate); font-weight: 300; transition: color 0.4s ease; }

/* Comparison table wrapper */
.comparison-section { padding: 0 48px 120px; }
.comparison-section h2 { font-family: var(--font-heading); margin-bottom: 40px; }

/* Our process section */
.quality-process { padding: 0 48px 120px; }
.quality-process h2 { font-family: var(--font-heading); margin-bottom: 48px; }

/* Team section */
.team-section { padding: 0 48px 120px; }
.team-section h2 { font-family: var(--font-heading); margin-bottom: 20px; }

/* --- Contact-specific --- */
.contact-section { padding: 0 48px 120px; }
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; max-width: var(--container-width); margin: 0 auto; }
.contact-form-col { }
.contact-form .form-group { margin-bottom: 24px; }
.contact-form .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.contact-form .form-group .required { color: var(--danger); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea { width: 100%; padding: 14px 18px; font-size: 0.95rem; color: var(--ink); background: var(--white); border: 1.5px solid var(--mist); border-radius: var(--radius); transition: border-color var(--transition); font-family: var(--font-body); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12); outline: none; }
.contact-form textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.contact-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%233a3a4a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; cursor: pointer; }
.contact-sidebar { }
.contact-sidebar-card { background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius); padding: 32px; margin-bottom: 24px; }
.contact-sidebar-card h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 16px; }
.form-message { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 0.9rem; font-weight: 500; }
.form-message--success { background: rgba(46, 204, 113, 0.1); color: #1e8449; border: 1px solid rgba(46, 204, 113, 0.2); }
.form-message--error { background: rgba(231, 76, 60, 0.1); color: #c0392b; border: 1px solid rgba(231, 76, 60, 0.2); }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }

/* --- Spot Detail --- */
.breadcrumb { padding: 100px 48px 0; background: var(--cream); }
.breadcrumb-list { display: flex; align-items: center; gap: 0; list-style: none; max-width: var(--container-width); margin: 0 auto; font-size: 0.85rem; }
.breadcrumb-item { color: var(--slate); }
.breadcrumb-item a { color: var(--slate); text-decoration: none; transition: color var(--transition); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-separator { color: var(--mist); padding: 0 8px; }
.breadcrumb-current { color: var(--ink); font-weight: 500; }
.spot-hero { padding: 40px 48px 60px; background: var(--cream); }
.spot-hero .container { max-width: var(--container-width); margin: 0 auto; }
.spot-hero-top { margin-bottom: 16px; }
.spot-hero-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.spot-hero-domain { font-size: 1rem; color: var(--slate); font-weight: 300; }
.spot-metrics-section { padding: 0 48px 60px; background: var(--cream); }
.spot-metrics-section .container { max-width: var(--container-width); margin: 0 auto; }
.spot-metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.spot-metric-card { background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius); padding: 28px; text-align: center; }
.spot-metric-card .metric-value { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; color: var(--ink); line-height: 1; }
.spot-metric-card .metric-label { font-size: 0.8rem; color: var(--slate); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.spot-details { padding: 60px 48px 120px; }
.spot-details .container { max-width: var(--container-width); margin: 0 auto; }
.spot-details-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; }
.spot-order-card { background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 40px 32px; position: sticky; top: 100px; text-align: center; }
.spot-order-card .spot-order-price { font-family: var(--font-heading); font-weight: 800; font-size: 3rem; color: var(--ink); margin-bottom: 8px; }
.spot-order-card .spot-order-label { font-size: 0.85rem; color: var(--slate); margin-bottom: 24px; }
.spot-related { padding: 0 48px 120px; }
.spot-related .container { max-width: var(--container-width); margin: 0 auto; }
.spot-related h2 { margin-bottom: 32px; }
.spot-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* --- Legal Page --- */
.legal-hero { padding: 140px 48px 60px; background: var(--cream); }
.legal-hero-inner { max-width: var(--container-width); margin: 0 auto; }
.legal-hero h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -1.5px; }
.legal-content { padding: 0 48px 120px; }
.legal-inner { max-width: var(--container-narrow); margin: 0 auto; }
.legal-section { margin-bottom: 48px; }
.legal-section h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.legal-section p { font-size: 0.95rem; line-height: 1.8; color: var(--slate); font-weight: 300; margin-bottom: 12px; }
.legal-section a { color: var(--gold); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* --- Mobile overrides for bridge components --- */
@media (max-width: 768px) {
    .nav__hamburger { display: flex; }
    .nav__menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--cream); z-index: 1005; padding: 120px 24px 48px; flex-direction: column; gap: 24px; }
    .nav-open .nav__menu { display: flex; }
    .nav-open .nav__hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-open .nav__hamburger-line:nth-child(2) { opacity: 0; }
    .nav-open .nav__hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav__links { flex-direction: column; gap: 0; }
    .nav__link { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; padding: 12px 0; }
    .nav__link::after { display: none; }
    .nav__cta { margin-left: 0; margin-top: 16px; width: 100%; text-align: center; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn--primary, .hero__actions .btn--secondary { width: 100%; text-align: center; }
    .stats { padding: 40px 24px; }
    .stats__container { flex-direction: column; gap: 24px; }
    .stats__divider { width: 48px; height: 1px; }
    .stats__number { font-size: 2rem; }
    .process__grid { grid-template-columns: 1fr; }
    .process__step { border-right: none; border-bottom: 1px solid var(--mist); padding: 32px 0; }
    .process__step:last-child { border-bottom: none; }
    .trust__grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; }
    .cta-section { padding: 100px 24px; }
    .page-hero { padding: 120px 24px 40px; }
    .catalogue { padding: 40px 24px 80px; }
    .spots-grid { grid-template-columns: 1fr; }
    .catalogue-cta { padding: 80px 24px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__col:first-child { grid-column: span 2; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .pricing { padding: 0 24px 80px; }
    .pricing .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card--highlighted { transform: none; }
    .differentiators { padding: 0 24px 80px; }
    .differentiators-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 0 24px 80px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; gap: 0; }
    .spot-hero { padding: 24px 24px 40px; }
    .spot-metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .spot-details { padding: 40px 24px 80px; }
    .spot-details-grid { grid-template-columns: 1fr; }
    .spot-order-card { position: static; }
    .spot-related { padding: 0 24px 80px; }
    .spot-related-grid { grid-template-columns: 1fr; }
    .breadcrumb { padding: 80px 24px 0; }
    .legal-hero { padding: 120px 24px 40px; }
    .legal-content { padding: 0 24px 80px; }
    .comparison-section, .quality-process, .team-section { padding: 0 24px 80px; }
}

@media (max-width: 480px) {
    .trust__grid { grid-template-columns: repeat(2, 1fr); }
    .spot-metrics-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   30. Print Styles
   ------------------------------------------------------------ */
@media print {
    nav,
    .nav,
    .hamburger,
    .nav-mobile {
        display: none;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section,
    .manifesto,
    .pillars,
    .approach,
    .closing {
        padding: 40px 0;
    }

    .card,
    .spot-card,
    .pricing-card,
    .testimonial-card,
    .blog-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .fade-in-scale {
        opacity: 1;
        transform: none;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* --- Spot Detail Additional Styles --- */
.spot-metric-card-label { font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 12px; }
.spot-metric-card-value { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; color: var(--ink); line-height: 1; display: block; }
.spot-metric-card-value.metric-green { color: #1e8449; }
.spot-metric-card-value.metric-gold { color: var(--gold); }
.spot-metric-card-value.metric-slate { color: var(--slate); }
.spot-metric-card-unit { font-size: 0.8rem; color: var(--slate); font-weight: 300; margin-top: 4px; display: block; }
.spot-metric-card-accent { border-color: var(--gold); background: rgba(201, 162, 39, 0.03); }
.spot-metric-bar { width: 100%; height: 4px; background: var(--mist); border-radius: 2px; margin-top: 16px; overflow: hidden; }
.spot-metric-bar-fill { height: 100%; border-radius: 2px; transition: width 0.5s ease; }
.bar-green { background: #2ecc71; }
.bar-gold { background: var(--gold); }
.bar-slate { background: var(--slate); }
.spot-details-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; }
.spot-details-heading { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; }
.spot-detail-block { margin-bottom: 32px; }
.spot-detail-label { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.spot-detail-text { font-size: 0.95rem; line-height: 1.7; color: var(--slate); font-weight: 300; }
.spot-detail-note { display: block; font-size: 0.85rem; color: var(--slate); font-style: italic; margin-top: 8px; }
.spot-tag-lg { font-size: 0.85rem; padding: 6px 14px; }
.spot-includes { margin-top: 48px; }
.spot-includes-list { list-style: none; padding: 0; }
.spot-includes-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--mist); font-size: 0.95rem; color: var(--slate); font-weight: 300; }
.spot-includes-item:last-child { border-bottom: none; }
.spot-includes-icon { color: var(--success); font-weight: 700; flex-shrink: 0; }
.spot-cta-card { position: sticky; top: 100px; }
.spot-cta-card-inner { background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; }
.spot-cta-card-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin-bottom: 24px; }
.spot-cta-price { margin-bottom: 24px; }
.spot-cta-price-value { font-family: var(--font-heading); font-weight: 800; font-size: 3rem; color: var(--ink); }
.spot-cta-price-label { font-size: 0.9rem; color: var(--slate); font-weight: 300; display: block; margin-top: 4px; }
.spot-cta-summary { list-style: none; padding: 0; margin: 0 0 24px; }
.spot-cta-summary li { font-size: 0.9rem; color: var(--slate); padding: 6px 0; border-bottom: 1px solid var(--mist); }
.spot-cta-summary li:last-child { border-bottom: none; }
.btn-full { width: 100%; text-align: center; }
.spot-cta-contact { font-size: 0.85rem; color: var(--slate); font-weight: 300; margin-top: 16px; }
.spot-cta-contact a { color: var(--gold); }
.related-spots { padding: 60px 48px 0; }
.related-spots .container { max-width: var(--container-width); margin: 0 auto; }
.related-spots-heading { font-family: var(--font-heading); margin-bottom: 32px; }
.related-spots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.back-catalogue { padding: 40px 48px 80px; }
.back-catalogue .container { max-width: var(--container-width); margin: 0 auto; }
.back-catalogue-link { font-size: 0.9rem; font-weight: 500; color: var(--gold); text-decoration: none; transition: color var(--transition); }
.back-catalogue-link:hover { color: #b8921f; }

@media (max-width: 768px) {
    .spot-details-layout { grid-template-columns: 1fr; }
    .spot-cta-card { position: static; }
    .related-spots { padding: 40px 24px 0; }
    .related-spots-grid { grid-template-columns: 1fr; }
    .back-catalogue { padding: 24px 24px 60px; }
}
