/* ============================================================================
   MESCA — Maritime Elite Solutions
   Modern editorial design system · v2
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

:root {
    /* Brand palette — deep ocean + warm bronze */
    --ink:        #061626;   /* deepest, headers/footer */
    --ink-2:      #0a1f33;   /* primary navy */
    --ink-3:      #122c45;   /* mid navy */
    --steel:      #1e3a5f;   /* lighter navy */
    --bronze:     #c9a36d;   /* premium accent — maritime brass */
    --bronze-2:   #b08850;   /* deeper bronze for hover */
    --cyan:       #06b6d4;   /* functional accent — sea */
    --cyan-soft:  #67e8f9;

    /* Neutrals */
    --cream:      #faf7f1;   /* warm off-white background */
    --paper:      #ffffff;
    --line:       #e7e2d6;   /* warm divider on cream */
    --line-2:     #1f3a55;   /* divider on dark */
    --text:       #0f1c2d;
    --text-2:     #3a4a5e;
    --muted:      #6b7a8c;
    --muted-2:    #94a3b8;

    /* System */
    --radius-sm:  4px;
    --radius:     8px;
    --radius-lg:  16px;
    --shadow-sm:  0 1px 2px rgba(6,22,38,0.06), 0 1px 3px rgba(6,22,38,0.04);
    --shadow:     0 8px 24px rgba(6,22,38,0.08);
    --shadow-lg:  0 24px 60px rgba(6,22,38,0.18);
    --ease:       cubic-bezier(0.22, 1, 0.36, 1);
    --t:          0.4s var(--ease);

    /* Type scale */
    --display:    'Fraunces', Georgia, 'Times New Roman', serif;
    --sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ============================================================================
   LAYOUT
   ============================================================================ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

section { padding: 120px 0; position: relative; }
section.tight { padding: 80px 0; }
section.dark { background: var(--ink-2); color: var(--paper); }
section.cream-deep { background: #f3eee2; }

@media (max-width: 768px) {
    section { padding: 72px 0; }
    .container, .container-narrow { padding: 0 20px; }
}

/* Mockup banner */
.mockup-banner {
    background: var(--ink);
    color: var(--bronze);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--line-2);
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4 {
    font-family: var(--display);
    color: var(--ink-2);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 400;
}
h1 em {
    font-style: italic;
    color: var(--bronze);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
}
h2 em {
    font-style: italic;
    color: var(--bronze);
    font-weight: 400;
}

h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.25; }
h4 { font-size: 1.1rem; font-weight: 600; }

.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--paper); }

.eyebrow {
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--bronze);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--bronze);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-2);
    line-height: 1.6;
    max-width: 56ch;
}
.dark .lead { color: rgba(255,255,255,0.78); }

.section-head {
    max-width: 720px;
    margin: 0 auto 72px;
    text-align: center;
}
.section-head .eyebrow {
    justify-content: center;
}
.section-head .eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--bronze);
}
.section-head p {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-top: 18px;
    line-height: 1.65;
}
.dark .section-head p { color: rgba(255,255,255,0.7); }

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--t);
    cursor: pointer;
    white-space: nowrap;
}
.btn::after {
    content: '→';
    transition: transform var(--t);
}
.btn:hover::after { transform: translateX(4px); }

