/* =================================
   v3 - SAS ÉLAGAGE IDF - DESIGN HAUT DE GAMME
   ================================= */
:root {
    --bg-page: #ffffff;
    --bg-soft: #f8f7f3;
    --bg-deep: #1c2a1f;
    --bg-card: #ffffff;
    --color-text: #1c2a1f;
    --color-text-dim: #5e6b5a;
    --color-text-muted: #8a9085;
    --color-accent: #2d5a2d;
    --color-accent-hover: #1f3f1f;
    --color-accent-soft: #e8eee6;
    --color-gold: #c9a961;
    --color-gold-soft: #f5ecd6;
    --color-border: rgba(28,42,31,0.1);
    --color-border-strong: rgba(28,42,31,0.18);
    --shadow-soft: 0 2px 8px rgba(28,42,31,0.06);
    --shadow-card: 0 4px 24px rgba(28,42,31,0.08);
    --shadow-elevated: 0 20px 60px rgba(28,42,31,0.15);
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--bg-page);
    overflow-x: hidden;
}

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

a { color: var(--color-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-accent-hover); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.6rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--color-text-dim); }

/* Eyebrow / Kicker */
.kicker {
    display: inline-block;
    color: var(--color-accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}
.kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--color-accent);
}

/* =================================
   TOP UTILITY
   ================================= */
.top-utility {
    background: var(--bg-deep);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 10px 0;
}
.top-utility .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-utility a { color: var(--color-gold); font-weight: 600; }
.top-utility a:hover { color: #fff; }

/* =================================
   HEADER
   ================================= */
.site-header {
    background: var(--bg-page);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all .3s;
    border-bottom: 1px solid var(--color-border);
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }
.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    gap: 30px;
}

.brand-link { display: flex; align-items: center; gap: 14px; }
.brand-emblem {
    width: 52px;
    height: 52px;
    background: var(--color-accent);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
}
.brand-emblem::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
}
.brand-info { line-height: 1.1; }
.brand-info .brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.02em;
}
.brand-info .brand-sub {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li > a {
    padding: 10px 16px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color .2s;
    position: relative;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--color-accent); }
.main-nav > ul > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--color-accent);
}

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s;
    box-shadow: var(--shadow-elevated);
    flex-direction: column;
    gap: 0 !important;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text);
    font-size: 0.88rem;
    border-radius: var(--radius);
    transition: all .2s;
}
.dropdown-menu a:hover { background: var(--color-accent-soft); color: var(--color-accent); }

.dropdown-mega {
    min-width: 700px;
    left: auto;
    right: 0;
    padding: 24px;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dropdown-mega .dept-block h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}
.dropdown-mega .dept-block a {
    padding: 5px 0;
    font-size: 0.82rem;
}

.menu-toggle, .menu-toggle-label { display: none; }

/* =================================
   BUTTONS
   ================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.92rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .25s;
    font-family: inherit;
    letter-spacing: 0.02em;
    text-align: center;
}
.btn-primary {
    background: var(--color-accent);
    color: #fff !important;
}
.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45,90,45,0.25);
}
.btn-gold {
    background: var(--color-gold);
    color: var(--bg-deep) !important;
    font-weight: 600;
}
.btn-gold:hover {
    background: #b8985a;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border-color: var(--color-border-strong);
    color: var(--color-text) !important;
}
.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent) !important;
}
.btn-outline-light {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: #fff !important;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.btn-lg { padding: 17px 38px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* =================================
   HERO - FULL IMAGE
   ================================= */
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2e1c 0%, #2d5a2d 100%);
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201,169,97,0.2), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(45,90,45,0.4), transparent 60%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, #fff 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, #fff 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 100px 100px;
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content .kicker {
    color: var(--color-gold);
    padding-left: 36px;
}
.hero-content .kicker::before { background: var(--color-gold); }
.hero-content h1 {
    color: #fff;
    margin-bottom: 28px;
    font-weight: 400;
}
.hero-content h1 em {
    color: var(--color-gold);
    font-style: italic;
}
.hero-content .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-item {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}
.hero-trust-item strong {
    display: block;
    color: var(--color-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

/* Hero image card */
.hero-image-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
}
.hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(45deg, #3a5a2a, #2d5a2d);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.hero-img::before {
    content: '🌳';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    opacity: 0.4;
}
.hero-img-caption h4 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.hero-img-caption p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0;
}

