/* ===== ROOT & COLORS ===== */
:root {
    --color-primary: #0f1419;
    --color-secondary: #1a1f2e;
    --color-accent: #d4af37;
    --color-light: #f5f5f5;
    --color-gray: #8b8b8b;
    --color-text: #ffffff;
    --color-text-dark: #1a1f2e;
    --radius: 0.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: 3.5rem; font-weight: 300; letter-spacing: -0.02em; line-height: 1.2; }
h2 { font-size: 2.5rem; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; font-weight: 400; margin-bottom: 1rem; }
h4 { font-size: 1.3rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }

p { margin-bottom: 1rem; line-height: 1.7; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.logo a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: var(--color-light);
}

.main-nav {
    flex: 1;
    margin-left: 3rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
}

.header-cta {
    margin-left: auto;
    margin-right: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-accent);
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary, .btn-link {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-text-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-link {
    color: var(--color-accent);
    padding: 0;
    background: transparent;
    text-transform: none;
    letter-spacing: 0;
}

.btn-link:hover {
    color: var(--color-light);
}

/* ===== HERO SECTION ===== */
.hero-cinematic {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7), rgba(26, 31, 46, 0.6));
    z-index: 1;
}

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

.hero-stats {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.stat-item {
    margin: 0 0.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #d0d0d0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s infinite;
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 400px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.75), rgba(26, 31, 46, 0.75));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.simple-hero {
    height: 250px;
}

/* ===== SECTIONS ===== */
.manifesto-section,
.split-experience,
.three-atmospheres,
.deck-preview,
.rhythm-section,
.signature-spaces,
.why-different,
.onboard-preview,
.destinations-teaser,
.impressions-section,
.inquiry-section,
.vessel-intro,
.vessel-concept,
.vessel-philosophy,
.vessel-spaces,
.vessel-commitment,
.decks-intro,
.decks-hierarchy,
.suites-showcase,
.onboard-amenities,
.onboard-intro,
.daily-schedule,
.gastronomic-zones,
.wellness-recreation,
.social-atmosphere,
.ports-excursions,
.destinations-intro,
.route-collection,
.voyage-experience,
.seasonal-routes,
.customization,
.gallery-intro,
.gallery-grid,
.faq-intro,
.faq-section,
.contact-wrapper,
.contact-additional {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--color-accent);
    margin: 1rem auto 0;
}

/* ===== MANIFESTO ===== */
.manifesto-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.manifesto-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.manifesto-accent {
    margin-top: 2rem;
    font-size: 1.1rem;
    border-left: 3px solid var(--color-accent);
    padding-left: 2rem;
}

.accent-word {
    color: var(--color-accent);
    font-weight: 600;
}

/* ===== SPLIT EXPERIENCE ===== */
.split-experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image {
    overflow: hidden;
    border-radius: 0.5rem;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.split-experience:hover .split-image img {
    transform: scale(1.05);
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

/* ===== THREE ATMOSPHERES ===== */
.atmospheres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.atmosphere-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.atmosphere-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.atmosphere-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.atmosphere-card p {
    font-size: 0.95rem;
    color: #d0d0d0;
}

/* ===== DECK PREVIEW ===== */
.deck-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.deck-item {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
}

.deck-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.4), rgba(212, 175, 55, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.deck-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.deck-overlay p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* ===== RHYTHM TIMELINE ===== */
.rhythm-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rhythm-phase {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
}

.phase-time {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.phase-content h4 {
    margin-bottom: 0.75rem;
}

.phase-content p {
    font-size: 0.9rem;
    color: #d0d0d0;
}

/* ===== SIGNATURE SPACES ===== */
.signature-spaces {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
}

.signature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8), rgba(26, 31, 46, 0.75));
}

.signature-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.signature-content h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.spaces-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.space-item h4 {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.space-item p {
    font-size: 0.9rem;
    color: #d0d0d0;
}

/* ===== WHY DIFFERENT ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.reason-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.reason-number {
    font-size: 2.5rem;
    color: var(--color-accent);
    font-weight: 300;
    margin-bottom: 1rem;
}

.reason-card h4 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.reason-card p {
    font-size: 0.95rem;
    color: #d0d0d0;
}

/* ===== ONBOARD PREVIEW ===== */
.onboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.onboard-item {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.onboard-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7), rgba(26, 31, 46, 0.6));
    padding: 2rem;
    width: 100%;
}

.onboard-content h4 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.onboard-content p {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin: 0;
}

.onboard-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== DESTINATIONS TEASER ===== */
.destinations-teaser {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    text-align: center;
}

.destinations-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8), rgba(26, 31, 46, 0.75));
}

.destinations-content {
    position: relative;
    z-index: 2;
}

.destinations-content h2 {
    text-align: center;
}

.destinations-content p {
    max-width: 600px;
    margin: 1.5rem auto;
    color: #d0d0d0;
}

