:root {
    --teal-dark: #1d3236;
    --teal: #3b6770;
    --teal-light: #5a9daa;
    --teal-accent: #6ab8c8;
    --tan: #C2A990;
    --tan-light: #dedbcb;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #101517;
    --sage: #B1C5A4;
    --sage-light: #B5BDBC;
    --coral: #D8613C;
    --red: #dc2626;
    --green: #16a34a;
    --radius: 6px;
    --radius-lg: 10px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--teal-dark);
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); cursor: pointer; }
button, .btn, [role="button"], input[type="submit"] { cursor: pointer; }
a:hover { color: var(--teal-accent); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-accent { color: var(--tan); }

.btn {
    display: inline-block;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--teal-dark); border-color: var(--teal-dark); }
.btn-secondary:hover { background: var(--teal-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--teal-dark); }
.btn-lg { padding: 14px 32px; font-size: 0.9rem; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-active { background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark); }

/* Header - dark teal like OG */
.site-header {
    background: var(--teal-dark);
    position: relative;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 55px; width: auto; }
.main-nav { display: flex; gap: 2px; align-items: center; }
.main-nav > a, .nav-dropdown-toggle {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
}
.main-nav > a:hover, .main-nav > a.active,
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.6rem; margin-left: 2px; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--teal-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    z-index: 100;
    padding: 6px 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

/* Hero - simpler, more like OG */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero-slider {
    background: var(--teal-dark);
    min-height: calc(100vh - 91px);
}
.hero-slides {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity, transform;
    transform: scale(1);
    transform-origin: center top;
}
.hero-slide.active {
    opacity: 1;
    animation: kenburns 9s ease-in-out forwards;
}
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s;
}
.hero-dot:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.4);
}
.hero-dot.active {
    background: #fff;
    border-color: #fff;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(29,50,54,0.35) 0%, rgba(29,50,54,0.50) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
    max-width: 780px;
    margin: 0 auto;
}
.hero-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.section-icon {
    width: 45px;
    height: auto;
    display: block;
    margin: 0 auto 16px;
}
.hero-welcome {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    opacity: 0.85;
}
.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--tan);
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page Hero */
.page-hero {
    position: relative;
    background: var(--teal-dark);
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(29,50,54,0.35) 0%, rgba(29,50,54,0.55) 100%);
}
.page-hero .section-icon { width: 50px; margin-bottom: 16px; }
.page-hero h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 2px; }
.page-hero p { opacity: 0.85; font-size: 1.05rem; font-weight: 300; max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* Home Intro */
.home-intro { background: var(--white); }
.home-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.home-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.home-intro-img img { width: 100%; display: block; }
.home-intro-text h2 { font-size: 1.8rem; margin-bottom: 18px; color: var(--teal-dark); }
.home-intro-text p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; font-weight: 300; }
.home-intro-text .btn { margin-top: 10px; }

/* Sections */
.section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.section-header p { font-size: 0.95rem; color: var(--gray-600); max-width: 650px; margin: 0 auto; line-height: 1.7; font-weight: 300; }
.section-footer { text-align: center; margin-top: 36px; }

