@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Merriweather:ital,wght@0,300;1,300&family=Montserrat:wght@400;600&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0d2137;
    --ocean: #1a4a6e;
    --teal: #2a7f8f;
    --sand: #e8d5b0;
    --cream: #f5efe3;
    --white: #fdfcf8;
    --dark: #1c1c1c;
    --mid: #4a4a4a;
    --light: #8a8a8a;
    --accent: #c9763a;
    --accent-light: #e8a86c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* PAGE LOADER */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-beacon {
    width: 60px;
    height: 60px;
    border: 3px solid var(--teal);
    border-top-color: var(--sand);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* HEADER */
.site-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.2;
}

.logo-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    color: var(--sand);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--sand);
    border-bottom-color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger-btn span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px 30px;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    color: var(--white);
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu a:hover {
    color: var(--sand);
}

/* HERO */
.hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/9/9d/Phare_de_Cordouan_18.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,33,55,0.9) 0%, rgba(26,74,110,0.6) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title em {
    color: var(--sand);
    font-style: italic;
}

.hero-desc {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    gap: 28px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--sand);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-visual-main {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-visual-item {
    border-radius: 6px;
    overflow: hidden;
    height: 120px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MAIN LAYOUT */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--mid);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* FEATURED ARTICLES */
.featured-section {
    padding: 90px 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    color: inherit;
}

.article-card.featured {
    grid-row: 1 / 3;
}

.card-img {
    overflow: hidden;
    flex-shrink: 0;
}

.article-card.featured .card-img {
    height: 320px;
}

.article-card:not(.featured) .card-img {
    height: 160px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
}

.article-card.featured .card-title {
    font-size: 1.7rem;
}

.card-excerpt {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.7;
    flex: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--light);
}

.card-meta::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

/* HIGHLIGHTS BAND */
.highlights-band {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    padding: 70px 0;
    color: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.highlight-item {
    padding: 20px;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.highlight-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--sand);
    stroke-width: 1.5;
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--sand);
}

.highlight-text {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* COASTAL ROUTES */
.routes-section {
    padding: 90px 0;
    background: var(--cream);
}

.routes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.routes-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.3;
}

.routes-intro p {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.9;
    margin-bottom: 14px;
}

.routes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.route-item {
    background: var(--white);
    border-radius: 8px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.route-item:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    color: inherit;
}

.route-num {
    width: 36px;
    height: 36px;
    background: var(--ocean);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.route-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.route-info span {
    font-size: 0.78rem;
    color: var(--light);
}

.route-arrow {
    color: var(--accent);
    font-size: 1.2rem;
}

/* LIGHTHOUSES MAP SECTION */
.map-section {
    padding: 90px 0;
    background: var(--white);
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}

.map-card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    color: inherit;
}

.map-card-img {
    height: 180px;
    overflow: hidden;
}

.map-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.map-card:hover .map-card-img img {
    transform: scale(1.05);
}

.map-card-body {
    padding: 20px;
}

.map-card-region {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 6px;
}

.map-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.map-card-details {
    font-size: 0.8rem;
    color: var(--mid);
    line-height: 1.6;
}

/* QUOTE BLOCK */
.quote-section {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 5%;
    font-family: 'Playfair Display', serif;
    font-size: 280px;
    color: rgba(255,255,255,0.04);
    line-height: 1;
}

.quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: var(--sand);
    line-height: 1.5;
    margin-bottom: 24px;
}

.quote-author {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* FOOTER */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    font-size: 0.83rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 240px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--sand);
}

.footer-contact p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent-light);
    font-size: 0.85rem;
}

.footer-contact a:hover {
    color: var(--sand);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
}

.footer-bottom a:hover {
    color: var(--sand);
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13,33,55,0.97);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

#cookie-banner.hidden {
    transform: translateY(100%);
    display: none;
}

.cookie-text {
    flex: 1;
    min-width: 260px;
}

.cookie-text p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-accept {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 0.83rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: var(--accent-light);
}

.btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 0.83rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* ARTICLE PAGE */
.article-hero {
    height: 480px;
    position: relative;
    overflow: hidden;
}

.article-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,33,55,0.85) 0%, transparent 50%);
}

.article-hero-title {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto;
}

.article-hero-title .card-category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 10px;
    display: block;
}

.article-hero-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.2;
}

.article-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 40px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--navy);
    margin: 40px 0 16px;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ocean);
    margin: 28px 0 12px;
}

.article-body p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 18px;
}

.article-body ul, .article-body ol {
    margin: 16px 0 18px 24px;
}

.article-body li {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 6px;
}

.article-img-wrap {
    margin: 32px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.article-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.article-img-wrap figcaption {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    padding: 10px 16px;
    font-style: italic;
}

.infobox {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    color: var(--white);
    border-radius: 10px;
    padding: 28px 32px;
    margin: 36px 0;
}

.infobox h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 16px;
}

.infobox table {
    width: 100%;
    border-collapse: collapse;
}

.infobox td {
    padding: 8px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.infobox td:first-child {
    color: rgba(255,255,255,0.5);
    width: 45%;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.infobox td:last-child {
    color: var(--white);
    font-weight: 400;
}

.article-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.article-related h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ABOUT PAGE */
.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    padding: 80px 24px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
    color: var(--white);
}

.page-hero p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 24px;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--navy);
    margin: 40px 0 16px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.9;
    margin-bottom: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 32px 0;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.team-avatar {
    width: 64px;
    height: 64px;
    background: var(--ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--sand);
    font-weight: 700;
}

.team-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-card p {
    font-size: 0.78rem;
    color: var(--light);
    margin-bottom: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 18px;
}

.contact-info p {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.9;
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--ocean);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--sand);
    fill: none;
    stroke-width: 1.5;
}

.contact-item-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 0.88rem;
    color: var(--mid);
    font-family: 'Lato', sans-serif;
}

.contact-item-text a {
    color: var(--teal);
}

.contact-item-text a:hover {
    color: var(--accent);
}

.contact-map-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    border-radius: 10px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
}

/* POLICY PAGE */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 70px 24px;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin: 36px 0 14px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.9;
    margin-bottom: 14px;
}

.policy-content ul {
    margin: 12px 0 16px 24px;
}

.policy-content li {
    font-family: 'Merriweather', serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 6px;
}

/* BREADCRUMBS */
.breadcrumbs {
    padding: 14px 24px;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.breadcrumbs-inner {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.78rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs-inner a {
    color: var(--teal);
}

.breadcrumbs-inner a:hover {
    color: var(--accent);
}

.breadcrumbs-inner span {
    color: var(--light);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .article-card.featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .hero-content {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }
    .hero-visual {
        display: none;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .routes-layout {
        grid-template-columns: 1fr;
    }
    .map-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stats {
        gap: 20px;
    }
}