/* ===== IMPRESSIONS ===== */
.impressions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.impression-card {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
}

.impression-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.4), rgba(212, 175, 55, 0.1));
}

.impression-text,
.impression-text-only {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.9), rgba(15, 20, 25, 0.95));
}

.impression-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.impression-author {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin: 0;
}

/* ===== INQUIRY SECTION ===== */
.inquiry-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
}

.inquiry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.85), rgba(26, 31, 46, 0.8));
}

.inquiry-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.inquiry-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.inquiry-content > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

/* ===== FORM STYLES ===== */
.inquiry-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    background: rgba(245, 245, 245, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-text);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(245, 245, 245, 0.08);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

/* ===== ACCORDION ===== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    border: none;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 31, 46, 0.9));
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s;
}

.accordion-content {
    display: none;
    padding: 1.5rem;
    background: rgba(15, 20, 25, 0.5);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #d0d0d0;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4,
.footer-section h5 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--color-accent);
}

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

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 2rem;
    color: #8b8b8b;
    font-size: 0.85rem;
}

/* ===== UTILITY CLASSES ===== */
.cta-section,
.thank-you-section,
.contact-support {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-section h2,
.thank-you-section h1 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-accent);
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-section h1 {
    font-size: 2.5rem;
}

.thank-you-details {
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.thank-you-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.support-info {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    border-radius: var(--radius);
}

.support-info p {
    margin-bottom: 0.75rem;
}

/* ===== GRID LAYOUTS ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-block,
.contact-form-block {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h4 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.help-item {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.help-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.help-item h4 {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.help-item p {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin: 0;
}

/* ===== POLICY PAGES ===== */
.policy-content {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.policy-text h3 {
    color: var(--color-accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-text p,
.policy-text ul {
    color: #d0d0d0;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-text ul {
    margin-left: 2rem;
}

.policy-text ul li {
    margin-bottom: 0.5rem;
}

/* ===== VESSEL PAGE ===== */
.vessel-specs {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    border-radius: var(--radius);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.spec-item {
    padding: 1.5rem;
}

.spec-number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.85rem;
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.concept-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.concept-block {
    text-align: center;
}

.concept-block img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.concept-block h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.concept-block p {
    color: #d0d0d0;
    font-size: 0.95rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.commitment-item {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
}

.commitment-item h4 {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.commitment-item p {
    color: #d0d0d0;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== DECKS PAGE ===== */
.deck-category {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.5), rgba(15, 20, 25, 0.6));
    padding: 2rem;
    border-radius: var(--radius);
}

.deck-category h3 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.deck-category img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.deck-category p {
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.deck-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.detail-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: #d0d0d0;
}

.suite-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.suite-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
}

.suite-content h3 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.suite-size {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.suite-features {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.suite-features li {
    color: #d0d0d0;
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.suite-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.onboard-amenities {
    padding-bottom: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.amenity {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.amenity h4 {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.amenity p {
    color: #d0d0d0;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== ONBOARD LIFE PAGE ===== */
.schedule-item {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.7), rgba(15, 20, 25, 0.8));
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
}

.schedule-time {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.schedule-item h3 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.schedule-item p {
    color: #d0d0d0;
    margin: 0;
    font-size: 0.95rem;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.activity-card h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.activity-card ul {
    list-style: none;
}

.activity-card ul li {
    color: #d0d0d0;
    font-size: 0.9rem;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.activity-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.atmosphere-description {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
}

.atmosphere-description p {
    color: #d0d0d0;
    margin-bottom: 1rem;
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.9), rgba(26, 31, 46, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: #d0d0d0;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== ROUTES PAGE ===== */
.route-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.route-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.route-header h3 {
    color: var(--color-accent);
    margin: 0;
}

.route-duration {
    background: var(--color-accent);
    color: var(--color-text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.route-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.route-description p,
.route-highlights p {
    color: #d0d0d0;
    font-size: 0.95rem;
}

.route-ports h4,
.route-highlights h4 {
    color: var(--color-text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.route-ports ul {
    list-style: none;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.route-ports ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.route-ports ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.seasonal-item {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
    padding: 2rem;
    border-radius: var(--radius);
    border-top: 4px solid var(--color-accent);
    text-align: center;
}

.seasonal-item h4 {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.seasonal-item p {
    color: #d0d0d0;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .main-nav { display: none; }
    .hamburger { display: flex; }
    
    .hero-cinematic { margin-top: 60px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    
    .split-experience { grid-template-columns: 1fr; }
    .deck-preview-grid { grid-template-columns: 1fr; }
    .suite-type { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .route-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .thank-you-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    body { font-size: 14px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .nav-menu { gap: 1rem; font-size: 0.85rem; }
    .header-cta { display: none; }
    
    .hero-title { font-size: 1.5rem; }
    .atmospheres-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}
