/* Palette: Navy, Steel Grey, White, Ice Blue */
:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --ice: #E2E8F0;
    --white: #FFFFFF;
    --text: #334155;
    --accent: #3B82F6;
    
    --font-serif: 'Libre Baskerville', serif;
    --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--ice);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 4px; }

/* Header */
.port-header { background: var(--navy); padding: 20px 0; position: sticky; top: 0; z-index: 1000; color: var(--white); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.header-grid { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 40px; }

.logo { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--white); letter-spacing: 1px; }
.light { color: var(--accent); font-style: italic; }

.nordic-nav a { margin-left: 20px; font-weight: 400; color: #94A3B8; font-size: 0.95rem; }
.nordic-nav a:hover, .nordic-nav a.active { color: var(--white); }

.btn-outline { border: 1px solid var(--white); padding: 8px 20px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; }
.btn-outline:hover { background: var(--white); color: var(--navy); }

.mobile-toggle { display: none; background: transparent; border: 1px solid var(--white); color: var(--white); padding: 5px 10px; cursor: pointer; }

/* Mobile Menu */
.mobile-drawer { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--navy-light); z-index: 2000; padding: 40px; transition: 0.3s; box-shadow: -5px 0 20px rgba(0,0,0,0.3); }
.mobile-drawer.active { right: 0; }
.close-drawer { background: none; border: none; font-size: 1.5rem; color: var(--white); position: absolute; top: 20px; right: 20px; cursor: pointer; }
.mobile-drawer a { display: block; color: var(--ice); font-size: 1.2rem; margin-bottom: 20px; border-bottom: 1px solid #334155; padding-bottom: 10px; }

@media (max-width: 900px) {
    .nordic-nav, .header-action { display: none; }
    .header-grid { display: flex; justify-content: space-between; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-hanse { height: 75vh; position: relative; display: flex; align-items: center; color: var(--white); }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }

.compass-tag { font-family: var(--font-serif); font-style: italic; color: var(--accent); margin-bottom: 20px; display: block; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 700; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #CBD5E1; }

.btn-solid { background: var(--accent); color: var(--white); padding: 15px 35px; border-radius: 4px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
.btn-solid:hover { background: #2563EB; }

/* Insights */
.section-title h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--navy); margin-bottom: 10px; }
.wave-line { width: 60px; height: 4px; background: var(--accent); margin-bottom: 50px; border-radius: 2px; }
.wave-line.left { margin-left: 0; }
.center { text-align: center; }
.center .wave-line { margin: 20px auto 50px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.insight-card { background: var(--white); padding: 40px; border-radius: 8px; border-top: 4px solid var(--navy); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); transition: 0.3s; }
.insight-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.icon { font-size: 2.5rem; margin-bottom: 20px; }
.insight-card h3 { font-size: 1.25rem; margin-bottom: 15px; color: var(--navy); }

/* Data Strip */
.data-strip { background: var(--navy-light); color: var(--ice); padding: 60px 0; text-align: center; font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; margin-top: 50px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h1 { font-family: var(--font-serif); font-size: 2.8rem; color: var(--navy); margin-bottom: 20px; }
.stats-list { list-style: none; margin-top: 30px; border-left: 3px solid var(--accent); padding-left: 20px; }
.stats-list li { margin-bottom: 15px; font-size: 1.1rem; }
.stats-list strong { color: var(--navy); }

/* Testimonials */
.feedback-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feedback-card { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.feedback-card blockquote { font-family: var(--font-serif); font-style: italic; color: #475569; margin-bottom: 20px; font-size: 1.1rem; }
.person strong { display: block; color: var(--navy); font-size: 0.9rem; }
.person span { font-size: 0.8rem; color: #64748B; }

/* Contact */
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 60px; border-radius: 8px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.contact-info h2 { color: var(--navy); font-family: var(--font-serif); margin-bottom: 20px; }
.address-box { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--ice); }
.address-box p { margin-bottom: 10px; }

.navy-form .form-group { margin-bottom: 20px; }
.navy-form label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 5px; font-size: 0.9rem; }
.navy-form input, .navy-form select, .navy-form textarea { width: 100%; padding: 12px; border: 1px solid #CBD5E1; border-radius: 4px; font-family: var(--font-sans); }
.full { width: 100%; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 8px; }
.legal-text h1 { color: var(--navy); font-family: var(--font-serif); }

/* Footer */
.hanse-footer { background: var(--navy); color: #94A3B8; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-info h4 { color: var(--white); font-family: var(--font-serif); margin-bottom: 5px; }
.f-nav a { margin-left: 20px; color: #94A3B8; transition: 0.3s; }
.f-nav a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #334155; padding-top: 20px; }

@media (max-width: 900px) {
    .about-grid, .grid-3, .feedback-row, .contact-container { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}