/* Captains */
.captains-section { background-color: var(--teal-dark); position: relative; }
.captains-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(29,50,54,0.82) 0%, rgba(29,50,54,0.88) 100%);
    z-index: 1;
}
.captains-section > .container { position: relative; z-index: 2; }
.captains-section .section-header h2,
.captains-section .section-header p,
.captains-section .captain-card h3 { color: var(--white); }
.captains-section .section-header p { opacity: 0.85; }
.captains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 750px;
    margin: 0 auto;
}
.captain-card { text-align: center; }
.captain-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.captain-img img { width: 100%; height: 100%; object-fit: cover; }
.captain-card h3 { font-size: 1.1rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* Captain Bio Pages */
.captain-page { padding: 60px 0; }
.captain-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; max-width: 1000px; margin: 0 auto; }
.captain-photo img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.captain-bio h1 { font-size: 2rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.captain-bio-content p { font-size: 1rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 18px; font-weight: 300; }
.captain-bio-content .btn { margin-top: 12px; }

/* Locations - full-bleed like OG */
.locations-section { background: var(--teal-dark); padding: 0; }
.locations-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.location-card { position: relative; height: 350px; overflow: hidden; }
.location-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.location-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(222,219,202,0.68) 0%, rgba(232,232,227,0.79) 99%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}
.location-card:hover::after { opacity: 0; }
.location-card:hover img { transform: scale(1.08); }
.location-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    z-index: 2;
    text-align: center;
}
.location-label h3 {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: lowercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Charter Types */
.charter-types-section { background: var(--cream-light); }
.charter-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.charter-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}
.charter-type-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.charter-type-img { height: 190px; overflow: hidden; }
.charter-type-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.charter-type-card:hover .charter-type-img img { transform: scale(1.05); }
.charter-type-card h3 { padding: 14px 16px 4px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.charter-type-card p { padding: 0 16px 16px; font-size: 0.85rem; color: var(--gray-600); font-weight: 300; }

/* Species */
.species-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.species-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}
.species-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.species-img { height: 170px; overflow: hidden; }
.species-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.species-card:hover .species-img img { transform: scale(1.05); }
.species-card h3 { padding: 12px 14px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Charter Types Banner */
.charter-types-banner {
    background: var(--cream);
    padding: 30px 0;
    text-align: center;
}
.charter-types-banner h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Testimonials */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.testimonial-card { text-align: center; padding: 20px; }
.testimonial-img {
    width: 180px; height: 180px; border-radius: 50%; overflow: hidden;
    margin: 0 auto 20px; border: 4px solid var(--cream);
    box-shadow: var(--shadow-md);
}
.testimonial-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card h4 { color: var(--teal-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.9rem; line-height: 1.7; color: var(--gray-600); font-style: italic; font-weight: 300; margin-bottom: 14px; }
.testimonial-name { font-size: 0.85rem; color: var(--gray-500); font-weight: 400; }

/* Reports */
.reports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.report-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.report-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.report-card-img { height: 200px; overflow: hidden; }
.report-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.report-card:hover .report-card-img img { transform: scale(1.05); }
.report-card-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--tan-light) 100%);
    font-size: 3rem;
}
.report-card-body { padding: 18px; }
.report-meta { display: flex; gap: 14px; margin-bottom: 6px; font-size: 0.75rem; font-weight: 500; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.report-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.report-card h3 a { color: var(--teal-dark); }
.report-card h3 a:hover { color: var(--teal); }
.report-card p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 10px; line-height: 1.5; font-weight: 300; }
.read-more { font-size: 0.8rem; font-weight: 500; color: var(--teal); text-transform: uppercase; letter-spacing: 0.5px; }
.read-more:hover { color: var(--teal-dark); }

/* Single Report */
.single-report { max-width: 800px; margin: 0 auto; }
.report-header { margin-bottom: 28px; }
.report-header h1 { font-size: 2rem; margin-bottom: 10px; }
.report-meta-full { display: flex; gap: 20px; font-size: 0.88rem; color: var(--gray-500); }
.report-featured-image { margin-bottom: 28px; border-radius: var(--radius-lg); overflow: hidden; }
.report-featured-image img { width: 100%; display: block; }
.report-content { font-size: 1rem; line-height: 1.8; font-weight: 300; }
.report-content p { margin-bottom: 16px; }
.report-content h2 { margin: 28px 0 14px; font-size: 1.5rem; }
.report-content h3 { margin: 22px 0 10px; font-size: 1.2rem; }
.report-content img { border-radius: var(--radius); margin: 14px 0; }
.report-content blockquote {
    border-left: 4px solid var(--teal);
    padding: 14px 20px; margin: 20px 0;
    background: var(--cream-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; color: var(--gray-700);
}
.report-content ul, .report-content ol { margin: 14px 0; padding-left: 24px; }
.report-content li { margin-bottom: 6px; }
.report-footer { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--gray-200); }

/* Gallery */
.gallery-masonry { columns: 3; column-gap: 14px; }
.gallery-item {
    break-inside: avoid; margin-bottom: 14px;
    border-radius: var(--radius-lg); overflow: hidden;
    position: relative; cursor: pointer; transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; display: block; transition: filter 0.3s ease; }
.gallery-item:hover img { filter: brightness(0.9); }
.gallery-item-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 18px; background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--white); font-size: 0.8rem; font-weight: 500;
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92); z-index: 10000;
    align-items: center; justify-content: center; flex-direction: column; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 80vh; border-radius: var(--radius); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.lightbox p { color: var(--white); margin-top: 14px; font-size: 0.88rem; }
