:root {
    --sea-deep: #0a2540;
    --sea-mid: #1a4a7a;
    --sea-light: #2d7dd2;
    --sea-pale: #e8f4fd;
    --sand: #f5e6c8;
    --sand-dark: #d4a96a;
    --text-dark: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --accent: #e85d04;
    --accent-hover: #f97316;
    --accent-muted: rgba(232, 93, 4, 0.12);
    --border: rgba(45, 125, 210, 0.2);
    --bg-section: #f7fbff;
    --shadow: 0 4px 24px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 12px 48px rgba(10, 37, 64, 0.18);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    top: 0;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--sea-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.page-loader.show {
    opacity: 1;
    pointer-events: all;
}
.loader-wave {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 40px;
}
.loader-wave span {
    display: block;
    width: 8px;
    background: var(--sea-light);
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}
.loader-wave span:nth-child(1) { animation-delay: 0s; }
.loader-wave span:nth-child(2) { animation-delay: 0.1s; }
.loader-wave span:nth-child(3) { animation-delay: 0.2s; }
.loader-wave span:nth-child(4) { animation-delay: 0.3s; }
.loader-wave span:nth-child(5) { animation-delay: 0.4s; }
@keyframes wave {
    0%, 100% { height: 12px; background: var(--sea-light); }
    50% { height: 36px; background: var(--sand-dark); }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 37, 64, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-flag {
    border-radius: 3px;
    flex-shrink: 0;
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}
.logo-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    color: var(--sand-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
}
.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active {
    color: var(--sand-dark);
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--sea-deep);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background: rgba(45,125,210,0.2);
    color: var(--sand-dark);
    padding-left: 28px;
}
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--sea-deep);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea-mid) 50%, #1a6b8a 100%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Aerial_view_of_Zlatni_rat_%28Golden_Horn%29_Beach_in_Bol%2C_Croatia_%2848608813081%29.jpg/960px-Aerial_view_of_Zlatni_rat_%28Golden_Horn%29_Beach_in_Bol%2C_Croatia_%2848608813081%29.jpg') center/cover no-repeat;
    opacity: 0.25;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-badge {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--sand-dark);
    background: rgba(212, 169, 106, 0.15);
    border: 1px solid rgba(212, 169, 106, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 760px;
}
.hero h1 em {
    font-style: italic;
    color: var(--sand-dark);
}
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: left;
}
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sand-dark);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
.intro-section {
    padding: 96px 0;
    background: var(--bg-section);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sea-deep);
    margin-bottom: 24px;
    line-height: 1.3;
}
.intro-text p {
    color: var(--text-mid);
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.intro-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.intro-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(10,37,64,0.85), transparent);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-family: 'Merriweather', serif;
    font-style: italic;
}
.islands-section {
    padding: 96px 0;
    background: var(--white);
}
.section-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sea-light);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sea-deep);
    margin-bottom: 16px;
    line-height: 1.25;
}
.section-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 56px;
}
.islands-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
}
.islands-secondary {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.island-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}
.island-card:hover {
    border-color: var(--sea-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.island-card-image {
    position: relative;
    overflow: hidden;
}
.island-card.featured .island-card-image {
    height: 320px;
}
.islands-secondary .island-card-image {
    height: 180px;
}
.island-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.island-card:hover .island-card-image img {
    transform: scale(1.06);
}
.img-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: rgba(255,255,255,0.7);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Source Sans 3', sans-serif;
}
.island-card-body {
    padding: 24px 28px;
}
.island-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sea-light);
    margin-bottom: 10px;
    font-family: 'Source Sans 3', sans-serif;
}
.island-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sea-deep);
    margin-bottom: 10px;
    line-height: 1.3;
}
.islands-secondary .island-card-body h3 {
    font-size: 1.15rem;
}
.island-card-body p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.65;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}
.card-link::after {
    content: '\2192';
    transition: transform 0.2s ease;
}
.island-card:hover .card-link {
    color: var(--accent-hover);
    gap: 10px;
}
.facts-section {
    padding: 96px 0;
    background: var(--sea-deep);
    position: relative;
    overflow: hidden;
}
.facts-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45,125,210,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.facts-section .section-label {
    color: var(--sand-dark);
}
.facts-section .section-title {
    color: var(--white);
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.fact-item {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}
.fact-item:hover {
    background: rgba(45,125,210,0.15);
    border-color: rgba(45,125,210,0.3);
    transform: translateY(-4px);
}
.fact-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--sand-dark);
    line-height: 1;
    margin-bottom: 8px;
}
.fact-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.article-page {
    padding-bottom: 96px;
}
.article-header {
    padding: 72px 0 48px;
    background: var(--sea-deep);
    position: relative;
    overflow: hidden;
}
.article-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sea-deep) 40%, rgba(26,74,122,0.7) 100%);
}
.article-header .container-narrow {
    position: relative;
    z-index: 1;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 28px;
    transition: color 0.2s ease;
}
.back-link::before {
    content: '\2190';
}
.back-link:hover {
    color: var(--sand-dark);
}
.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.article-meta {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 0.5px;
}
.article-hero-img {
    max-width: 900px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.article-hero-img img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: block;
}
.article-hero-img figcaption {
    text-align: right;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
    font-family: 'Merriweather', serif;
}
.article-body {
    padding: 56px 0;
}
.article-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 36px;
    line-height: 1.85;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}
