/* ============================================================
   STARLE TRAVEL — Main Stylesheet
   Deep Navy + Gold luxury theme | Fully Responsive
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0d1a30;
    --navy-mid:    #1a2a4a;
    --navy-light:  #243660;
    --gold:        #c9a84c;
    --gold-light:  #e2c878;
    --gold-dark:   #a0782a;
    --white:       #ffffff;
    --off-white:   #f5f2eb;
    --grey-light:  #e8e4db;
    --grey:        #9a9590;
    --text-dark:   #1c1c1c;
    --text-mid:    #3a3a3a;
    --shadow:      0 4px 24px rgba(13,26,48,0.18);
    --shadow-lg:   0 12px 48px rgba(13,26,48,0.28);
    --radius:      4px;
    --transition:  0.3s ease;
    --max-width:   1280px;
    --header-h:    90px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: var(--navy);
    line-height: 1.25;
    font-weight: normal;
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: 0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

.section-label {
    font-family: 'Georgia', serif;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

.gold { color: var(--gold); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 680px; margin: 0 auto; color: var(--text-mid); font-size: 1.05rem; }

.divider {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 1.2rem auto;
}
.divider-left { margin-left: 0; }

/* --- Header / Navigation --- */
#site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: rgba(13, 26, 48, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center;
    transition: box-shadow var(--transition);
}

#site-header.scrolled { box-shadow: 0 4px 32px rgba(13,26,48,0.5); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-mark {
    width: 54px; height: 54px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Georgia', serif;
    font-size: 1.55rem;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 0.12em;
}

.logo-sub {
    font-family: 'Georgia', serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav */
#site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#site-nav a {
    font-family: 'Georgia', serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    position: relative;
}

#site-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 1px;
    background: var(--gold);
    transition: left var(--transition), right var(--transition);
}

#site-nav a:hover,
#site-nav a.active {
    color: var(--gold);
}

#site-nav a:hover::after,
#site-nav a.active::after {
    left: 0.9rem; right: 0.9rem;
}

.nav-cta {
    margin-left: 0.75rem;
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.55rem 1.3rem !important;
    font-weight: bold !important;
    border-radius: var(--radius) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Body offset for fixed header */
body { padding-top: var(--header-h); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d1a30 0%, #1a2a4a 45%, #243660 100%);
}

.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(13,26,48,0.85) 0%, rgba(13,26,48,0.3) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 720px;
    padding: 4rem 2rem;
    margin: 0 auto 0 0;
    padding-left: max(2rem, calc((100vw - var(--max-width)) / 2 + 2rem));
}

.hero-content .section-label { font-size: 0.78rem; }

.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero compass watermark */
.hero-compass {
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    width: min(55vw, 580px);
    opacity: 0.07;
    pointer-events: none;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-family: 'Georgia', serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    font-weight: normal;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-mid);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* --- Stats Band --- */
.stats-band {
    background: var(--navy);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

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

.stat-item {
    padding: 1rem 1.5rem;
    border-right: 1px solid rgba(201,168,76,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Georgia', serif;
    font-size: 2.4rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* --- Services --- */
.services { background: var(--off-white); }

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-icon-wrap {
    background: var(--navy);
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-icon-wrap::before {
    content: '';
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid var(--navy);
}

.service-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.service-icon-wrap h3 {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.service-body { padding: 2rem; flex: 1; }
.service-body p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-body ul { list-style: none; }
.service-body ul li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-mid);
}
.service-body ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.5rem;
    top: 0.5rem;
}

/* --- Destinations --- */
.destinations { background: var(--navy); }
.destinations .section-header h2 { color: var(--white); }
.destinations .section-header p { color: rgba(255,255,255,0.7); }
.destinations .divider { background: var(--gold); }

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

.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--navy-mid);
}

.dest-card-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-bg { transform: scale(1.07); }

.dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,26,48,0.92) 0%, rgba(13,26,48,0.2) 60%);
}

.dest-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
}

.dest-region {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.35rem;
}

