:root {
    --navy: #0d1e30;
    --navy-mid: #162d45;
    --teal: #1a8fa0;
    --teal-light: #26afc4;
    --teal-pale: #e0f5f8;
    --cream: #f4f7f9;
    --cream-mid: #e8eef2;
    --text-dark: #0d1e30;
    --text-muted: #4a6070;
    --white: #ffffff;
}

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

body {
    font-family: 'Barlow', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    background: rgba(13, 27, 42, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26,143,160, 0.2);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.08em;
    text-decoration: none;
}

.nav-logo span { color: var(--teal-light); }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links a:hover { color: var(--teal-light); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,143,160,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(22,45,69,0.8) 0%, transparent 60%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-lines::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 58%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(26,143,160,0.3) 30%, rgba(26,143,160,0.3) 70%, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 60px 100px;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.4s;
}

.hero-title em {
    font-style: italic;
    color: var(--teal-light);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    color: rgba(245,240,232,0.55);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.6s;
    letter-spacing: 0.03em;
}

.hero-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245,240,232,0.65);
    max-width: 560px;
    margin-bottom: 56px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.7s;
}

.btn-primary {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--teal);
    padding: 16px 40px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.9s;
}

.btn-primary:hover {
    background: #1fc8e0;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(245,240,232,0.3);
    padding: 15px 40px;
    text-decoration: none;
    margin-left: 16px;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 1.0s;
}

.btn-outline:hover {
    border-color: var(--teal-light);
    color: var(--teal-light);
    transform: translateY(-2px);
}

.hero-stat-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    border-top: 1px solid rgba(26,143,160,0.2);
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 1.1s;
}

.hero-stat {
    flex: 1;
    padding: 28px 40px;
    border-right: 1px solid rgba(26,143,160,0.15);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--teal-light);
    display: block;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
}

/* ── SECTION BASE ── */
section { padding: 100px 60px; }

.section-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--teal); }

.section-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 620px;
}

/* ── FIRM OVERVIEW ── */
.overview {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-image {
    position: relative;
    height: 520px;
}

.overview-image-inner {
    width: 100%;
    height: 100%;
    background: var(--navy-mid);
    overflow: hidden;
    position: relative;
}

.overview-image-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #2a4060 100%);
}

.overview-image-inner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26,143,160,0.12), transparent);
}

.overview-img-text {
    position: absolute;
    bottom: 40px; left: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(245,240,232,0.12);
    line-height: 1;
    letter-spacing: -0.02em;
}

.overview-teal-line {
    position: absolute;
    top: 40px; right: -20px;
    width: 3px;
    height: 160px;
    background: var(--teal);
}

/* ── VALUE PROPS ── */
.value-props {
    background: var(--navy);
    padding: 100px 60px;
}

.value-props .section-title { color: var(--cream); }

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: rgba(26,143,160,0.15);
}

.value-card {
    background: var(--navy);
    padding: 48px 40px;
    border-top: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
}

.value-card:hover {
    border-color: var(--teal);
    background: var(--navy-mid);
}

.value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(26,143,160,0.25);
    display: block;
    margin-bottom: 20px;
    line-height: 1;
    transition: color 0.3s;
}

.value-card:hover .value-num { color: rgba(26,143,160,0.5); }

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(245,240,232,0.5);
    font-weight: 300;
}

/* ── INVESTMENT CRITERIA ── */
.criteria {
    background: var(--cream-mid);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.criteria-list {
    list-style: none;
    margin-top: 40px;
}

.criteria-list li {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(13,27,42,0.1);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.criteria-list li:first-child { border-top: 1px solid rgba(13,27,42,0.1); }

.criteria-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--teal);
    border-radius: 50%;
    margin-top: 8px;
}

.criteria-highlight {
    background: var(--navy);
    padding: 60px 50px;
    position: relative;
}

.criteria-highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 60px;
    background: var(--teal);
}

.criteria-highlight blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: 24px;
}

.criteria-highlight cite {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-light);
    font-style: normal;
}

/* ── WHY PANMURE ── */
.why { background: var(--cream); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.why-item {
    padding: 40px;
    background: var(--white);
    border-left: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 20px rgba(13,27,42,0.06);
}

.why-item:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13,27,42,0.12);
}

.why-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 14px;
}

.why-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* ── CONTACT ── */
.contact {
    background: var(--navy);
    text-align: center;
    padding: 120px 60px;
}

.contact .section-title {
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto 20px;
}

.contact .section-body {
    color: rgba(245,240,232,0.5);
    margin: 0 auto 48px;
    text-align: center;
}

/* ── FOOTER ── */
footer {
    background: #060e16;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(26,143,160,0.15);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(245,240,232,0.4);
    letter-spacing: 0.08em;
}

.footer-logo span { color: var(--teal); }

.footer-copy {
    font-size: 12px;
    color: rgba(245,240,232,0.25);
    letter-spacing: 0.06em;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--teal-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 70px 24px; }
    .hero-content { padding: 120px 24px 80px; }
    .hero-stat-bar { flex-wrap: wrap; position: relative; }
    .hero-stat { flex: 1 1 50%; border-right: 1px solid rgba(26,143,160,0.15); }
    .overview { grid-template-columns: 1fr; gap: 40px; }
    .overview-image { height: 280px; }
    .value-grid { grid-template-columns: 1fr; }
    .criteria { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: 1fr; gap: 20px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .btn-outline { margin-left: 0; margin-top: 12px; display: block; text-align: center; }
}
