/* ============================================
   Maui Seafoods — Custom Styles
   Palette: Midnight Blue (#0A2342) + Mint (#4ECDC4)
   Fonts: Playfair Display + Lato
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1a1a2e;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: #0A2342;
}

.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4ECDC4;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
}

.section-lead {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    line-height: 1.8;
}

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

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #0A2342;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #4ECDC4;
    color: #0A2342;
    border-color: #4ECDC4;
}
.btn--primary:hover,
.btn--primary:focus {
    background: #3dbfb5;
    border-color: #3dbfb5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.35);
}

.btn--outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline:hover,
.btn--outline:focus {
    background: #ffffff;
    color: #0A2342;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline-light:hover,
.btn--outline-light:focus {
    background: #ffffff;
    color: #0A2342;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 35, 66, 0.0);
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 1.25rem 0;
}
.site-header.scrolled {
    background: rgba(10, 35, 66, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
}
.logo-icon {
    color: #4ECDC4;
}

.logo--light {
    color: #ffffff;
}

.logo-text {
    /* already colored via parent */
}

/* ---------- Navigation ---------- */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ECDC4;
    transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}
.main-nav a:hover,
.main-nav a:focus {
    color: #ffffff;
}

.btn--nav {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    border: 1.5px solid rgba(78, 205, 196, 0.7);
    border-radius: 6px;
    color: #4ECDC4;
    background: transparent;
    transition: all 0.3s ease;
}
.btn--nav:hover,
.btn--nav:focus {
    background: #4ECDC4;
    color: #0A2342;
    border-color: #4ECDC4;
}
.btn--nav::after {
    display: none;
}

/* ---------- Mobile Nav Toggle ---------- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 35, 66, 0.88) 0%,
        rgba(10, 35, 66, 0.70) 50%,
        rgba(10, 35, 66, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 8rem 0 6rem;
    max-width: 780px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4ECDC4;
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
.hero-scroll svg {
    opacity: 0.6;
}

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

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: #0A2342;
    padding: 1.5rem 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.trust-icon {
    color: #4ECDC4;
    flex-shrink: 0;
}

/* ---------- About ---------- */
.about {
    padding: 7rem 0;
    background: #ffffff;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 35, 66, 0.15);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 35, 66, 0.2);
    border: 4px solid #ffffff;
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    color: #4ECDC4;
    opacity: 0.4;
}

.about-content {
    padding: 1rem 0;
}

.about-content .lead {
    font-size: 1.125rem;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-content p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0A2342;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: #718096;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ---------- Products ---------- */
.products {
    padding: 7rem 0;
    background: #f7fafc;
}

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

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 35, 66, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 35, 66, 0.12);
}

.product-img {
    overflow: hidden;
    height: 240px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9375rem;
    color: #718096;
    line-height: 1.7;
}

/* ---------- Services ---------- */
.services {
    padding: 7rem 0;
    background: #ffffff;
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background: #ffffff;
}
.service-card:hover {
    border-color: #4ECDC4;
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    color: #4ECDC4;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #718096;
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* ---------- Process ---------- */
.process {
    padding: 7rem 0;
    background: #0A2342;
    color: #ffffff;
}

.process .section-eyebrow {
    color: #4ECDC4;
}

.process .section-title {
    color: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.process-step {
    position: relative;
    padding: 2rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(78, 205, 196, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 7rem 0;
    background: #f7fafc;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 35, 66, 0.06);
    position: relative;
}

.testimonial-quote {
    color: #4ECDC4;
    opacity: 0.4;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-source {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0A2342;
    letter-spacing: 0.02em;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .section-eyebrow {
    color: #4ECDC4;
}

.cta-content .section-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content .section-lead {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ---------- Contact ---------- */
.contact {
    padding: 7rem 0;
    background: #ffffff;
}

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

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-icon {
    color: #4ECDC4;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-detail strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    color: #0A2342;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: #718096;
    font-size: 0.9375rem;
    line-height: 1.6;
}
.contact-detail a {
    color: #4ECDC4;
    transition: color 0.3s ease;
}
.contact-detail a:hover {
    color: #0A2342;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 35, 66, 0.1);
}

/* ---------- Contact Form ---------- */
.contact-form-wrapper {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a2e;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ECDC4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

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

.form-note {
    font-size: 0.8125rem;
    color: #a0aec0;
    margin-top: 1rem;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 2rem;
    color: #0A2342;
}
.form-success svg {
    color: #4ECDC4;
    margin: 0 auto 1rem;
}
.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.form-success p {
    color: #718096;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #061a2e;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

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

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4ECDC4;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}
.footer-contact a:hover {
    color: #4ECDC4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}
.footer-bottom a:hover {
    color: #4ECDC4;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #0A2342;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    .main-nav.open {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .main-nav a {
        font-size: 1.125rem;
    }

    .hero-content {
        padding: 7rem 0 5rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-images {
        max-width: 500px;
    }
    .about-img-secondary {
        right: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .process-step {
        padding: 1.5rem 0;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    .about,
    .products,
    .services,
    .process,
    .testimonials,
    .cta,
    .contact {
        padding: 5rem 0;
    }
    .trust-items {
        gap: 1.5rem;
    }
    .about-stats {
        gap: 1.5rem;
    }
}