.btn-primary {
    background: var(--ink-2);
    color: var(--paper);
}
.btn-primary:hover {
    background: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.dark .btn-primary {
    background: var(--bronze);
    color: var(--ink);
}
.dark .btn-primary:hover {
    background: #d8b27c;
}

.btn-outline {
    background: transparent;
    color: var(--ink-2);
    border: 1px solid var(--ink-2);
}
.btn-outline:hover {
    background: var(--ink-2);
    color: var(--paper);
}
.dark .btn-outline {
    color: var(--paper);
    border-color: rgba(255,255,255,0.4);
}
.dark .btn-outline:hover {
    background: var(--paper);
    color: var(--ink-2);
    border-color: var(--paper);
}

.btn-ghost {
    padding: 14px 0;
    color: var(--ink-2);
    font-weight: 600;
    border-bottom: 1px solid var(--ink-2);
    border-radius: 0;
}
.btn-ghost:hover { color: var(--bronze); border-color: var(--bronze); }

/* ============================================================================
   HEADER & NAV
   ============================================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 241, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1240px;
    margin: 0 auto;
}
.logo img {
    height: 44px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 6px 0;
}
.nav-links a:hover { color: var(--bronze); }
.nav-links a.active { color: var(--ink-2); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--bronze);
}
.nav-links a.nav-cta {
    background: var(--ink-2);
    color: var(--paper) !important;
    padding: 10px 20px;
    border-radius: 999px;
    transition: background var(--t);
}
.nav-links a.nav-cta:hover {
    background: var(--bronze);
    color: var(--ink) !important;
}
.nav-links a.nav-cta::after { display: none; }

.lang-switch {
    display: flex;
    gap: 4px;
    padding-left: 18px;
    margin-left: 6px;
    border-left: 1px solid var(--line);
}
.lang-switch a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 6px 10px;
    color: var(--muted);
    border-radius: 4px;
}
.lang-switch a.active {
    color: var(--ink-2);
    background: var(--line);
}
.lang-switch a.active::after { display: none; }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--ink-2);
}

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid var(--line);
        transition: max-height 0.3s ease;
    }
    .nav-links.open {
        max-height: 600px;
        padding: 16px 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 14px 20px;
    }
    .lang-switch {
        justify-content: center;
        border-left: none;
        border-top: 1px solid var(--line);
        margin: 12px 0 0;
        padding: 16px 0 0;
    }
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    position: relative;
    background: var(--ink-2);
    color: var(--paper);
    padding: 0;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/port-sunset.jpg') center/cover no-repeat;
    opacity: 0.45;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,22,38,0.4) 0%, rgba(6,22,38,0.85) 100%),
                linear-gradient(110deg, rgba(6,22,38,0.85) 0%, rgba(6,22,38,0.2) 60%);
    z-index: 2;
}
.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 140px 32px 100px;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: end;
}
.hero h1 {
    color: var(--paper);
    margin-bottom: 32px;
    max-width: 16ch;
}
.hero h1 em {
    color: var(--bronze);
}
.hero .eyebrow {
    color: var(--bronze);
}
.hero .eyebrow::before { background: var(--bronze); }
.hero .lead {
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-meta {
    border-left: 1px solid rgba(201,163,109,0.4);
    padding-left: 32px;
    color: rgba(255,255,255,0.85);
}
.hero-meta .label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 12px;
}
.hero-meta p {
    font-family: var(--display);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.4;
    font-weight: 400;
}
.hero-meta .author {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-style: normal;
    margin-top: 16px;
    color: rgba(255,255,255,0.6);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero-scroll::after {
    content: '';
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, var(--bronze), transparent);
}

@media (max-width: 900px) {
    .hero { min-height: 80vh; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 20px 80px;
    }
    .hero-meta { border-left: none; border-top: 1px solid rgba(201,163,109,0.3); padding-left: 0; padding-top: 24px; }
}

/* ============================================================================
   PAGE HERO (interior pages)
   ============================================================================ */
.page-hero {
    background: var(--ink-2);
    color: var(--paper);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/port-maracaibo.jpg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 1;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,22,38,0.7) 0%, rgba(6,22,38,0.95) 100%);
    z-index: 2;
}
.page-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
}
.page-hero h1 {
    color: var(--paper);
    margin: 24px 0 18px;
}
.page-hero h1 em { color: var(--bronze); }
.page-hero .lead {
    color: rgba(255,255,255,0.8);
    margin: 0 auto;
    text-align: center;
}
.breadcrumb {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bronze);
    font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--bronze); }

