:root {
    --navy: #02264f;
    --navy-dark: #011a37;
    --gold: #be9755;
    --gold-light: #d7b47c;
    --text-dark: #1e2a38;
    --text-muted: #6f7885;
    --page-bg: #f6f7f9;
    --card-bg: #ffffff;
    --line: #e6e9ee;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text-dark);
    background: var(--page-bg);
}

.container {
    width: min(1240px, 95%);
    margin: 0 auto;
}

/* Top bar */
.topbar {
    background: var(--navy-dark);
    color: #ffffff;
    font-size: 12px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
    gap: 16px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar a {
    color: inherit;
    text-decoration: none;
}

.topbar a:hover {
    color: var(--gold-light);
}

.topbar .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    opacity: 0.9;
    transition: background 0.2s, opacity 0.2s, color 0.2s;
}

.social-icons .social-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.social-icons .social-icon:hover {
    opacity: 1;
    background: var(--gold);
    color: #fff;
}

.lang-switch a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.lang-switch a.active {
    opacity: 1;
    color: var(--gold-light);
    font-weight: 700;
}

/* Header */
.header-main {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 0px solid var(--gold);
    display: grid;
    place-content: center;
    font-weight: 800;
    color: var(--navy);
    background: linear-gradient(160deg, #fefcf8, #f5ead7);
    font-family: Georgia, "Times New Roman", serif;
    flex-shrink: 0;
}

.logo-text h1 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 0.4px;
    color: var(--navy);
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
}

.logo-text p {
    margin: 2px 0 0;
    color: #8d95a0;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    font-weight: 600;
    color: #2b3b4d;
    text-transform: uppercase;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    text-decoration: none;
    color: inherit;
    position: relative;
    padding-bottom: 16px;
    display: inline-block;
}

.nav-item > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--gold);
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 200;
}

.dropdown a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dropdown a:hover {
    background: #f8f4ed;
    color: var(--gold);
}

.btn-plan {
    border: none;
    background: linear-gradient(135deg, #caa163, #ad843e);
    color: #fff;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-plan:hover {
    filter: brightness(1.05);
}

/* Hero */
.hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transition: background-image 0.6s ease;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 244, 237, 0.82) 0%, rgba(248, 244, 237, 0.34) 34%, rgba(3, 31, 61, 0.14) 100%);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-content: center;
    font-size: 18px;
    background: rgba(2, 38, 79, 0.28);
    text-decoration: none;
    z-index: 2;
    cursor: pointer;
}

.hero-arrow:hover {
    background: rgba(2, 38, 79, 0.5);
}

.hero-arrow.left { left: 16px; }
.hero-arrow.right { right: 16px; }

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1240px, 95%);
    margin: 0 auto;
    padding: 45px 0 65px;
}

.hero-kicker {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9b8256;
    font-weight: 700;
}

.hero h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4.3vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    color: #1d2f43;
    text-transform: uppercase;
}

.hero h2 .accent {
    color: #a68650;
}

.hero .hero-sub {
    max-width: 510px;
    font-size: clamp(18px, 2.5vw, 31px);
    margin: 18px 0 34px;
    line-height: 1.28;
    color: #263847;
    font-family: Georgia, "Times New Roman", serif;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.hero-dots button.active {
    background: #fff;
}

/* Buttons */
.btn {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
}

.btn-primary:hover {
    background: var(--navy-dark);
}

.btn-outline {
    border: 1px solid #e1d4bd;
    color: #203449;
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--gold);
}

.btn-gold {
    background: linear-gradient(135deg, #caa163, #ad843e);
    color: #fff;
}

/* Pillars */
.pillars {
    background: var(--navy);
    color: #fff;
}

.pillars .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 14px 0;
}

.pillar-item h4 {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #f4dbb0;
}

.pillar-item p {
    margin: 6px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
}

.pillar-item {
    position: relative;
    padding: 6px 14px 6px 44px;
}

.pillar-item::before {
    content: attr(data-icon);
    position: absolute;
    left: 12px;
    top: 7px;
    font-size: 22px;
    color: #d7b47c;
    line-height: 1;
}

.pillar-item + .pillar-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

/* Sections */
.section {
    padding: 30px 0;
    background: #fff;
}

.grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.panel {
    background: var(--card-bg);
    border: 1px solid var(--line);
    padding: 16px 22px 18px;
}

.section-title {
    margin: 0;
    text-transform: uppercase;
    font-family: Georgia, "Times New Roman", serif;
    color: #21354c;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.3px;
}

.section-subtabs {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #5d6570;
    letter-spacing: 0.5px;
}

