:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-gold: #c4a35a;
    --accent-gold-light: #d4b96a;
    --cream: #f5f0e8;
    --cream-dark: #ebe4d4;
    --text-dark: #2d2d2d;
    --text-medium: #555555;
    --text-light: #888888;
    --white: #ffffff;
    --overlay: rgba(26, 26, 46, 0.7);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold-light);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-lens {
    width: 50px;
    height: 50px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: var(--primary-dark);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--accent-gold);
    font-style: italic;
}

.header-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.header-nav .nav-list a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
}

.header-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.header-nav .nav-list a:hover::after,
.header-nav .nav-list a.active::after {
    width: 100%;
}

.header-nav .nav-list a.active {
    color: var(--accent-gold);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    background: var(--primary-dark);
    border: 1px solid rgba(196,163,90,0.2);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-dropdown .dropdown-menu li a::after {
    display: none;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: rgba(196,163,90,0.1);
    color: var(--accent-gold);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 999;
    transition: 0.4s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-list > li > a {
    display: block;
    color: var(--white);
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 15px;
    display: none;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 10px 0;
    font-size: 0.9rem;
    text-decoration: none;
}

.mobile-dropdown-menu li a:hover {
    color: var(--accent-gold);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,26,46,0.6) 0%, rgba(26,26,46,0.8) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-content .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 35px;
}

.btn-primary-custom {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--accent-gold);
}

.btn-outline-custom {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22,33,62,0.85) 0%, rgba(26,26,46,0.9) 100%);
    z-index: -1;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
}

.section-pad {
    padding: 80px 0;
}

.section-pad-lg {
    padding: 100px 0;
}

.section-dark {
    background: var(--primary-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.7);
}

.section-cream {
    background: var(--cream-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .overline {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.featured-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.featured-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.featured-card.large .featured-card-img {
    height: 100%;
    min-height: 400px;
}

.featured-card-body {
    padding: 25px;
}

.featured-card-body .card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: block;
}

.featured-card-body h3 {
    margin-bottom: 10px;
}

.featured-card-body h3 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.featured-card-body h3 a:hover {
    color: var(--accent-gold);
}

.featured-card-body p {
    font-size: 0.95rem;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stagger-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stagger-section.reverse {
    direction: rtl;
}

.stagger-section.reverse > * {
    direction: ltr;
}

.stagger-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.stagger-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.stagger-img:hover img {
    transform: scale(1.03);
}

.stagger-img .img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    padding: 20px;
    font-size: 0.8rem;
    font-family: 'Source Sans 3', sans-serif;
}

.stagger-text .overline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}

.stagger-text h2,
.stagger-text h3 {
    margin-bottom: 15px;
}

.stagger-text p {
    margin-bottom: 20px;
}

.stagger-text .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
}

.stagger-text .read-more:hover {
    gap: 12px;
}

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

.stat-item {
    padding: 30px 15px;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-content h2 {
    margin: 40px 0 20px;
}

.article-content h3 {
    margin: 30px 0 15px;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-gold);
    padding: 20px 25px;
    margin: 30px 0;
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.article-image {
    margin: 35px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    padding: 12px 15px;
    background: var(--white);
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.article-meta span {
    font-family: 'Source Sans 3', sans-serif;
}

.related-articles {
    padding: 60px 0;
    background: var(--cream-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-card-body {
    padding: 20px;
}

.related-card-body h4 {
    margin-bottom: 8px;
}

.related-card-body h4 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.related-card-body h4 a:hover {
    color: var(--accent-gold);
}

.related-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon.gold-bg {
    background: var(--accent-gold);
}

.contact-card-icon.dark-bg {
    background: var(--primary-dark);
}

.contact-card-icon.green-bg {
    background: var(--secondary-dark);
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: underline;
}

.faq-section {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 25px 0;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    font-size: 0.95rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent-gold);
}

.value-card h3 {
    margin-bottom: 12px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-content h2 {
    margin: 40px 0 15px;
    font-size: 1.5rem;
}

.policy-content h3 {
    margin: 25px 0 12px;
    font-size: 1.2rem;
}

.policy-content p,
.policy-content li {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.policy-content ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.6);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.cookie-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-gold);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cookie-btn-accept:hover {
    background: var(--accent-gold-light);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
    border-color: var(--white);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.cookie-btn-settings:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cookie-preferences {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 25px;
}

.cookie-pref-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cookie-pref-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-pref-item small {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-left: 30px;
}

.cookie-pref-item input[type="checkbox"] {
    accent-color: var(--accent-gold);
    width: 16px;
    height: 16px;
}

.breadcrumb-nav {
    padding: 15px 0;
    font-size: 0.85rem;
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
}

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

.breadcrumb-nav span {
    color: var(--text-light);
    margin: 0 8px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 15px;
}

.gallery-mosaic .mosaic-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
}

.mosaic-item .mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0;
    transition: var(--transition);
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}

.tip-box {
    background: var(--white);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.tip-box h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tip-box p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .stagger-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stagger-section.reverse {
        direction: ltr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-mosaic .mosaic-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .section-pad {
        padding: 50px 0;
    }

    .section-pad-lg {
        padding: 70px 0;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero {
        padding: 130px 0 60px;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic .mosaic-item:first-child {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
}
