:root {
    --bg: #faf7f2;
    --bg-alt: #f3ede2;
    --text: #1a1715;
    --text-muted: #5e574f;
    --accent: #b08442;
    --accent-soft: #c9a466;
    --accent-dark: #7a5a28;
    --accent-subtle: rgba(176, 132, 66, 0.08);
    --rule-gold: rgba(176, 132, 66, 0.28);
    --rule-ink: rgba(26, 23, 21, 0.1);
    --rule-subtle: rgba(26, 23, 21, 0.06);
    --ink: #1a1715;
    --paper: #faf7f2;
    --focus: #7a5a28;
    --status-green: #1e6939;
    --status-bg: rgba(30, 105, 57, 0.07);
    --status-border: rgba(30, 105, 57, 0.25);
    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;
    --space: 2rem;
    --section: 6.5rem;
    --max: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    scroll-padding-top: 6rem;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    overflow-x: clip;
    min-width: 0;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.25em;
    transition: color 0.15s ease, border-color 0.15s ease;
}

a:hover {
    color: var(--accent-dark);
}

:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 2000;
    padding: 0.6rem 1.25rem;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: top 0.2s ease;
}

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

.container {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--space);
    min-width: 0;
}

/* Site Header & Navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    background: rgba(250, 247, 242, 0.95);
    border-bottom: 1px solid var(--rule-ink);
    backdrop-filter: blur(8px);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.navbar.is-scrolled {
    border-bottom-color: var(--rule-gold);
    background: rgba(250, 247, 242, 0.98);
}

.nav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 2rem;
    padding: 1rem 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

.logo-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 5.5rem;
    padding: 0 1rem;
    border: 1px solid var(--ink);
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
    background: var(--ink);
    color: var(--paper);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.75rem;
    list-style: none;
}

.nav-links li {
    flex: 0 0 auto;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
    color: var(--text);
}

.nav-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--accent);
}

.btn-nav {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.25rem !important;
    min-height: 38px !important;
    font-family: var(--font-heading) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: var(--text) !important;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 2px;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.btn-nav:hover,
.btn-nav:focus-visible {
    background: var(--accent) !important;
    color: #ffffff !important;
}

.btn-nav::after {
    display: none !important;
}

/* Hero Section */

.hero {
    padding: 4rem 0 5rem;
    border-bottom: 1px solid var(--rule-ink);
}

.hero-status-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--rule-gold);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--status-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--status-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(30, 105, 57, 0.15);
}

.location-tag {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 4rem 5rem;
    align-items: start;
    margin-bottom: 4.5rem;
}

.hero-portrait {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portrait-frame {
    border: 1px solid var(--rule-gold);
    border-bottom: 3px solid var(--accent);
    padding: 0.5rem;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 23, 21, 0.03);
}

.portrait-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: 50% 18%;
}

.portrait-label {
    display: flex;
    flex-direction: column;
    padding-left: 0.25rem;
}

.portrait-label strong {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
}

.portrait-label span {
    font-size: 0.8125rem;
    color: var(--accent-dark);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-content {
    min-width: 0;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.25rem, 4.5vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.hero-description strong {
    color: var(--text);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #0f0d0c;
    border-color: var(--accent);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--rule-gold);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--accent);
    background: var(--accent-subtle);
    color: var(--text);
}

/* Stats Band — High-End Hairline Row */

.hero-stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rule-gold);
    border-bottom: 1px solid var(--rule-gold);
}

.stat-cell {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-right: 1px solid var(--rule-gold);
}

.stat-cell:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
}

.stat-plus {
    color: var(--accent);
    font-weight: 400;
}

.stat-caption {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Section Global Architecture */

.section {
    padding: var(--section) 0;
    scroll-margin-top: 1rem;
}

.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--rule-gold);
    border-bottom: 1px solid var(--rule-gold);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.4vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.85rem;
    color: var(--text);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.section-divider {
    width: 3.5rem;
    height: 2px;
    background: var(--accent);
    margin-top: 1.25rem;
}

.lead {
    max-width: 50rem;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 3.5rem;
}

/* Section 01 / Approche & Vision */

.about-editorial-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.95fr;
    gap: 4rem 5rem;
    align-items: start;
}

.editorial-lead {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 2.75rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule-gold);
}

.editorial-pillars {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pillar-row {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
    align-items: start;
}

.pillar-marker {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.pillar-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text);
    letter-spacing: -0.015em;
}

.pillar-body p {
    color: var(--text-muted);
    line-height: 1.75;
}

.editorial-side {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.manifesto-quote {
    border-left: 2px solid var(--accent);
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
}

.manifesto-symbol {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    line-height: 1;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.manifesto-body h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.manifesto-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.editorial-proof {
    border-top: 1px solid var(--rule-gold);
    padding-top: 2rem;
}

.editorial-proof h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.65rem;
}

.editorial-proof p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Services Roster — Sections Conseil & Dev (Editorial Grid) */

.services-roster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule-gold);
    border-bottom: 1px solid var(--rule-gold);
}

.service-entry {
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--rule-gold);
    transition: background 0.2s ease;
}

.service-entry:hover {
    background: rgba(255, 255, 255, 0.45);
}

.service-entry:last-child {
    border-right: none;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule-gold);
}

.service-index {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--accent);
}

.service-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.35rem;
}

.service-entry h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.service-entry .dash-list {
    flex: 1;
    margin-bottom: 2.25rem;
}

.dash-list {
    list-style: none;
}

.dash-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dash-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.dash-list strong {
    color: var(--text);
    font-weight: 600;
}

.service-action {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--rule-gold);
}