.section-subtabs button {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 0 8px 2px;
    text-transform: uppercase;
}

.section-subtabs button.active {
    color: #203650;
    border-bottom: 2px solid #be9755;
}

.cards {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dest-card {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #d9dfe7;
    position: relative;
    min-height: 110px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    text-decoration: none;
}

.dest-card span {
    width: 100%;
    display: block;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(8, 16, 30, 0.78), rgba(8, 16, 30, 0.03));
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.dest-card:hover span {
    background: linear-gradient(to top, rgba(190, 151, 85, 0.85), rgba(8, 16, 30, 0.2));
}

.journeys {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.journey {
    border: 1px solid #e7e9ef;
    border-radius: 2px;
    padding: 11px 11px 11px 36px;
    min-height: 82px;
    background: #fff;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.journey::before {
    content: "✧";
    position: absolute;
    left: 12px;
    top: 12px;
    color: #bf9755;
    font-size: 15px;
}

.journey:hover {
    border-color: var(--gold);
    background: #fefcf8;
}

.journey h5 {
    margin: 0 0 5px;
    font-size: 12px;
    color: #2f3f53;
    text-transform: uppercase;
}

.journey p {
    margin: 0;
    font-size: 12px;
    color: #6f7783;
    line-height: 1.3;
}

.view-more {
    margin-top: 14px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: #29415c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.view-more:hover {
    color: var(--gold);
}

.carousel-hint {
    position: relative;
    margin-top: 8px;
    height: 24px;
}

.carousel-hint .arrow {
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #dfd5c4;
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: #9c7e47;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    background: #fff;
}

.carousel-hint .left { left: -10px; }
.carousel-hint .right { right: -10px; }

/* Luxury row */
.luxury-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-top: 1px solid var(--line);
    background: #fff;
}

.luxury-banner {
    min-height: 250px;
    padding: 34px;
    color: #fff;
    background-image:
        linear-gradient(135deg, rgba(2, 28, 56, 0.88), rgba(2, 28, 56, 0.45)),
        url("https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?auto=format&fit=crop&w=1400&q=80");
    background-size: cover;
    background-position: center;
}

.luxury-banner h3 {
    margin: 0 0 12px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #d8bc87;
}

.luxury-banner h4 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.luxury-banner p {
    max-width: 540px;
    margin: 14px 0 24px;
    color: #e9eef5;
    line-height: 1.5;
    font-size: 14px;
}

.luxury-banner .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    background: transparent;
}

.stats {
    padding: 36px 28px;
    display: grid;
    align-content: center;
    border-left: 1px solid var(--line);
}

.stats h4 {
    margin: 0 0 26px;
    text-transform: uppercase;
    font-size: clamp(22px, 3vw, 34px);
    font-family: Georgia, "Times New Roman", serif;
    color: #27384c;
    font-weight: 500;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
}

.stats-grid strong {
    display: block;
    font-size: clamp(28px, 3vw, 38px);
    color: #1a2f47;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.stats-grid span {
    display: block;
    font-size: 12px;
    color: #6f7885;
    margin-top: 6px;
    line-height: 1.3;
}

/* Inner pages */
.page-hero {
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 28, 56, 0.85), rgba(2, 28, 56, 0.5));
}

.page-hero .container {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 60px 0;
}

.page-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    text-transform: uppercase;
}

.page-hero p {
    margin: 12px 0 0;
    max-width: 600px;
    font-size: 16px;
    color: #e9eef5;
    line-height: 1.5;
}

.breadcrumb {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.page-content {
    padding: 40px 0 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.content-card {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}

.content-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.content-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.content-card-body {
    padding: 16px 18px 20px;
}

.content-card-body h3 {
    margin: 0 0 8px;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--navy);
}

.content-card-body p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.prose {
    max-width: 800px;
    line-height: 1.7;
    font-size: 16px;
    color: var(--text-dark);
}

.prose h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--navy);
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item strong {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-grid h4 {
    margin: 0 0 14px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-grid a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1100px) {
    .pillars .container { grid-template-columns: repeat(2, 1fr); }
    .grid-two, .luxury-row { grid-template-columns: 1fr; }
    .stats { border-left: 0; border-top: 1px solid var(--line); }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .pillar-item + .pillar-item { border-left: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .header-main .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav { justify-content: flex-start; }

    .hero { min-height: 380px; }
    .hero h2 { font-size: 34px; }

    .cards, .journeys, .stats-grid { grid-template-columns: 1fr; }
    .pillars .container { grid-template-columns: 1fr; }
    .luxury-banner h4 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
}