/* =================================
   IMAGE PLACEHOLDERS / PHOTOS
   ================================= */
.photo {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, #3a5a2a, #2d5a2d);
}
.photo::before {
    content: attr(data-icon);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.5);
}
.photo-tall { aspect-ratio: 3/4; }
.photo-wide { aspect-ratio: 16/9; }
.photo-square { aspect-ratio: 1; }
.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,42,31,0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}
.photo-overlay h4 { color: #fff; margin: 0; font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.photo-overlay p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.85rem; }

/* =================================
   SECTIONS
   ================================= */
section { padding: 110px 0; }
.section-soft { background: var(--bg-soft); }
.section-deep { background: var(--bg-deep); color: #fff; }
.section-deep h1, .section-deep h2, .section-deep h3, .section-deep h4 { color: #fff; }
.section-deep p { color: rgba(255,255,255,0.85); }
.section-deep .kicker { color: var(--color-gold); }
.section-deep .kicker::before { background: var(--color-gold); }

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}
.section-header.align-left { text-align: left; margin-left: 0; }
.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-dim);
}

/* =================================
   STATS HORIZONTAL
   ================================= */
.stats-strip {
    background: var(--bg-deep);
    padding: 70px 0;
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =================================
   ABOUT - Image + texte
   ================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.about-visual { position: relative; }
.about-visual .photo-main {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #3a5a2a, #2d5a2d);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.about-visual .photo-main::before {
    content: '🌲';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
    opacity: 0.35;
}
.about-visual .photo-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-gold), #b8985a);
    border-radius: var(--radius-md);
    border: 8px solid var(--bg-page);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-deep);
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    padding: 30px;
}
.about-visual .photo-accent .big {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    display: block;
}
.about-visual .photo-accent .small {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 8px;
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.about-text .signature {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 14px;
}
.signature-photo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent), #3a5a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
}
.signature-info strong {
    display: block;
    color: var(--color-text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
}
.signature-info span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* =================================
   SERVICES - CARDS PREMIUM
   ================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .35s;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-accent);
}
.service-card .service-photo {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #3a5a2a, #2d5a2d);
    position: relative;
    overflow: hidden;
}
.service-card .service-photo::before {
    content: attr(data-icon);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    opacity: 0.5;
}
.service-card .service-body {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    margin-bottom: 10px;
    color: var(--color-text);
}
.service-card p {
    font-size: 0.93rem;
    margin-bottom: 20px;
    flex: 1;
}
.service-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-link::after {
    content: '→';
    transition: transform .2s;
}
.service-card:hover .service-link::after { transform: translateX(4px); }

/* =================================
   PROCESS - colonnes
   ================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.process-step {
    text-align: center;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    right: -20px;
    width: 40px;
    height: 1px;
    background: var(--color-border-strong);
}
.process-num {
    width: 72px;
    height: 72px;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    border: 1px solid var(--color-accent);
}

/* =================================
   GALLERY
   ================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #3a5a2a, #2d5a2d);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::before {
    content: attr(data-icon);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.45;
}
.gallery-item-tall { grid-row: span 2; aspect-ratio: 1/2; }

/* =================================
   ZONES - DEPARTEMENTS
   ================================= */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.dept-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all .3s;
}
.dept-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card);
}
.dept-card .dept-number {
    color: var(--color-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}
.dept-card .dept-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
}
.dept-card ul {
    list-style: none;
}
.dept-card li {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    padding: 3px 0;
}
.dept-card li::before {
    content: '•';
    color: var(--color-accent);
    margin-right: 8px;
}