.link-luxury {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
    text-decoration: none;
    transition: color 0.15s ease, gap 0.15s ease;
}

.link-luxury span {
    color: var(--accent);
    transition: transform 0.15s ease;
}

.link-luxury:hover {
    color: var(--accent-dark);
}

.link-luxury:hover span {
    transform: translateX(4px);
}

/* Section 04 / Méthodologie */

.process-triptych {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule-gold);
    border-bottom: 1px solid var(--rule-gold);
    margin-bottom: 3.5rem;
}

.process-column {
    padding: 3rem 2.25rem;
    border-right: 1px solid var(--rule-gold);
}

.process-column:last-child {
    border-right: none;
}

.process-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--accent);
    display: block;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule-gold);
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text);
}

.process-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.process-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2.25rem 2.75rem;
    background: #ffffff;
    border: 1px solid var(--rule-gold);
    border-left: 3px solid var(--accent);
}

.process-banner p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0;
}

/* Section 05 / Timeline Editorial */

.timeline-editorial {
    list-style: none;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rule-gold);
}

.timeline-entry {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--rule-gold);
    align-items: start;
}

.entry-date-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.25rem;
}

.entry-date {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-dark);
    line-height: 1.4;
}

.entry-pill {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    background: var(--bg-alt);
    border: 1px solid var(--rule-gold);
    width: fit-content;
}

.entry-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.entry-company {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.15rem;
    font-size: 1.05rem;
}

.entry-summary {
    color: var(--text-muted);
    margin-bottom: 1.15rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Section 06 / Retraide.fr Manifesto Feature */

.manifesto-feature {
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid var(--rule-gold);
    padding: 3.5rem 0;
}

.manifesto-tag {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 1.75rem;
}

.manifesto-prose {
    max-width: 52rem;
}

.manifesto-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.manifesto-prose p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.manifesto-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 2.5rem 0 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule-gold);
}

.manifesto-tags-list span {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    background: #ffffff;
    border: 1px solid var(--rule-gold);
    padding: 0.4rem 1.1rem;
    border-radius: 2px;
}

.manifesto-footer {
    display: flex;
}

.text-link {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
}

.text-link:hover {
    color: var(--ink);
}

/* Sections 07 & 08 / Two-Col Editorial Grids (Education & FAQ) */

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--rule-gold);
}

.two-col-entry {
    padding: 2.75rem 3rem 2.75rem 0;
    border-bottom: 1px solid var(--rule-gold);
    border-right: 1px solid var(--rule-gold);
}

.two-col-entry:nth-child(2n) {
    padding-left: 3rem;
    padding-right: 0;
    border-right: none;
}

.two-col-entry .entry-date {
    display: block;
    margin-bottom: 0.5rem;
}

.two-col-entry h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 0.65rem;
    color: var(--text);
}

.entry-subtitle {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.entry-place {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.two-col-entry p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */

.footer {
    padding: 5rem 0 3rem;
    border-top: 3px solid var(--accent);
    background: #14110f;
    color: #e5ded6;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-brand .logo-img {
    filter: brightness(1.25);
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
    display: block;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #9e9488;
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 1.75rem;
    list-style: none;
}

.footer-links a {
    color: #c7bfb5;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

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

.footer-copy {
    grid-column: 1 / -1;
    font-size: 0.875rem;
    color: #7a7064;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Responsive */

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-portrait {
        max-width: 220px;
    }

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

    .stat-cell:nth-child(2) {
        border-right: none;
    }

    .stat-cell:nth-child(3),
    .stat-cell:nth-child(4) {
        border-top: 1px solid var(--rule-gold);
    }

    .about-editorial-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-roster,
    .process-triptych {
        grid-template-columns: 1fr;
    }

    .service-entry,
    .process-column {
        border-right: none;
        border-bottom: 1px solid var(--rule-gold);
    }

    .service-entry:last-child,
    .process-column:last-child {
        border-bottom: none;
    }

    .timeline-entry {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .two-col-entry,
    .two-col-entry:nth-child(2n) {
        padding: 2rem 0;
        border-right: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --section: 4.5rem;
        --space: 1.25rem;
    }

    html {
        scroll-padding-top: 5.5rem;
    }

    .hero {
        padding: 2.5rem 0 3.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.025em;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .nav-inner {
        flex-wrap: wrap;
        align-items: center;
        padding: 0.75rem 0;
    }

    .nav-toggle:not([hidden]) {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 0.75rem;
        border-top: 1px solid var(--rule-gold);
    }

    .navbar.is-open .nav-links,
    .nav-toggle[hidden] + .nav-links {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
        border-bottom: 1px solid var(--rule-ink);
    }

    .nav-links a[aria-current="page"]::after {
        display: none;
    }

    .nav-links a[aria-current="page"] {
        color: var(--accent-dark);
        font-weight: 700;
    }

    .btn-nav {
        margin-top: 0.75rem;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-stats-band {
        grid-template-columns: 1fr;
    }

    .stat-cell {
        border-right: none;
        border-bottom: 1px solid var(--rule-gold);
        padding: 1.5rem 1rem;
    }

    .stat-cell:last-child {
        border-bottom: none;
    }

    .process-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 1.75rem 1.5rem;
    }

    .process-banner .btn {
        width: 100%;
    }
}

/* Print */

@media print {
    .site-header,
    .skip-link,
    .hero-actions,
    .nav-toggle,
    .btn,
    .link-luxury,
    .process-banner {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 11pt;
    }

    .section,
    .hero {
        padding: 1.5rem 0;
        break-inside: avoid;
    }

    .section-alt {
        background: transparent;
        border: none;
    }

    a {
        color: inherit;
        text-decoration: none;
    }
}



