/* ============================================
   AAS-FOG — Page Section Styles
   Extracted from maquette/index.html
   ============================================ */

/* ============================================
   HERO — Full page with gallery
   ============================================ */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: 100%;
    max-width: 100%;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.85rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.75rem;
    width: fit-content;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-value {
    padding: 0.35rem 0.9rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
}

/* Gallery */
.hero-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-gallery__main {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}

.hero-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder when no image yet */
.hero-gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
}

.hero-gallery__thumb {
    flex: 1;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
    opacity: 0.6;
}

.hero-gallery__thumb:hover,
.hero-gallery__thumb:focus-visible {
    opacity: 0.85;
}

.hero-gallery__thumb.active {
    border-color: var(--accent-soft);
    opacity: 1;
}

.hero-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-gallery__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    .hero-content {
        padding: 1rem 0 0;
    }
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CONDITIONS
   ============================================ */

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

.condition-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.condition-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.condition-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--navy);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.condition-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    line-height: 1.3;
}

.condition-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.condition-card .price {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--navy);
}

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

/* ============================================
   FEATURES
   ============================================ */

.features-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: background 0.25s, border-color 0.25s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .features-wrap { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .features-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
    .features-wrap { grid-template-columns: 1fr; }
}

/* ============================================
   NEWS — Split layout (1 featured + list)
   ============================================ */

.news-section {
    background: var(--sand);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.news-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 2rem 0;
}

.news-split {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 2.5rem;
    align-items: stretch;
}

/* Featured article (left) */
.news-featured {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s, transform 0.2s;
}

.news-featured:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.news-featured__image {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26,42,68,0.08) 0%, rgba(26,42,68,0.04) 100%);
}

.news-featured__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-featured__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.3;
}

.news-featured__body {
    padding: 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-featured__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.news-featured__cat {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    background: rgba(181,84,30,0.08);
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
}

.news-featured__date {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
}

.news-featured__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.news-featured__excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.news-featured__more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
}

.news-featured:hover .news-featured__more {
    color: var(--accent-hover);
}

/* List articles (right) */
.news-list {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.news-list__heading {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

.news-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.news-list__item:last-of-type {
    border-bottom: none;
}

.news-list__content {
    flex: 1;
    min-width: 0;
}

.news-list__title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.news-list__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.news-list__cat {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--accent);
}

.news-list__date {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
}

.news-list__arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: color 0.15s, transform 0.15s;
}

.news-list__item:hover .news-list__title {
    color: var(--accent);
}

.news-list__item:hover .news-list__arrow {
    color: var(--accent);
    transform: translateX(2px);
}

.news-list__footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-light);
    text-align: center;
}

@media (max-width: 700px) {
    .news-split { grid-template-columns: 1fr; }
}

/* ============================================
   NEWS — Legacy grid (category pages)
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.25s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

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

.news-card--featured {
    grid-row: 1 / 3;
}

.news-card-image {
    height: 160px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    color: var(--text-muted);
}

.news-card--featured .news-card-image {
    height: 100%;
    min-height: 240px;
}

.news-tag {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    padding: 0.2rem 0.6rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
}

.news-tag--green { background: var(--success); }
.news-tag--navy { background: var(--navy); }

.news-body {
    padding: 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.news-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.news-body h3 a {
    color: var(--charcoal);
    text-decoration: none;
}
.news-body h3 a:hover { color: var(--accent); }

.news-card--featured .news-body h3 {
    font-size: 1.2rem;
}

.news-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.75rem;
}

.news-read-more svg { width: 14px; height: 14px; }

.news-cta {
    text-align: center;
    margin-top: 2.25rem;
}

@media (max-width: 700px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-card--featured { grid-row: auto; }
    .news-card--featured .news-card-image { min-height: 180px; }
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    color: var(--charcoal);
}

.contact-row {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-row-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--sand);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.contact-row-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-row-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.55;
}

.contact-map {
    background: var(--sand);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    gap: 0.5rem;
    font-size: 0.85rem;
    min-height: 300px;
}

.contact-map-icon {
    font-size: 2rem;
    opacity: 0.4;
}

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

/* ============================================
   TABS (Chroniques de presse)
   ============================================ */

.aas-tabs__bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}
.aas-tabs__tab {
    padding: 0.6rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.aas-tabs__tab:hover {
    color: var(--text);
}
.aas-tabs__tab--active {
    color: var(--navy);
    border-bottom-color: var(--accent);
}
.aas-tabs__tab:focus-visible {
    outline: 3px solid var(--accent-soft);
    outline-offset: -3px;
    border-radius: 2px;
}
