:root {
    --color-primary: #ede8e0;
    --color-secondary: #e2dbd0;
    --color-accent: #9c6b48;
    --color-accent-light: #b38260;
    --color-text: #2b2118;
    --color-text-muted: #6d5e50;
    --color-bg-dark: #f6f3ed;
    --color-bg-card: rgba(222, 215, 203, 0.35);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(45, 53, 72, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.95) 0%, transparent 100%);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: 0.05em;
}

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

.nav-links > li {
    position: relative;
}

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

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

.nav-links > li > a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 98, 0.2);
    list-style: none;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.02em;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.dropdown a:hover {
    background: rgba(201, 169, 98, 0.1);
    border-left-color: var(--color-accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-accent);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 5rem;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 53, 72, 0.2) 100%);
}

.page-hero-content {
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-number {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 600;
    color: rgba(201, 169, 98, 0.2);
    display: block;
    margin-bottom: 1rem;
}

.page-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.page-hero h1 span {
    font-style: italic;
    color: var(--color-accent);
}

.page-intro {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Expertise Content Section */
.expertise-content {
    padding: 5rem 5%;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.content-main h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.content-main h2 span {
    font-style: italic;
    color: var(--color-accent);
}

.content-main h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 3rem 0 1.5rem;
    color: var(--color-text);
}

.content-main p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
}

.content-main .lead {
    font-size: 1.15rem;
    color: var(--color-text);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 2rem;
    transition: all 0.4s ease;
}

.service-item:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-3px);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

.service-item h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.service-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Expertise List */
.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
}

.expertise-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    color: var(--color-text-muted);
    font-weight: 400;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.expertise-list li strong {
    color: var(--color-text);
    font-weight: 500;
}

/* Blockquote */
blockquote {
    background: var(--color-bg-card);
    border-left: 3px solid var(--color-accent);
    padding: 2rem;
    margin: 2.5rem 0;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--color-text-muted);
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 2rem;
}

.sidebar-card.highlight {
    border-color: var(--color-accent);
    background: rgba(201, 169, 98, 0.1);
}

.sidebar-card.urgent {
    border-color: var(--color-accent);
}

.sidebar-card h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.sidebar-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.sidebar-card .btn {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
}

.phone-link,
.email-link {
    display: block;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: var(--color-accent-light);
}

.other-expertise ul {
    list-style: none;
}

.other-expertise li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.other-expertise li:last-child {
    border-bottom: none;
}

.other-expertise a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.other-expertise a:hover {
    color: var(--color-accent);
}

/* Tips Card */
.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Highlight List */
.highlight-list {
    list-style: none;
}

.highlight-list li {
    padding: 0.5rem 0;
    color: var(--color-text);
    font-weight: 400;
}

/* Jurisdiction Sidebar */
.jurisdiction-sidebar {
    list-style: none;
}

.jurisdiction-sidebar li {
    padding: 0.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.jurisdiction-sidebar li:last-child {
    border-bottom: none;
}

/* Dual Track */
.dual-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.track-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 2rem;
}

.track-item h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.track-item ul {
    list-style: none;
}

.track-item li {
    padding: 0.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.track-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Jurisdiction List */
.jurisdiction-list {
    margin: 2rem 0;
}

.jurisdiction-item {
    padding: 1.5rem;
    background: var(--color-bg-card);
    border-left: 3px solid var(--color-accent);
    margin-bottom: 1rem;
}

.jurisdiction-item h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.jurisdiction-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.action-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 1.5rem;
}

.action-item h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.action-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Strategy Steps */
.strategy-steps {
    margin: 2rem 0;
}

.strategy-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Regulators Grid */
.regulators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.regulator-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 2rem;
    text-align: center;
}

.regulator-item h4 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.regulator-item p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.regulator-item p strong {
    color: var(--color-text);
    font-size: 0.8rem;
}

/* Intervention List */
.intervention-list {
    margin: 2rem 0;
}

.intervention-item {
    padding: 1.5rem;
    border-left: 3px solid var(--color-accent);
    margin-bottom: 1rem;
    background: var(--color-bg-card);
}

.intervention-item h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.intervention-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 98, 0.1) 50%, transparent 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.cta-content h2 span {
    font-style: italic;
    color: var(--color-accent);
}

.cta-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1 1 300px;
    }
}

@media (max-width: 1024px) {
    .services-grid,
    .dual-track,
    .action-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .dropdown {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        margin-top: 1rem;
    }

    .dropdown a {
        padding: 0.5rem 0;
        text-align: center;
    }

    .page-hero {
        min-height: 50vh;
        padding: 8rem 5% 4rem;
    }

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

    footer {
        flex-direction: column;
        text-align: center;
    }

    .content-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        flex: 1 1 100%;
    }
}

/* ========================
   HOME PAGE STYLES
   ======================== */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero h1 span {
    color: var(--color-accent);
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

/* Section Styling */
section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-text);
}

.section-title span {
    font-style: italic;
    color: var(--color-accent);
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(45, 53, 72, 0.2) 50%, transparent 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.about-text p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-size: 4rem;
    float: left;
    line-height: 1;
    padding-right: 1rem;
    color: var(--color-accent);
}

