/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #79582e;
    --primary-container: #c39a6a;
    --on-primary: #ffffff;
    --on-primary-container: #4e320b;
    --secondary: #566066;
    --secondary-container: #dae4eb;
    --on-secondary: #ffffff;
    --surface: #f5faff;
    --surface-container-low: #ecf5fd;
    --surface-container: #e6eff7;
    --surface-container-high: #e0e9f1;
    --surface-container-highest: #dae4eb;
    --surface-container-lowest: #ffffff;
    --on-surface: #041028;
    --on-background: #041028;
    --outline: #817569;
    --outline-variant: #d3c4b6;
    --inverse-surface: #041028;
    --inverse-on-surface: #e9f2fa;
    --font-headline: 'Noto Serif', Georgia, serif;
    --font-body: 'Work Sans', 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--on-surface);
    line-height: 1.7;
    background-color: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--primary-container);
    color: var(--on-primary-container);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-headline);
    color: var(--on-surface);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.8rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-label {
    font-family: var(--font-body);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.625rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

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

.divider {
    width: 48px;
    height: 1px;
    background-color: var(--outline-variant);
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--primary-container));
    color: var(--on-primary);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(0.99);
}

.btn-outline {
    background-color: transparent;
    color: var(--on-primary);
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background-color: var(--on-primary);
    color: var(--on-surface);
}

.btn-dark {
    background-color: var(--primary);
    color: var(--on-primary);
}

.btn-dark:hover {
    background-color: var(--primary-container);
    transform: scale(0.99);
}

.link-underline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    border-bottom: 1px solid rgba(121, 88, 46, 0.3);
    padding-bottom: 4px;
    font-weight: 500;
}

.link-underline:hover {
    border-bottom-color: var(--primary);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    width: 100%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-topbar {
    background-color: var(--inverse-surface);
    padding: 8px 0;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.header-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-left a:hover {
    color: var(--on-primary);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-right a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.topbar-right a:hover {
    color: var(--primary-container);
}

.header-brand {
    text-align: center;
    padding: 8px 0 0;
}

.header-brand a {
    display: inline-block;
}

.header-brand .brand-logo {
    height: 119px;
    width: auto;
}

.header-brand .brand-name {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--on-surface);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.header-brand .brand-name span {
    color: var(--primary);
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 32px 12px;
    gap: 40px;
    flex-wrap: wrap;
}

.header-nav a {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    transition: color 0.3s ease;
    padding: 4px 0;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-nav a.active {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

.header-cta {
    text-align: center;
    padding-bottom: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background-color: var(--on-surface);
    transition: var(--transition);
}

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

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

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

/* ===== HERO IMAGE ===== */
.hero-image {
    width: 100%;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -10%;
    margin-bottom: -10%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    padding-top: 7.5%;
    padding-left: 8%;
    line-height: 1.4;
}

.hero-overlay h1 {
    color: #ffffff;
    font-family: var(--font-headline);
    font-size: 2.45rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    margin: 0 0 12px;
}

.hero-overlay h2 {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.44rem;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: 0.02em;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 96px 32px 80px;
    text-align: center;
    background-color: var(--surface);
}

.page-hero .section-label {
    margin-bottom: 24px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
}

.page-hero .divider {
    margin-top: 0;
}

/* ===== EDITORIAL SECTION ===== */
.editorial-section {
    padding: 128px 0;
    background-color: var(--surface);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}

.editorial-grid.reverse {
    grid-template-columns: 7fr 5fr;
}

.editorial-grid.reverse .editorial-text {
    order: 2;
}

.editorial-grid.reverse .editorial-image {
    order: 1;
}

.editorial-text h2 {
    margin-bottom: 24px;
    line-height: 1.2;
}

.editorial-text p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 480px;
    font-weight: 300;
}

.editorial-text .link-underline {
    margin-top: 8px;
    display: inline-block;
}

.editorial-image {
    position: relative;
}

.editorial-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.editorial-image .inset-image {
    position: absolute;
    bottom: -48px;
    left: -48px;
    width: 256px;
    height: 320px;
    overflow: hidden;
    box-shadow: 0 32px 64px -12px rgba(20, 29, 34, 0.06);
}

.editorial-image .inset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
}

/* ===== FEATURES / HIGHLIGHTS ===== */
.features-section {
    padding: 96px 0;
    background-color: var(--surface-container-low);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-item h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-item p {
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== CHARTER CARDS ===== */
.charters-section {
    padding: 96px 0;
    background-color: var(--surface);
}

.charters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.charter-card {
    display: flex;
    flex-direction: column;
}

.charter-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.charter-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.charter-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to right, var(--primary), var(--primary-container));
    color: var(--on-primary);
    padding: 6px 16px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.charter-card-body {
    padding: 32px 16px;
    text-align: center;
}

.charter-card-body h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.charter-card-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--secondary);
}

.charter-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.charter-card-body p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.7;
}

.charter-card-price {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    color: var(--on-surface);
    font-weight: 400;
    margin-bottom: 20px;
}

.charter-card-price small {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 300;
    font-family: var(--font-body);
}

/* ===== SERVICES PAGE DETAIL ===== */
.services-detail {
    padding: 96px 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 128px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-block-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.service-block-content h3 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.service-block-content p {
    margin-bottom: 12px;
    font-weight: 300;
    line-height: 1.8;
}

.service-list {
    margin: 24px 0;
}

.service-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(211, 196, 182, 0.2);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ===== PRICING TABLE ===== */
.pricing-section {
    padding: 96px 0;
    background-color: var(--surface-container-low);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--surface-container-lowest);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-top: 3px solid var(--primary);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 64px -12px rgba(20, 29, 34, 0.06);
}

.pricing-card h3 {
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    color: var(--on-surface);
    font-weight: 400;
    margin: 24px 0;
}

.pricing-card .price small {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 300;
    display: block;
    font-family: var(--font-body);
}

.pricing-features {
    text-align: left;
    margin: 24px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(211, 196, 182, 0.2);
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 300;
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ===== REVIEWS ===== */
.reviews-section {
    padding: 96px 0;
    background-color: var(--surface);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.reviews-stats .rating-number {
    font-family: var(--font-headline);
    font-size: 3rem;
    color: var(--on-surface);
    font-weight: 400;
    font-style: italic;
}

.reviews-stats .stars {
    color: var(--primary-container);
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.reviews-stats .review-count {
    color: var(--secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--surface-container-lowest);
    padding: 40px;
    border-left: 3px solid var(--primary-container);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: 0 32px 64px -12px rgba(20, 29, 34, 0.06);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--primary-container);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 300;
    font-family: var(--font-headline);
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background-color: var(--surface-container-high);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.review-author-info strong {
    display: block;
    color: var(--on-surface);
    font-size: 0.85rem;
    font-weight: 500;
}

.review-author-info span {
    font-size: 0.7rem;
    color: var(--outline);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 96px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: none;
    border: 1px solid var(--outline-variant);
    font-family: var(--font-headline);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary);
    border-radius: 2px;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 29, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--on-primary);
    font-size: 1.5rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--on-primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    background: none;
    border: none;
    font-family: var(--font-body);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--on-primary);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 20px;
    z-index: 2001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 96px 0;
    background-color: var(--inverse-surface);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.cta-section .cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--inverse-on-surface);
    font-size: 2.8rem;
    margin-bottom: 24px;
    font-weight: 400;
}

