/* ==========================================================================
   Heirloom Holidays — Shared Styles
   Used across all pages (homepage + subpages)
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --midnight: #0a1628;
    --navy: #152238;
    --champagne: #c9a962;
    --champagne-light: #e4d5b0;
    --ivory: #faf8f5;
    --ivory-warm: #f5f2ec;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e4d5b0 50%, #c9a962 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background: var(--ivory);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.8;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

#navbar.scrolled,
#navbar.nav-solid {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--midnight);
    text-decoration: none;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-img-footer {
    height: 45px;
    width: auto;
    filter: invert(1) brightness(1.2);
}

.logo span {
    color: var(--champagne);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--champagne);
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--midnight);
    color: var(--ivory);
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-cta:hover {
    background: transparent;
    color: var(--midnight);
    border-color: var(--midnight);
}

/* CTA button shine effect */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.cta-button {
    display: inline-block;
    background: var(--champagne);
    color: var(--midnight);
    padding: 1.25rem 3rem;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--ivory);
}

/* CTA button shine effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* --- Nav Dropdowns --- */
.nav-links li {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border-top: 2px solid var(--champagne);
    margin-top: 0.5rem;
}

.nav-links li:hover > .nav-dropdown,
.nav-links li.dropdown-open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown li {
    padding: 0;
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--text-dark);
    transition: all 0.2s ease;
    white-space: nowrap;
}

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

.nav-dropdown a:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--champagne);
    padding-left: 1.75rem;
}

.nav-dropdown .dropdown-viewall {
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.nav-dropdown .dropdown-viewall a {
    color: var(--champagne);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Dropdown arrow indicator */
.has-dropdown > a::after {
    content: '';
    position: static;
    display: inline-block;
    width: 4px;
    height: 4px;
    background: none;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    top: -1px;
}

.has-dropdown > a:hover::after {
    width: 4px;
}

/* --- Hub Page Grid --- */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.hub-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--ivory);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

.hub-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hub-card:hover img {
    transform: scale(1.05);
}

.hub-card-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.85));
}

.hub-card-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.25rem;
}

.hub-card-overlay h3 em {
    font-style: italic;
    color: var(--champagne-light);
}

.hub-card-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

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

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

/* --- Breadcrumbs --- */
.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--champagne);
}

.breadcrumbs .breadcrumb-sep {
    color: var(--champagne);
    font-size: 0.7rem;
}

.breadcrumbs .breadcrumb-current {
    color: var(--text-dark);
    font-weight: 400;
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--midnight);
    transition: all 0.3s ease;
}

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

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

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

/* --- Section Label --- */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--champagne);
}

/* --- Subpage Hero --- */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, rgba(10, 22, 40, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

/* --- Article Content --- */
.article {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.article-lead::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--champagne);
}

.article h2 {
    font-size: 2.2rem;
    color: var(--midnight);
    margin: 3rem 0 1.5rem;
}

.article h2 em {
    font-style: italic;
    color: var(--champagne);
}

.article p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* --- Full Width Image --- */
.full-image {
    margin: 4rem 0;
    position: relative;
}

.full-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.full-image figcaption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    font-size: 0.95rem;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 0.05em;
}

/* --- Image Pair --- */
.image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.image-pair img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* --- Intro Section (hotel pages) --- */
.intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.intro p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* --- Hotels Section --- */
.hotels-section {
    background: var(--ivory-warm);
    padding: 5rem 2rem;
    margin: 4rem 0;
}

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

.hotels-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hotels-header h2 {
    font-size: 2.5rem;
    color: var(--midnight);
}

.hotels-header h2 em {
    font-style: italic;
    color: var(--champagne);
}

.hotels-header p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Hotel Cards --- */
.hotel-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 0;
    background: white;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.hotel-card:nth-child(even) {
    direction: rtl;
}

.hotel-card:nth-child(even) > * {
    direction: ltr;
}

.hotel-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.hotel-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-location {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 0.5rem;
}

.hotel-info h3,
.hotel-info h4 {
    font-size: 1.8rem;
    color: var(--midnight);
    margin-bottom: 1rem;
}

.hotel-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hotel-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    margin-top: auto;
}

.hotel-feature {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--champagne);
    background: rgba(201, 169, 98, 0.1);
    padding: 0.5rem 1rem;
}