.parcours-list {
    list-style: none;
    margin-top: 2rem;
}

.parcours-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.parcours-list li::before {
    content: '→';
    color: var(--color-accent);
    font-size: 1.2rem;
}

.parcours-list strong {
    color: var(--color-text);
    font-weight: 500;
}

.parcours-list span {
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Expertise Grid (Home) */
.expertise-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 98, 0.4);
    background: rgba(45, 53, 72, 0.6);
}

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

.expertise-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(201, 169, 98, 0.3);
    font-weight: 600;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.expertise-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.8;
}

.expertise-card .card-arrow {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.expertise-card:hover .card-arrow {
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 46, 0.5) 100%);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.social-links a:hover svg {
    stroke: var(--color-bg-dark);
}

.social-links svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
    transition: stroke 0.3s ease;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(13, 17, 23, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Form Status Message */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-accent-light);
}

.form-status.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid #dc3545;
    color: #f5a5a5;
}

.form-status.error a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5% 6rem;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin: 3rem 0 1.5rem;
    color: var(--color-text);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: var(--color-text);
}

.legal-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.legal-content strong {
    color: var(--color-text);
    font-weight: 500;
}

.legal-content em {
    color: var(--color-text-muted);
}

.legal-content ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.legal-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.7;
}

.legal-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--color-accent-light);
}

/* Home Page Responsive */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ========================
   THÈME GRÈGE & CUIVRE
   ======================== */

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, var(--color-accent) 50%, transparent 90%);
    z-index: 10000;
    pointer-events: none;
}

::selection {
    background: rgba(156, 107, 72, 0.18);
    color: var(--color-text);
}

body::before {
    background:
        radial-gradient(ellipse at 25% 15%, rgba(156, 107, 72, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 85%, rgba(222, 215, 203, 0.5) 0%, transparent 50%),
        linear-gradient(170deg, #f6f3ed 0%, #ede8e0 100%);
}

nav {
    background: rgba(246, 243, 237, 0.93);
    box-shadow: 0 1px 0 rgba(156, 107, 72, 0.08);
}

nav.scrolled {
    background: rgba(246, 243, 237, 0.98);
    box-shadow: 0 1px 8px rgba(43, 33, 24, 0.06);
}

.dropdown {
    background: rgba(253, 251, 248, 0.98);
    border: 1px solid rgba(156, 107, 72, 0.1);
    box-shadow: 0 8px 30px rgba(43, 33, 24, 0.07);
}

.dropdown a:hover {
    background: rgba(156, 107, 72, 0.05);
}

.page-hero {
    background: linear-gradient(180deg, transparent 0%, rgba(222, 215, 203, 0.3) 100%);
}

.about {
    background: linear-gradient(180deg, transparent 0%, rgba(222, 215, 203, 0.4) 50%, transparent 100%);
}

.contact {
    background: linear-gradient(180deg, transparent 0%, rgba(237, 232, 224, 0.5) 100%);
}

.cta-section {
    background: linear-gradient(180deg, transparent 0%, rgba(156, 107, 72, 0.04) 50%, transparent 100%);
}

.page-number {
    color: rgba(156, 107, 72, 0.14);
}

.expertise-number {
    color: rgba(156, 107, 72, 0.18);
}

.service-item,
.track-item,
.regulator-item,
.action-item,
.expertise-card,
.contact-form,
.sidebar-card {
    border-color: rgba(156, 107, 72, 0.1);
    box-shadow: 0 1px 4px rgba(43, 33, 24, 0.03);
}

.service-item:hover,
.expertise-card:hover {
    border-color: rgba(156, 107, 72, 0.22);
    box-shadow: 0 8px 24px rgba(43, 33, 24, 0.06);
}

.expertise-card:hover {
    background: rgba(222, 215, 203, 0.55);
}

.sidebar-card.highlight {
    background: rgba(156, 107, 72, 0.05);
}

.expertise-list li,
.strategy-step {
    border-bottom-color: rgba(156, 107, 72, 0.1);
}

.other-expertise li,
.jurisdiction-sidebar li {
    border-bottom-color: rgba(156, 107, 72, 0.07);
}

.parcours-list li {
    border-bottom-color: rgba(156, 107, 72, 0.1);
}

footer {
    border-top-color: rgba(156, 107, 72, 0.1);
}

.social-links a {
    border-color: rgba(156, 107, 72, 0.22);
}

.social-links a:hover svg {
    stroke: #ffffff;
}

.form-group input,
.form-group textarea {
    background: rgba(253, 251, 248, 0.7);
    border-color: rgba(156, 107, 72, 0.12);
}

.form-status.success {
    background: rgba(156, 107, 72, 0.08);
}

.form-status.error {
    background: rgba(180, 50, 50, 0.06);
    border-color: #8b2020;
    color: #8b2020;
}

.form-status.error a {
    color: var(--color-accent);
}

.btn-primary {
    color: #ffffff;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(156, 107, 72, 0.22);
}

.step-number {
    color: #ffffff;
}

.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin: 1rem auto 0;
}

.page-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-accent);
    margin: 0.75rem auto 0;
}