.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--sea-deep);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.article-body p {
    color: var(--text-mid);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-body ul {
    margin: 20px 0 24px 24px;
    color: var(--text-mid);
}
.article-body li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.article-body a {
    color: var(--sea-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(45,125,210,0.3);
    transition: border-color 0.2s ease;
}
.article-body a:hover {
    border-color: var(--sea-light);
}
.article-tip {
    background: var(--sea-pale);
    border-left: 4px solid var(--sea-light);
    padding: 20px 24px;
    border-radius: 0 10px 10px 0;
    margin: 32px 0;
}
.article-tip p {
    color: var(--sea-deep);
    margin: 0;
    font-size: 1rem;
}
.article-nav {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.article-nav a {
    color: var(--sea-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.article-nav a:hover {
    color: var(--sea-deep);
}
.about-page, .contact-page, .policy-page {
    padding: 80px 0 96px;
}
.page-header {
    padding: 72px 0 48px;
    background: var(--sea-deep);
    margin-bottom: 0;
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.page-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
}
.about-content {
    padding: 72px 0;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sea-deep);
    margin-top: 40px;
    margin-bottom: 16px;
}
.about-text h2:first-child {
    margin-top: 0;
}
.about-text p {
    color: var(--text-mid);
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.about-text a {
    color: var(--sea-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(45,125,210,0.3);
}
.contact-content {
    padding: 72px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sea-deep);
    margin-bottom: 16px;
}
.contact-info p {
    color: var(--text-mid);
    margin-bottom: 14px;
    font-size: 1.05rem;
}
.contact-details {
    background: var(--bg-section);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 14px;
    margin-top: 28px;
}
.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-mid);
}
.contact-details p strong {
    color: var(--sea-deep);
}
.contact-details p:last-child {
    margin-bottom: 0;
}
.contact-info-note {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--sea-pale);
    border-radius: 10px;
    border-left: 3px solid var(--sea-light);
}
.contact-info-note p {
    color: var(--sea-deep);
    font-size: 0.95rem;
    margin: 0;
}
.contact-info-box {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
}
.contact-info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--sea-deep);
    margin-bottom: 20px;
}
.contact-info-box p {
    color: var(--text-mid);
    margin-bottom: 12px;
    font-size: 1rem;
}
.contact-info-box p strong {
    color: var(--sea-deep);
}
.policy-content {
    padding: 72px 0;
}
.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sea-deep);
    margin-top: 40px;
    margin-bottom: 16px;
}
.policy-content h2:first-child {
    margin-top: 0;
}
.policy-content h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--sea-deep);
    margin-top: 28px;
    margin-bottom: 12px;
}
.policy-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.policy-content ul {
    margin: 16px 0 20px 24px;
    color: var(--text-mid);
}
.policy-content li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.site-footer {
    background: var(--sea-deep);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 72px 0 28px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sand-dark);
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--sand-dark);
}
.footer-col p {
    color: rgba(255,255,255,0.45);
    font-size: 0.92rem;
    margin-bottom: 8px;
}
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--sea-deep);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.cookie-banner.show {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.cookie-content a {
    color: var(--sand-dark);
    text-decoration: none;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: 'Source Sans 3', sans-serif;
}
.cookie-btn.accept {
    background: var(--sea-light);
    color: var(--white);
}
.cookie-btn.accept:hover {
    background: var(--sea-mid);
}
.cookie-btn.reject, .cookie-btn.settings {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn.reject:hover, .cookie-btn.settings:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: var(--sea-deep);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 36px;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}
.modal-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--white);
}
.cookie-option {
    margin-bottom: 20px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sea-light);
    flex-shrink: 0;
}
.cookie-option p {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-left: 28px;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.info-link {
    color: var(--sea-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(45,125,210,0.3);
    transition: border-color 0.2s ease;
}
.info-link:hover {
    border-color: var(--sea-light);
}
@media (max-width: 1024px) {
    .islands-grid {
        grid-template-columns: 1fr;
    }
    .islands-secondary {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-image {
        order: -1;
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--sea-deep);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 20px 24px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .main-nav .nav-list li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 0;
    }
    .dropdown-menu li a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        font-size: 0.88rem;
    }
    .dropdown-menu li a:hover {
        padding-left: 8px;
        background: transparent;
    }
    .hero {
        min-height: 80vh;
    }
    .hero-stats {
        gap: 28px;
    }
    .hero-stat-num {
        font-size: 1.8rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .islands-secondary {
        grid-template-columns: 1fr;
    }
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .article-nav {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stats {
        gap: 20px;
    }
}
