:root {
    --ocean: #1a4f6e;
    --ocean-dark: #0f3347;
    --ocean-light: #2a7a9e;
    --teal: #3d8b8b;
    --sage: #5a8f7b;
    --sand: #f7f3ed;
    --cream: #faf8f4;
    --gold: #b8956a;
    --gold-light: #d4b896;
    --charcoal: #2c3e50;
    --gray: #6b7c8a;
    --gray-light: #e8e4de;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(26, 79, 110, 0.1);
    --shadow-lg: 0 16px 48px rgba(26, 79, 110, 0.14);
    --radius: 4px;
    --radius-lg: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--cream);
    font-weight: 400;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
    color: var(--ocean-dark);
}

a { text-decoration: none; color: inherit; }

.eyebrow {
    display: inline-block;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--ocean);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--ocean-dark);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--ocean);
    border: 1.5px solid var(--ocean);
}
.btn-secondary:hover {
    background: var(--ocean);
    color: var(--white);
}
.btn-block { display: block; width: 100%; text-align: center; }

/* ===== Top bar ===== */
.topbar {
    background: var(--ocean-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 9px 0;
    letter-spacing: 0.02em;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar-item:hover { color: var(--gold-light); }

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-light);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-text strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ocean-dark);
    letter-spacing: 0.02em;
}
.logo-text small {
    font-size: 0.72rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ===== Language Switcher ===== */
.lang-switcher { position: relative; flex-shrink: 0; z-index: 1001; }
.lang-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--ocean);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 92px;
    justify-content: center;
}
.lang-btn:hover, .lang-btn.open {
    background: var(--ocean-dark);
    box-shadow: 0 4px 16px rgba(26, 79, 110, 0.35);
}
.lang-globe { font-size: 1rem; }
.lang-current { font-weight: 800; }
.lang-arrow { font-size: 0.7rem; transition: transform 0.2s; }
.lang-btn.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 155px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li {
    padding: 13px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.15s;
    border-bottom: 1px solid var(--gray-light);
}
.lang-dropdown li:last-child { border-bottom: none; }
.lang-dropdown li:hover { background: var(--sand); color: var(--ocean); }
.lang-dropdown li.active {
    background: var(--ocean);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--ocean-dark);
}

/* ===== Hero ===== */
.hero {
    padding: 80px 0 90px;
    background: linear-gradient(160deg, var(--sand) 0%, var(--cream) 50%, #eef5f5 100%);
    position: relative;
    overflow: hidden;
}
.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.heritage-badge {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ocean-dark);
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.75;
}
.hero-buttons { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 36px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ocean);
    line-height: 1;
}
.trust-item span {
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    display: block;
}

.hero-visual { position: relative; }
.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-image-inner {
    height: 400px;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--teal) 50%, var(--sage) 100%);
    position: relative;
}
.hero-image-inner::after {
    content: '🐟';
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem;
    opacity: 0.25;
}
.hero-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(15, 51, 71, 0.85);
    color: var(--white);
    padding: 14px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-align: center;
}

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head h2 { font-size: 2.4rem; margin-bottom: 14px; }
.section-head p { color: var(--gray); font-size: 1.02rem; }

/* ===== About ===== */
.about { padding: 90px 0; background: var(--white); }
.about-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.about-content h2 { font-size: 2.4rem; margin-bottom: 20px; }
.about-content > p { color: var(--gray); margin-bottom: 24px; font-size: 1.02rem; }
.about-list { list-style: none; }
.about-list li {
    padding: 10px 0;
    font-weight: 500;
    color: var(--charcoal);
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}
.about-list li:last-child { border-bottom: none; }
.about-stats { display: flex; flex-direction: column; gap: 24px; }
.about-stat {
    background: var(--sand);
    border-left: 3px solid var(--gold);
    padding: 28px 32px;
    transition: all 0.3s;
}
.about-stat:hover { background: var(--cream); box-shadow: var(--shadow); }
.stat-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ocean);
    line-height: 1;
    margin-bottom: 6px;
}
.about-stat span:last-child {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== Services ===== */
.services { padding: 90px 0; background: var(--sand); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--teal);
}
.service-icon { font-size: 2rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }

/* ===== Markets ===== */
.markets { padding: 90px 0; background: var(--white); }
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.market-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--cream);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.market-card:hover { border-color: var(--ocean); box-shadow: var(--shadow); }
.market-flag { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.market-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.market-card p { color: var(--gray); font-size: 0.92rem; }

/* ===== Values ===== */
.values { padding: 70px 0; background: var(--ocean-dark); color: var(--white); }
.values-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-card { text-align: center; padding: 20px; }
.value-card h3 {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}
.value-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.65; }

/* ===== Contact ===== */
.contact { padding: 90px 0; background: var(--sand); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 2.4rem; margin-bottom: 14px; }
.contact-info > p { color: var(--gray); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-box {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    font-size: 0.92rem;
    color: var(--gray);
}
.contact-box strong { display: block; color: var(--ocean-dark); margin-bottom: 8px; font-size: 0.82rem; letter-spacing: 0.04em; }
.contact-box a { color: var(--ocean); font-weight: 600; }
.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--ocean-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.92rem;
    background: var(--cream);
    color: var(--charcoal);
    margin-bottom: 14px;
    transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(26, 79, 110, 0.1);
}
.form-note { font-size: 0.88rem; color: var(--sage); font-weight: 600; text-align: center; margin-top: 8px; }

/* ===== Footer ===== */
.footer {
    background: var(--ocean-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 28px;
}
.footer .logo-text strong { color: var(--white); }
.footer .logo-text small { color: rgba(255,255,255,0.45); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; max-width: 320px; margin-top: 16px; line-height: 1.7; }
.footer-legal-name { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 14px; }
.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 0.04em;
}
.footer-col a, .footer-col span {
    display: block;
    padding: 5px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-links a:hover { color: var(--white); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .topbar-right { display: none; }
    .nav-links {
        position: fixed;
        top: 72px; right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--cream);
        width: 270px;
        padding: 28px;
        gap: 20px;
        border-left: 1px solid var(--gray-light);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        height: calc(100vh - 72px);
        overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-toggle { display: flex; }
    .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero-image-inner { height: 280px; }
    .services-grid, .markets-grid { grid-template-columns: 1fr; }
    .values-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .about-stats { flex-direction: row; flex-wrap: wrap; }
    .about-stat { flex: 1; min-width: 140px; }
}
@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 1.9rem; }
    .hero-trust { gap: 24px; }
    .about-stats { flex-direction: column; }
}
