/* ============================================
   ENOPEC Ingénierie - Feuille de styles
   Design épuré, professionnel, sans icônes
   ============================================ */

:root {
    --primary: #0f4a8e;
    --primary-light: #1e6fb5;
    --accent: #f8971f;
    --accent-light: #faa940;
    --text: #2d3748;
    --text-muted: #718096;
    --bg: #f7fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --header-h: 72px;
    --container: min(1200px, 100% - 2rem);
    --space-section: 5rem;
    --space-block: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

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

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

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    padding: 1rem 0;
    transition: box-shadow 0.2s, padding 0.2s;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo img {
    height: 110px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
}

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

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.nav-cta:hover {
    background: var(--accent-light);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-h);
    margin-bottom: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 74, 142, 0.6) 0%, rgba(15, 74, 142, 0.45) 50%, rgba(15, 74, 142, 0.7) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem 1rem;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.hero-lead {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0 0 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.pill {
    padding: 0.6rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ============================================
   Sections communes
   ============================================ */
.section {
    padding: var(--space-section) 0;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-block);
}

.section-head h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.section-head p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.05rem;
}

/* ============================================
   Intro (première section sous le hero)
   ============================================ */
.intro {
    padding: var(--space-section) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.intro-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.intro-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0 0 1.25rem;
}

.intro-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.intro-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.intro-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ============================================
   Prestations
   ============================================ */
.section-prestations {
    background: var(--bg);
}

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

.prestation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

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

.prestation-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.prestation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestation-body {
    padding: 1.25rem;
}

.prestation-body h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.prestation-body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.prestation-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

.prestation-card-wide .prestation-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prestation-card-wide .prestation-img {
    aspect-ratio: auto;
    min-height: 260px;
}

.prestation-card-wide .prestation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Outils
   ============================================ */
.section-outils {
    background: var(--white);
}

.outils-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.outil-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.outil-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.outil-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outil-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
    padding: 1rem 1.25rem 0.25rem;
}

.outil-card p {
    margin: 0;
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.chauffage-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
}

.chauffage-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
}

.chauffage-text p {
    margin: 0;
    opacity: 0.95;
}

.chauffage-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.chauffage-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ============================================
   Équipements
   ============================================ */
.section-equipements {
    padding-top: 0;
}

.equipements-hero {
    position: relative;
    height: 280px;
    margin-bottom: 2rem;
}

.equipements-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipements-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 74, 142, 0.4), rgba(15, 74, 142, 0.6));
}

.equipements-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.equipements-list li {
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ============================================
   Accompagnement (Qui sommes-nous)
   ============================================ */
.section-accompagnement {
    background: var(--bg);
}

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

.accompagnement-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s;
}

.accompagnement-card:hover {
    box-shadow: var(--shadow-lg);
}

.accompagnement-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.accompagnement-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accompagnement-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
    padding: 1rem 1.25rem 0.25rem;
}

.accompagnement-card p {
    margin: 0;
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
}

.btn-discover {
    margin: 0 1.25rem 1.25rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-discover:hover {
    background: var(--accent-light);
}

/* ============================================
   Sections détaillées (cachées par défaut)
   ============================================ */
.detail-section {
    padding: var(--space-section) 0;
    background: var(--white);
}

.detail-section.hidden {
    display: none;
}

.detail-section h2 {
    font-family: 'Libre Baskerville', serif;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.detail-section .lead {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
}

.btn-back {
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--border);
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-back:hover {
    background: var(--text-muted);
    color: var(--white);
}

.detail-content h3 {
    font-size: 1.15rem;
    margin: 1rem 0 0.5rem;
}

.detail-content p {
    margin: 0 0 0.75rem;
}

/* ============================================
   Valeurs
   ============================================ */
.section-valeurs {
    padding-top: 0;
}

.valeurs-hero {
    position: relative;
    height: 240px;
    margin-bottom: 2rem;
}

.valeurs-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.valeurs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 74, 142, 0.35), rgba(15, 74, 142, 0.55));
}

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

.valeur-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.valeur-item h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.valeur-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================
   Méthodologie
   ============================================ */
.section-methodo {
    background: var(--bg);
}

.methodo-block {
    background: var(--primary);
    color: var(--white);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.methodo-block h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.methodo-block ul {
    margin: 0;
    padding: 0 0 0 1.25rem;
}

.methodo-block li {
    margin-bottom: 0.5rem;
}

.methodo-block li::marker {
    color: var(--accent-light);
}

/* ============================================
   Contact
   ============================================ */
.section-contact {
    background: var(--bg);
}

.contact-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.contact-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.contact-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-logo img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

.contact-info-block {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-info-block h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-info-block p {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
}

.contact-info-block a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    min-width: 0;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(15, 74, 142, 0.12);
}

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

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-row label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.radio-row input {
    width: auto;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--accent-light);
}

/* ============================================
   Parchemin
   ============================================ */
.section-parchemin {
    background: var(--bg);
}

.parchemin-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
}

.parchemin-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.parchemin-visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.parchemin-text h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin: 0 0 1rem;
}

.parchemin-text p {
    margin: 0 0 0.75rem;
    color: var(--text);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
}

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

.footer-brand img {
    height: 90px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact p {
    margin: 0.25rem 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.credits a {
    color: var(--white);
    text-decoration: underline;
}

/* ============================================
   Modal
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 1rem 1rem;
    overflow-y: auto;
}

.modal.hidden {
    display: none;
}

.modal.visible .modal-backdrop {
    opacity: 1;
}

.modal.visible .modal-box {
    opacity: 1;
    transform: translateY(0);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: var(--border);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text);
}

.modal-close:hover {
    background: var(--text-muted);
    color: var(--white);
}

.modal-body h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 0 0.25rem;
}

.modal-body h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.modal-body p,
.modal-body ul {
    margin: 0 0 0.75rem;
}

.modal-list {
    padding-left: 1.25rem;
}

.modal-list li {
    margin-bottom: 0.35rem;
}

/* Clic sur le backdrop ferme le modal */
.modal .modal-backdrop {
    cursor: pointer;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-visual {
        order: -1;
    }
    .prestations-grid {
        grid-template-columns: 1fr 1fr;
    }
    .prestation-card-wide {
        grid-template-columns: 1fr;
    }
    .prestation-card-wide .prestation-body {
        order: -1;
    }
    .outils-grid {
        grid-template-columns: 1fr;
    }
    .chauffage-block {
        grid-template-columns: 1fr;
    }
    .accompagnement-grid {
        grid-template-columns: 1fr 1fr;
    }
    .valeurs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        max-width: none;
    }
    .contact-form-wrapper {
        order: -1;
    }
    .parchemin-layout {
        grid-template-columns: 1fr;
    }
    .parchemin-visual {
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-toggle span {
        transition: transform 0.2s, opacity 0.2s;
    }
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    .prestation-card-wide .prestation-img {
        min-height: 220px;
    }
    .accompagnement-grid {
        grid-template-columns: 1fr;
    }
    .valeurs-grid {
        grid-template-columns: 1fr;
    }
    .equipements-hero,
    .valeurs-hero {
        height: 200px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .modal {
        padding: 80px 0.75rem 0.75rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-section: 3rem;
    }
    .hero {
        min-height: 75vh;
    }
    .hero-pills {
        flex-direction: column;
    }
    .pill {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
}