.lightbox-close {
    position: absolute; top: 20px; right: 20px; color: var(--white);
    font-size: 2rem; background: none; border: none; cursor: pointer;
    padding: 8px; line-height: 1; opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: 1.6rem; margin-bottom: 20px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; line-height: 1; }
.contact-item h4 { font-size: 0.88rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; font-weight: 300; }
.contact-item a { color: var(--teal); }
.contact-form-wrap { background: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--gray-700); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 10px 14px;
    border: 1px solid var(--gray-300); border-radius: var(--radius);
    font-family: 'Fira Sans', sans-serif; font-size: 0.9rem; font-weight: 300;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(59,103,112,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Pricing / Boats */
.boats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.boat-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none; display: block;
}
.boat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.boat-card-img { height: 280px; overflow: hidden; }
.boat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.boat-card:hover .boat-card-img img { transform: scale(1.05); }
.boat-card-body { padding: 24px; text-align: center; }
.boat-card-body h2 { font-size: 1.5rem; margin-bottom: 10px; color: var(--teal-dark); }
.boat-card-body p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 16px; font-weight: 300; }

.boat-detail { max-width: 800px; margin: 0 auto; }
.boat-detail-content p { font-size: 1rem; line-height: 1.8; margin-bottom: 20px; font-weight: 300; color: var(--gray-700); }
.boat-detail-content h2 { font-size: 1.6rem; margin-bottom: 24px; text-align: center; text-transform: uppercase; letter-spacing: 1px; }

.rates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 28px; }
.rate-card {
    background: var(--cream-light); border-radius: var(--radius-lg); padding: 28px 20px;
    text-align: center; border: 2px solid var(--tan-light);
    transition: transform var(--transition), box-shadow var(--transition);
}
.rate-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rate-card-special { border-color: var(--teal); background: rgba(59,103,112,0.05); }
.rate-card h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; color: var(--teal-dark); }
.rate-duration { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.rate-price { font-size: 2.2rem; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.rate-details { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; font-weight: 300; }
.rates-note { font-size: 0.9rem; color: var(--gray-600); text-align: center; margin-bottom: 24px; font-weight: 300; font-style: italic; }

.boat-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 28px 0; }
.boat-photos img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.boat-photos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.boat-photos-grid img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; height: 100%; }

.rates-list { max-width: 600px; margin: 0 auto 30px; }
.rate-item { padding: 20px 0; border-bottom: 1px solid var(--gray-200); text-align: center; }
.rate-item:last-child { border-bottom: none; }
.rate-item h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--teal-dark); }
.rate-item p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 2px; font-weight: 300; }

.charters-include { background: var(--cream-light); border-radius: var(--radius-lg); padding: 28px; text-align: center; margin-top: 30px; }
.charters-include h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--teal-dark); }
.charters-include p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 4px; font-weight: 300; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary {
    padding: 18px 0; cursor: pointer; font-size: 1.05rem; font-weight: 500;
    color: var(--teal-dark); list-style: none; display: flex; align-items: center;
    justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--teal); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 0 18px; }
.faq-answer p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; font-weight: 300; }

/* Experience / Testimonials page */
.experience-testimonials { padding: 60px 0; }
.experience-grid { display: flex; flex-direction: column; gap: 40px; max-width: 900px; margin: 0 auto; }
.experience-card {
    display: flex; gap: 28px; align-items: flex-start;
    background: rgba(255,255,255,0.9); border-radius: var(--radius-lg);
    padding: 28px; box-shadow: var(--shadow);
}
.experience-img { flex-shrink: 0; width: 160px; height: 160px; border-radius: var(--radius-lg); overflow: hidden; }
.experience-img img { width: 100%; height: 100%; object-fit: cover; }
.experience-content { flex: 1; }
.experience-content h4 { font-size: 1rem; color: var(--teal-dark); margin-bottom: 10px; font-weight: 600; }
.experience-content p { font-size: 0.92rem; color: var(--gray-700); line-height: 1.7; font-weight: 300; }
.experience-video { flex-shrink: 0; width: 360px; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; }
.experience-video iframe { width: 100%; height: 100%; }
.experience-card-featured { flex-direction: column; align-items: stretch; }
.experience-videos-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 10px; }
.experience-video-lg { aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; }
.experience-video-lg iframe { width: 100%; height: 100%; }

