*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0D1B2A;
    --navy-mid: #162338;
    --navy-light: #1E3050;
    --gold: #C9A84C;
    --gold-light: #DFC07A;
    --gold-pale: #F4EDD8;
    --cream: #F8F5EE;
    --slate: #8A9BAD;
    --text: #1A2633;
    --text-mid: #4A5E70;
    --white: #FFFFFF;
    --border: rgba(201, 168, 76, 0.2);
    --section-pad: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    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: 0 60px;
    height: 72px;
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 46px;
    width: auto;
    display: block;
    opacity: 0.55;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    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.2s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* ── HERO ── */
#home {
    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 60% 80% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30, 48, 80, 0.8) 0%, transparent 50%);
}

/* hero-rule removed */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(42px, 5.5vw, 75px);
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.hero-headline em {
    font-style: normal;
    font-weight: 200;
    color: var(--gold-light);
}

.hero-headline-sub {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(33px, 4.1vw, 60px);
    color: var(--gold-light);
    line-height: 1.15;
    margin-top: 6px;
}

.hero-sub {
    font-weight: 300;
    font-size: 17px;
    color: var(--slate);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 48px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 14px 32px;
    transition: all 0.25s;
}

.hero-cta:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

.hero-cta svg {
    transition: transform 0.25s;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 48px;
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 42px;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 6px;
}

/* ── SECTIONS SHARED ── */
section {
    padding: var(--section-pad);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

/* ── ABOUT ── */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-body {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 24px;
}

.about-body strong {
    color: var(--text);
    font-weight: 500;
}

.about-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 32px 0;
}

.about-right {
    padding-top: 12px;
}

.commodity-list {
    list-style: none;
}

.commodity-list li {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 24px 0 24px 24px;
    border-left: 2px solid rgba(201, 168, 76, 0.25);
    margin-left: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-mid);
}

.commodity-list li:last-child {
    border-bottom: none;
}

.commodity-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    min-width: 24px;
    margin-top: 2px;
}

.commodity-name {
    font-weight: 500;
    color: var(--text);
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}

/* ── SERVICES ── */
#services {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* services watermark removed */

#services .section-title {
    color: var(--white);
}

.services-intro {
    font-size: 17px;
    font-weight: 300;
    color: var(--slate);
    max-width: 580px;
    margin-bottom: 64px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

/* 5-card layout: row1 = 2 wide cards, row2 = 3 normal cards */
@supports (grid-template-areas: "a") {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .services-grid .service-card:nth-child(1) {
        grid-column: span 3;
    }

    .services-grid .service-card:nth-child(2) {
        grid-column: span 3;
    }

    .services-grid .service-card:nth-child(3) {
        grid-column: span 2;
    }

    .services-grid .service-card:nth-child(4) {
        grid-column: span 2;
    }

    .services-grid .service-card:nth-child(5) {
        grid-column: span 2;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 44px 36px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.service-card:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* service-num removed */
.service-num-hidden {
    font-size: 0;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
}

/* ── MANAGEMENT ── */
#management {
    background: var(--cream);
}

.mgmt-intro {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 520px;
    margin-bottom: 72px;
    line-height: 1.8;
}

.mgmt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.mgmt-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mgmt-card.primary {
    border-top: 3px solid var(--gold);
}

.mgmt-card-header {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 40px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mgmt-photo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    object-position: center top;
    display: block;
    flex-shrink: 0;
    filter: saturate(0.92);
}

.mgmt-header-text {
    padding-top: 6px;
}

.mgmt-initials {
    width: 60px;
    height: 60px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.mgmt-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.1;
}

.mgmt-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.mgmt-card-body {
    padding: 28px 40px 36px;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
}

.mgmt-card-body p {
    margin-bottom: 14px;
}

.mgmt-card-body p:last-child {
    margin-bottom: 0;
}

/* ── CONTACT ── */
#contact {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

#contact::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.05);
    z-index: 1;
}

#contact .section-title {
    color: var(--white);
}

.contact-lead {
    font-size: 17px;
    font-weight: 300;
    color: var(--slate);
    max-width: 520px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--gold);
}

.contact-info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 6px;
}

.contact-info-value {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

a.contact-info-value:hover {
    color: var(--gold-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: rgba(201, 168, 76, 0.5);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 40px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ── FOOTER ── */
footer {
    background: #080F18;
    padding: 36px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.footer-copy {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.04em;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .hero-content,
    .container {
        padding: 0 24px;
    }

    .hero-stats {
        display: none;
    }

    .hero-rule {
        display: none;
    }

    .about-grid,
    .services-grid,
    .mgmt-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 28px 24px;
    }

    section {
        padding: 72px 0;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1px;
    }

    .services-grid .service-card {
        grid-column: span 1 !important;
    }
}

/* ── FADE IN ANIMATION ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
    transition-delay: 0.5s;
}

/* ── CLIENTS ── */
#clients {
    background: var(--white);
    padding: var(--section-pad);
}

.clients-intro {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 560px;
    margin-bottom: 56px;
    line-height: 1.8;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.client-item {
    padding: 28px 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.client-item:hover {
    background: var(--cream);
}

.client-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}