.dest-card-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.dest-card-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Destination patterns (CSS gradient stand-ins for images) */
.dest-mediterranean { background: linear-gradient(135deg, #1e4080 0%, #2d7dd2 50%, #0d5eaf 100%); }
.dest-caribbean     { background: linear-gradient(135deg, #0a6e4f 0%, #1aaf7a 50%, #0d8a60 100%); }
.dest-sea           { background: linear-gradient(135deg, #2d4a6e 0%, #1a7a9a 50%, #0f5e7d 100%); }
.dest-tuscany       { background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 50%, #a07830 100%); }
.dest-japan         { background: linear-gradient(135deg, #6e1e1e 0%, #c95050 50%, #a03030 100%); }
.dest-patagonia     { background: linear-gradient(135deg, #1e4a3a 0%, #2d7a5a 50%, #1a5e44 100%); }

/* Dest pattern overlay texture */
.dest-card-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* --- Testimonials --- */
.testimonials { background: var(--off-white); }

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    border-top: 3px solid var(--gold);
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Georgia', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.18;
    position: absolute;
    top: -0.5rem; left: 1.2rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.author-name {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--navy);
    display: block;
}
.author-detail {
    font-size: 0.78rem;
    color: var(--grey);
    display: block;
}

.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; letter-spacing: 2px; }

/* --- Itineraries --- */
.itineraries { background: var(--white); }

.itinerary-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.itinerary-card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.itinerary-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.itinerary-header {
    background: var(--navy);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.itinerary-header::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(201,168,76,0.08);
}

.itin-region {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    display: block;
}

.itinerary-header h3 { color: var(--white); font-size: 1.2rem; }

.itin-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.itin-meta span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.itin-meta span em { font-style: normal; color: var(--gold); }

.itinerary-body { padding: 1.5rem 2rem; flex: 1; }

.itin-days {
    list-style: none;
    border-left: 2px solid var(--gold);
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.itin-days li {
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--text-mid);
    position: relative;
}

.itin-days li::before {
    content: '';
    position: absolute;
    left: -1.45rem; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.itin-days li strong {
    color: var(--navy);
    font-family: 'Georgia', serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.1rem;
}

.itin-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.itin-price .from { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.itin-price .amount { font-size: 1.6rem; color: var(--navy); font-family: 'Georgia', serif; }
.itin-price .per { font-size: 0.78rem; color: var(--grey); }

/* --- About Section --- */
.about-section { background: var(--navy); }
.about-section h2 { color: var(--white); }
.about-section .section-label { color: var(--gold); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 1.25rem; }

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pillar {
    padding: 1.25rem;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
}

.pillar-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.pillar h4 { color: var(--gold); font-size: 0.88rem; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.pillar p { color: rgba(255,255,255,0.65); font-size: 0.83rem; margin: 0; }

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compass-large {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.office-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.office-city {
    font-family: 'Georgia', serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
}

.office-card p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 0; line-height: 1.6; }

/* --- Contact Section --- */
.contact-section { background: var(--off-white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 { color: var(--navy); margin-bottom: 1rem; }
.contact-info p { color: var(--text-mid); }

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 42px; height: 42px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-detail-body { font-size: 0.9rem; }
.contact-detail-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.2rem; }
.contact-detail-value { color: var(--text-mid); }

/* --- Contact Form --- */
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form h3 { color: var(--navy); margin-bottom: 0.5rem; }
.contact-form > p { color: var(--grey); font-size: 0.88rem; margin-bottom: 1.5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-family: 'Georgia', serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    display: none;
}
.form-message.success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; display: block; }
.form-message.error   { background: #ffeaed; border: 1px solid #ffb3b3; color: #c62828; display: block; }

/* --- Page Hero (inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.page-hero .section-label { justify-content: center; display: flex; }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '›'; margin-right: 0.5rem; }

/* --- Footer --- */
#site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.75;
    max-width: 260px;
}

.footer-heading {
    font-family: 'Georgia', serif;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer-contact strong { color: rgba(255,255,255,0.85); font-weight: normal; }

.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.78rem;
}
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold); }

/* --- Utility --- */
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* --- Responsive --- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    :root { --header-h: 70px; }

    .nav-toggle { display: flex; }

    #site-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 2rem 2rem;
        gap: 0;
        transform: translateY(-110%);
        transition: transform var(--transition);
        border-bottom: 2px solid var(--gold);
        z-index: 999;
    }

    #site-nav.open { transform: translateY(0); }

    #site-nav a {
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 0.9rem;
    }

    .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }

    .hero-compass { display: none; }

    .hero-content { max-width: 100%; padding: 3rem 2rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(201,168,76,0.2); }

    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .dest-grid { grid-template-columns: 1fr; }
    .itinerary-cards { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { order: -1; }
    .compass-large { max-width: 200px; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 540px) {
    :root { --header-h: 64px; }
    section { padding: 3.5rem 0; }
    .container { padding: 0 1.25rem; }
    .logo-text { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .about-pillars { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .itin-meta { flex-direction: column; gap: 0.5rem; }
}