/* CTA */
.cta-section {
    position: relative; background-size: cover; background-position: center;
    text-align: center; color: var(--white);
}
.cta-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(29, 50, 54, 0.88);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--white); font-size: 2rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.cta-content p { opacity: 0.8; font-size: 1rem; max-width: 550px; margin: 0 auto 28px; font-weight: 300; }

/* Alert */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.88rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Empty State */
.empty-state { text-align: center; padding: 70px 20px; }
.empty-icon { font-size: 3.5rem; margin-bottom: 14px; opacity: 0.5; }
.empty-state h3 { font-size: 1.4rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); margin-bottom: 20px; font-weight: 300; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }

/* Breadcrumb */
.breadcrumb { font-size: 0.8rem; margin-bottom: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* Footer - dark teal like OG */
.site-footer {
    background: var(--teal-dark);
    color: rgba(255,255,255,0.65);
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { margin-bottom: 14px; }
.footer-logo-img { height: 50px; width: auto; }
.footer-col h4 {
    font-size: 0.8rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--white); margin-bottom: 14px;
}
.footer-col a {
    display: block; color: rgba(255,255,255,0.55);
    font-size: 0.82rem; margin-bottom: 8px;
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.85rem; line-height: 1.6; font-weight: 300; }
.footer-bottom { padding: 18px 0; text-align: center; font-size: 0.8rem; }

/* Features */
.features-section { background: var(--cream-light); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-card {
    text-align: center; padding: 28px 20px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.88rem; color: var(--gray-600); font-weight: 300; }

/* Responsive */
@media (max-width: 1024px) {
    .features-grid, .species-grid, .charter-types-grid { grid-template-columns: repeat(2, 1fr); }
    .reports-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-masonry { columns: 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .captain-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
    .boats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .boat-photos-grid { grid-template-columns: 1fr; }
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--teal-dark); flex-direction: column; padding: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-lg);
    }
    .main-nav.open { display: flex; }
    .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 14px; }
    .nav-dropdown:hover .nav-dropdown-menu { display: block; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .hero { min-height: 450px; }
    .section { padding: 44px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .features-grid, .charter-types-grid { grid-template-columns: 1fr; gap: 14px; }
    .species-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .reports-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .captains-grid { grid-template-columns: 1fr; gap: 28px; }
    .captain-img { width: 200px; height: 200px; }
    .gallery-masonry { columns: 2; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-form-wrap { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .page-hero { min-height: 300px; }
    .page-hero h1 { font-size: 1.7rem; }
    .report-header h1 { font-size: 1.5rem; }
    .cta-content h2 { font-size: 1.5rem; }
    .home-intro-grid { grid-template-columns: 1fr; gap: 30px; }
    .captain-layout { grid-template-columns: 1fr; gap: 30px; }
    .location-card { height: 200px; }
    .boats-grid { grid-template-columns: 1fr; }
    .boat-card-img { height: 220px; }
    .rates-grid { grid-template-columns: 1fr; }
    .experience-card { flex-direction: column; }
    .experience-img { width: 100%; height: 200px; }
    .experience-video { width: 100%; }
    .experience-videos-row { grid-template-columns: 1fr; }
}

.sponsors-section {
    background: var(--cream);
    text-align: center;
}
.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.sponsor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.sponsor-link:hover { opacity: 0.8; }
.sponsor-link img {
    max-height: 80px;
    max-width: 220px;
    object-fit: contain;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.2);
}
.nav-social a {
    color: var(--tan);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.nav-social a:hover { color: #fff; }

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.footer-social a {
    color: var(--tan);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}
.contact-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 500;
    transition: color 0.2s;
}
.contact-social a:hover { color: var(--teal-dark); }

@media (max-width: 768px) {
    .nav-social {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        padding-top: 10px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .species-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 1; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .captain-img { width: 160px; height: 160px; }
    .captain-photo img { max-width: 300px; margin: 0 auto; display: block; }
    .location-card { height: 180px; }
    .contact-social { flex-direction: column; gap: 12px; }
}