.cta-section p {
    font-size: 0.85rem;
    color: rgba(233, 242, 250, 0.6);
    max-width: 480px;
    margin: 0 auto 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 0 0 128px;
    background-color: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contact-card-icon {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-card h4 {
    margin-bottom: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-card p {
    color: var(--on-surface);
    font-size: 1.1rem;
    font-family: var(--font-headline);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card a {
    color: var(--on-surface);
    font-family: var(--font-headline);
    font-size: 1.1rem;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-image {
    margin-top: 48px;
}

.contact-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.7s ease;
}

.contact-image:hover img {
    filter: grayscale(0);
}

.contact-form {
    background: var(--surface-container-lowest);
    padding: 48px 64px;
}

.contact-form h3 {
    margin-bottom: 48px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--outline);
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(211, 196, 182, 0.4);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--on-surface);
    transition: var(--transition);
    background: transparent;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--outline-variant);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

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

/* ===== MAP ===== */
.map-section {
    padding: 128px 0;
    background-color: var(--surface-container-low);
}

.map-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}

.map-locations {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.map-location {
    border-left: 1px solid rgba(121, 88, 46, 0.3);
    padding-left: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.map-location h4 {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.map-location p {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-bottom: 0;
}

.map-placeholder {
    height: 500px;
    background-color: var(--surface-container-highest);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #eef4f9;
    padding: 80px 0 40px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer .footer-brand {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--on-surface);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.footer .footer-brand span {
    color: var(--primary);
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.footer-links-row a {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: transparent;
}

.footer-links-row a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

.footer-divider {
    width: 100%;
    max-width: 640px;
    height: 1px;
    background-color: rgba(211, 196, 182, 0.2);
}

.footer-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
}

.footer-copyright {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }


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

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

    .editorial-grid,
    .editorial-grid.reverse {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .header > .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .header-brand {
        padding: 8px 0;
    }

    .header-brand .brand-logo {
        height: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

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

    .header-cta {
        display: none;
    }

    .header-topbar .container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }


    .editorial-grid,
    .editorial-grid.reverse,
    .service-block,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-grid.reverse .editorial-text { order: 1; }
    .editorial-grid.reverse .editorial-image { order: 2; }

    .service-block.reverse {
        direction: ltr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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


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

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

    .contact-form {
        padding: 32px;
    }

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

    .footer-links-row {
        gap: 16px;
    }

    .editorial-image .inset-image {
        display: none;
    }

    .hero-overlay {
        align-items: center;
        text-align: center;
        padding-left: 24px;
    }

    .hero-overlay h1 {
        font-size: 1.4rem;
    }

    .hero-overlay h2 {
        font-size: 1.09rem;
    }
}

@media (max-width: 480px) {

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

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

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

    .header-icons {
        gap: 16px;
    }
}