/* ============================================================================
   SERVICES — editorial cards
   ============================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.service-card {
    background: var(--paper);
    padding: 48px 36px;
    transition: background var(--t);
    position: relative;
}
.service-card:hover { background: var(--cream); }
.service-card .num {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--bronze);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}
.service-card .icon {
    width: 48px;
    height: 48px;
    color: var(--ink-2);
    margin-bottom: 28px;
}
.service-card .icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card h3 {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--ink-2);
}
.service-card p {
    color: var(--text-2);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-card .more {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-card .more::after { content: '→'; transition: transform var(--t); }
.service-card:hover .more::after { transform: translateX(4px); color: var(--bronze); }

/* ============================================================================
   SPLIT LAYOUT — editorial 2-col
   ============================================================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 48px; }
}

.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--ink-2);
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-image .badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--cream);
    color: var(--ink-2);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.split-content h2 { margin-bottom: 24px; }
.split-content p {
    color: var(--text-2);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.7;
}
.split-content p strong { color: var(--ink-2); font-weight: 600; }

/* Two-card split (mission/vision) */
.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
@media (max-width: 800px) {
    .split-cards { grid-template-columns: 1fr; }
}
.principle-card {
    background: var(--paper);
    padding: 56px 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    position: relative;
    transition: all var(--t);
}
.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--bronze);
}
.principle-card .marker {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--bronze);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.principle-card h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--ink-2);
}
.principle-card .quote-mark {
    font-family: var(--display);
    font-size: 4rem;
    line-height: 0.8;
    color: var(--bronze);
    opacity: 0.35;
    margin-bottom: -16px;
}
.principle-card p {
    color: var(--text-2);
    font-size: 1rem;
    line-height: 1.75;
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
}

/* ============================================================================
   STATS / METRICS
   ============================================================================ */
.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.dark .metrics { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.08); }

@media (max-width: 800px) {
    .metrics { grid-template-columns: repeat(2, 1fr); }
}
.metric {
    background: var(--ink-2);
    color: var(--paper);
    padding: 48px 32px;
    text-align: left;
}
.metric .num {
    font-family: var(--display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--bronze);
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.metric .num small {
    font-size: 1.5rem;
    color: rgba(201,163,109,0.7);
}
.metric h4 {
    color: var(--paper);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.metric p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ============================================================================
   PARTNER LOGOS
   ============================================================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.partner-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--t);
    text-align: left;
}
.partner-card:hover {
    border-color: var(--bronze);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.partner-card .logo-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.partner-card .logo-box img {
    max-height: 64px;
    max-width: 100%;
    width: auto;
    filter: grayscale(20%);
    transition: filter var(--t);
}
.partner-card:hover .logo-box img { filter: grayscale(0%); }
.partner-card h3 {
    font-family: var(--display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--ink-2);
}
.partner-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.55;
}

/* Suppliers — minimal text grid */
.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.supplier-cell {
    background: var(--ink-2);
    padding: 28px 24px;
    transition: background var(--t);
}
.supplier-cell:hover { background: var(--ink-3); }
.supplier-cell .name {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--paper);
    margin-bottom: 6px;
}
.supplier-cell .desc {
    font-size: 0.82rem;
    color: var(--bronze);
    letter-spacing: 0.04em;
}

/* ============================================================================
   ORG CHART
   ============================================================================ */
.org-chart {
    max-width: 900px;
    margin: 0 auto;
}
.org-row {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}
.org-row.row-3 { grid-template-columns: repeat(3, 1fr); }
.org-row.row-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 800px) {
    .org-row.row-3, .org-row.row-5 { grid-template-columns: 1fr 1fr; }
}
.org-node {
    background: var(--ink-2);
    color: var(--paper);
    padding: 22px 20px;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}
.org-node.director {
    background: var(--bronze);
    color: var(--ink);
    max-width: 320px;
    margin: 0 auto;
    font-size: 1.05rem;
    padding: 26px 24px;
}
.org-sub {
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink-2);
    padding: 18px 14px;
    text-align: center;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================================================
   CTA BANNER
   ============================================================================ */