/* =================================
   TESTIMONIALS - PREMIUM
   ================================= */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 6rem;
    color: var(--color-accent-soft);
    line-height: 1;
}
.test-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 18px;
}
.test-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 24px;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
}
.test-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), #3a5a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
}
.test-author-info strong {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
}
.test-author-info span {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

/* =================================
   CTA BANNER
   ================================= */
.cta-banner {
    background: var(--bg-deep);
    position: relative;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(201,169,97,0.15), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(45,90,45,0.5), transparent 60%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}
.cta-content h2 em { color: var(--color-gold); font-style: italic; }
.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 36px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =================================
   FORMULAIRE CONTACT
   ================================= */
.contact-section {
    padding: 110px 0;
    background: var(--bg-soft);
}
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-list {
    list-style: none;
    margin-top: 32px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-text strong {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.95rem;
}
.contact-text span,
.contact-text a {
    color: var(--color-text-dim);
    font-size: 0.92rem;
}

.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 44px 38px;
    box-shadow: var(--shadow-card);
}
.contact-form-card h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.88rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-page);
    color: var(--color-text);
    transition: all .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-soft);
}
.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.92rem;
}
.alert-ok { background: #e8f3dc; color: #2d5a2d; border: 1px solid #b8d99f; }
.alert-ko { background: #fde8e8; color: #9b1c1c; border: 1px solid #f5b5b5; }

/* =================================
   PAGE HEADER
   ================================= */
.page-hero {
    background: var(--bg-deep);
    color: #fff;
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201,169,97,0.15), transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--color-gold); }
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero .lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-top: 16px;
    max-width: 700px;
}

.article-body {
    max-width: 880px;
    margin: 0 auto;
    padding: 90px 32px;
}
.article-body h2 {
    margin-top: 56px;
    color: var(--color-text);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
    margin-top: 32px;
    color: var(--color-accent);
}
.article-body p { font-size: 1.02rem; }
.article-body ul, .article-body ol {
    margin: 16px 0 24px 28px;
    color: var(--color-text-dim);
}
.article-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}
.article-body strong { color: var(--color-text); }

.callout {
    background: var(--color-accent-soft);
    border-left: 4px solid var(--color-accent);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 36px 0;
}
.callout p { margin: 0; }
.callout strong { color: var(--color-accent); }

.callout-gold {
    background: var(--color-gold-soft);
    border-left-color: var(--color-gold);
}
.callout-gold strong { color: #8a7536; }

/* =================================
   FOOTER
   ================================= */
.site-footer {
    background: var(--bg-deep);
    color: rgba(255,255,255,0.75);
    padding: 90px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-col h4 {
    color: var(--color-gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 22px;
}
.footer-col p, .footer-col li { font-size: 0.9rem; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--color-gold); }

.footer-brand .brand-emblem { margin-bottom: 18px; }
.footer-brand-title {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.footer-departments {
    column-count: 2;
    column-gap: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* =================================
   FLOATING CALL
   ================================= */
.float-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--color-accent);
    color: #fff !important;
    border-radius: 30px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 8px 24px rgba(45,90,45,0.4);
    z-index: 999;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.float-call:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* =================================
   RESPONSIVE
   ================================= */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image-card { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .dept-grid, .services-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .stat-item:nth-child(2) { border-right: none; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .process-step::after { display: none; }
    .testimonials-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-utility .container > span:last-child { display: none; }

    .menu-toggle-label {
        display: block;
        font-size: 1.6rem;
        cursor: pointer;
        color: var(--color-text);
        padding: 4px;
    }
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 32px;
        background: var(--bg-card);
        border: 1px solid var(--color-border);
        box-shadow: var(--shadow-elevated);
        width: 280px;
        padding: 10px;
        gap: 0;
        border-radius: var(--radius-md);
    }
    .menu-toggle:checked ~ ul { display: flex; }
    .main-nav { position: relative; }
    .main-nav > ul > li { width: 100%; }
    .main-nav > ul > li > a { padding: 12px 16px; display: block; }
    .dropdown-menu, .dropdown-mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 0;
        padding-left: 14px;
        display: none !important;
    }
    .dropdown:hover .dropdown-menu, .dropdown:hover .dropdown-mega { display: block !important; }
    .dropdown-mega { grid-template-columns: 1fr; }

    .header-cta { display: none; }
    section { padding: 70px 0; }
    .hero { min-height: 600px; }
    .hero-content h1 { font-size: 2.2rem; }
    .form-2col { grid-template-columns: 1fr; }
    .dept-grid, .services-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-departments { column-count: 1; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .about-visual .photo-accent { width: 50%; bottom: -20px; right: -20px; }
}