.hotel-cta {
    display: inline-block;
    background: var(--midnight);
    color: var(--ivory);
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.hotel-cta:hover {
    background: var(--champagne);
    color: var(--midnight);
}

/* --- Article Hotel Cards (destination pages) --- */
.article .hotel-card {
    background: var(--ivory-warm);
    padding: 3rem;
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    box-shadow: none;
}

.article .hotel-card:hover {
    transform: none;
    box-shadow: none;
}

.article .hotel-card:nth-child(even) {
    direction: ltr;
}

.article .hotel-card img {
    width: 100%;
    height: 300px;
    min-height: auto;
    object-fit: cover;
}

.article .hotel-card:hover img {
    transform: none;
}

.hotel-card-content {
    padding: 1rem 0;
}

.hotel-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.article .hotel-card h3,
.article .hotel-card h4 {
    font-size: 1.8rem;
    color: var(--midnight);
    margin-bottom: 1rem;
}

.article .hotel-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hotel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--midnight);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--champagne);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.hotel-link:hover {
    color: var(--champagne);
}

/* --- Highlight Box (destination pages) --- */
.highlight-box {
    background: var(--midnight);
    color: var(--ivory);
    padding: 3rem;
    margin: 4rem 0;
    position: relative;
}

.highlight-box::before {
    content: '✦';
    position: absolute;
    top: -1rem;
    left: 3rem;
    background: var(--champagne);
    color: var(--midnight);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.highlight-box h4 {
    font-size: 1.3rem;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.highlight-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

/* --- Pull Quote (destination pages) --- */
.pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--midnight);
    text-align: center;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-top: 1px solid var(--champagne);
    border-bottom: 1px solid var(--champagne);
    line-height: 1.5;
}

/* --- Related Links Section --- */
.related-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.related-section h2 {
    font-size: 1.8rem;
    color: var(--midnight);
    margin-bottom: 0.5rem;
    text-align: center;
}

.related-section h2 em {
    font-style: italic;
    color: var(--champagne);
}

.related-section > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.related-links a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    color: var(--midnight);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.related-links a:hover {
    border-color: var(--champagne);
    background: var(--champagne);
    color: var(--ivory);
}

/* --- Subpage Testimonial --- */
.subpage-testimonial {
    padding: 4rem 2rem;
    background: var(--ivory-warm);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.subpage-testimonial blockquote {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--midnight);
    position: relative;
}

.subpage-testimonial blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--champagne);
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.subpage-testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--champagne);
    letter-spacing: 0.05em;
    font-family: 'Outfit', sans-serif;
}

.subpage-testimonial cite span {
    display: block;
    color: rgba(10, 22, 40, 0.5);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--midnight);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.cta-section h2 em {
    font-style: italic;
    color: var(--champagne);
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Back Link --- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--champagne);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.article-meta span {
    opacity: 0.6;
}

/* --- FAQ Section --- */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--midnight);
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(10, 22, 40, 0.1);
}

.faq-item summary {
    padding: 1.5rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--midnight);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--champagne);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --- Guide Pages --- */
.guide-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.guide-intro .article-lead {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

.guide-intro .article-lead::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--champagne);
}

.guide-toc {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--ivory-warm);
    border-left: 3px solid var(--champagne);
}

.guide-toc h3 {
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--midnight);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.guide-toc ol {
    list-style: none;
    counter-reset: toc-counter;
}

.guide-toc li {
    counter-increment: toc-counter;
    margin-bottom: 0.5rem;
}

.guide-toc li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.guide-toc li a::before {
    content: counter(toc-counter, decimal-leading-zero);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--champagne);
    min-width: 1.5rem;
}

.guide-toc li a:hover {
    color: var(--champagne);
}

/* Guide Property Cards */
.guide-property {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.guide-property-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.guide-property-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.guide-property-card:nth-child(even) {
    direction: rtl;
}

.guide-property-card:nth-child(even) > * {
    direction: ltr;
}

.guide-property-img {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.guide-property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.guide-property-card:hover .guide-property-img img {
    transform: scale(1.03);
}

.guide-property-img .property-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--champagne);
    color: var(--midnight);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.guide-property-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-property-body .property-location {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 0.5rem;
}

.guide-property-body h3 {
    font-size: 1.8rem;
    color: var(--midnight);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.guide-property-body .property-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.guide-property-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.property-detail {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--champagne);
    background: rgba(201, 169, 98, 0.1);
    padding: 0.4rem 0.8rem;
}

.property-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--midnight);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--champagne);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.property-cta:hover {
    color: var(--champagne);
}