.cta-banner {
    background: var(--ink);
    color: var(--paper);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/ship-cargo.jpg') center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
}
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,22,38,0.92) 0%, rgba(10,31,51,0.85) 100%);
    z-index: 2;
}
.cta-banner .container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 760px;
}
.cta-banner h2 {
    color: var(--paper);
    margin-bottom: 20px;
}
.cta-banner h2 em { color: var(--bronze); }
.cta-banner p {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

/* ============================================================================
   SERVICES DETAIL PAGE
   ============================================================================ */
.service-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.service-section:last-of-type { border-bottom: 0; }
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 900px) {
    .service-detail { grid-template-columns: 1fr; gap: 32px; }
}
.service-detail .meta .num {
    font-family: var(--display);
    font-size: 4rem;
    color: var(--bronze);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.service-detail h2 {
    margin-bottom: 16px;
    font-size: 2.3rem;
}
.service-detail .desc { color: var(--text-2); margin-bottom: 28px; }
.service-detail .features {
    margin-top: 16px;
}
.service-detail .features li {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text);
    font-size: 0.96rem;
}
.service-detail .features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--bronze);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
    justify-content: center;
}
.service-anchors a {
    padding: 10px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--t);
}
.service-anchors a:hover {
    border-color: var(--bronze);
    color: var(--bronze);
}

/* ============================================================================
   CONTACT PAGE
   ============================================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--paper);
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-info {
    background: var(--ink-2);
    color: var(--paper);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,163,109,0.18), transparent 70%);
}
.contact-info h3 {
    color: var(--paper);
    font-family: var(--display);
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.contact-info > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    font-size: 0.95rem;
}
.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}
.contact-item:first-of-type { border-top: 0; padding-top: 0; }
.contact-item .icon {
    width: 36px;
    height: 36px;
    color: var(--bronze);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item .label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 6px;
    font-weight: 600;
}
.contact-item .value {
    color: var(--paper);
    font-size: 0.98rem;
    line-height: 1.55;
}
.contact-item .value a { color: var(--paper); }
.contact-item .value a:hover { color: var(--bronze); }

.contact-form {
    padding: 56px 48px;
    background: var(--paper);
}
.contact-form h3 {
    font-family: var(--display);
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.contact-form > p {
    color: var(--text-2);
    margin-bottom: 32px;
    font-size: 0.95rem;
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--text);
    background: var(--cream);
    transition: all var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bronze);
    background: var(--paper);
    box-shadow: 0 0 0 3px rgba(201,163,109,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

@media (max-width: 600px) {
    .contact-info, .contact-form { padding: 40px 28px; }
}

/* ============================================================================
   MAP
   ============================================================================ */
.map-section {
    padding: 0;
    height: 420px;
    background: var(--ink-2);
    position: relative;
    overflow: hidden;
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/port-maracaibo.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}
.map-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,22,38,0.88) 0%, rgba(10,31,51,0.7) 100%);
    z-index: 2;
}
.map-section .inner {
    position: relative;
    z-index: 3;
    padding: 0 32px;
}
.map-section .pin {
    color: var(--bronze);
    margin: 0 auto 18px;
}
.map-section h2 { color: var(--paper); margin-bottom: 8px; }
.map-section p { color: rgba(255,255,255,0.85); }
.map-section .note {
    color: var(--bronze);
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 14px;
    font-family: var(--display);
}

/* ============================================================================
   FEATURED QUOTE
   ============================================================================ */
.featured-quote {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}
.featured-quote .mark {
    font-family: var(--display);
    font-style: italic;
    color: var(--bronze);
    font-size: 5rem;
    line-height: 0.6;
    margin-bottom: 8px;
}
.featured-quote blockquote {
    font-family: var(--display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.35;
    color: var(--ink-2);
    margin: 0 0 32px;
}
.featured-quote .attr {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bronze);
    font-weight: 600;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line-2);
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}
footer h4 {
    font-family: var(--display);
    color: var(--paper);
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
footer ul li {
    padding: 6px 0;
    font-size: 0.92rem;
}
footer ul li a {
    color: rgba(255,255,255,0.65);
}
footer ul li a:hover { color: var(--bronze); }
footer .tagline {
    font-family: var(--display);
    font-style: italic;
    color: var(--bronze);
    font-size: 1rem;
    margin-top: 20px;
}
footer p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
}
.footer-bottom {
    padding-top: 32px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--bronze); }