/* Guide Sections */
.guide-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.guide-section h2 {
    font-size: 2.2rem;
    color: var(--midnight);
    margin-bottom: 1.5rem;
}

.guide-section h2 em {
    font-style: italic;
    color: var(--champagne);
}

.guide-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Guide Tip Box */
.guide-tip {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem 3rem;
    background: var(--midnight);
    color: var(--ivory);
    position: relative;
}

.guide-tip::before {
    content: 'Kara\2019s Tip';
    position: absolute;
    top: -0.75rem;
    left: 2rem;
    background: var(--champagne);
    color: var(--midnight);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    font-weight: 500;
}

.guide-tip p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    line-height: 1.8;
}

/* Guide Month Grid */
.month-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.month-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: all 0.3s ease;
}

.month-card.recommended {
    border-color: var(--champagne);
    background: rgba(201, 169, 98, 0.04);
}

.month-card .month-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--midnight);
    margin-bottom: 0.5rem;
}

.month-card .month-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.month-card.recommended .month-name {
    color: var(--champagne);
}

.month-card.recommended .month-note {
    color: var(--midnight);
}

/* Guide Image Break */
.guide-image-break {
    width: 100%;
    height: 400px;
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

.guide-image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-image-break figcaption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    font-style: italic;
    font-size: 0.95rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Guide Responsive */
@media (max-width: 968px) {
    .guide-property-card {
        grid-template-columns: 1fr;
    }

    .guide-property-card:nth-child(even) {
        direction: ltr;
    }

    .guide-property-img {
        min-height: 280px;
    }

    .guide-property-body {
        padding: 2rem;
    }

    .month-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .guide-property-body h3 {
        font-size: 1.5rem;
    }
}

/* --- Footer --- */
footer {
    background: var(--midnight);
    padding: 6rem 8rem 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer .logo {
    color: var(--ivory);
    margin-bottom: 1rem;
    display: inline-flex;
}

footer p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin: 1.5rem 0 2rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--midnight);
}

.footer-column h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--champagne);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
}

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

.footer-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-badge img {
    height: 40px;
    opacity: 0.6;
}

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

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.reveal.animate-ready {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Animations --- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Responsive: Tablet --- */
@media (max-width: 1200px) {
    #navbar {
        padding: 1.5rem 3rem;
    }

    #navbar.scrolled,
    #navbar.nav-solid {
        padding: 1rem 3rem;
    }

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

/* --- Responsive: Mobile --- */
@media (max-width: 968px) {
    #navbar {
        padding: 1rem 2rem;
    }

    #navbar.scrolled,
    #navbar.nav-solid {
        padding: 1rem 2rem;
    }

    .hotel-card {
        grid-template-columns: 1fr;
    }

    .hotel-card:nth-child(even) {
        direction: ltr;
    }

    .hotel-card img {
        min-height: 250px;
    }

    .article .hotel-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .image-pair {
        grid-template-columns: 1fr;
    }

    .article {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 1rem 2rem;
        flex-wrap: wrap;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile menu open state */
    #navbar.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 3;
        padding: 1.5rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(10, 25, 47, 0.1);
        margin-top: 1rem;
    }

    #navbar.menu-open .nav-links li {
        text-align: center;
    }

    #navbar.menu-open .nav-cta {
        display: inline-block;
        width: 100%;
        order: 4;
        text-align: center;
        margin-top: 0.5rem;
    }

    /* Mobile dropdowns */
    .nav-dropdown {
        position: static;
        transform: none;
        min-width: 100%;
        background: rgba(0,0,0,0.02);
        backdrop-filter: none;
        box-shadow: none;
        padding: 0.5rem 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        border-top: none;
        margin-top: 0.25rem;
    }

    .nav-links li.dropdown-open > .nav-dropdown {
        display: block;
    }

    .nav-dropdown a {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .nav-dropdown a:hover {
        padding-left: 1rem;
    }

    .has-dropdown > a::after {
        transition: transform 0.3s ease;
    }

    .has-dropdown.dropdown-open > a::after {
        transform: rotate(-135deg);
        top: 1px;
    }

    .breadcrumbs {
        padding: 0.75rem 1.5rem 0;
        font-size: 0.75rem;
    }

    footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
