/* =========================================
   Veliero Capital – Clean Minimal Styles
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 13px;
}

body {
    font-family: Rockwell, 'Rokkitt', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #2a2a2a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* --- Typography --- */
h1, h2, h3 {
    font-family: Rockwell, 'Rokkitt', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.3;
    color: #111111;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

h2 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2em;
    color: #111111;
    display: inline-block;
    padding-bottom: 0.3em;
    background-image: linear-gradient(#111111, #111111);
    background-size: 0% 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}

h2:hover {
    background-size: 100% 1px;
}

p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1em;
    text-align: justify;
    letter-spacing: 0.015em;
}

p:last-child {
    margin-bottom: 0;
}


/* --- Layout --- */
.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 920px;
    margin: 0 auto;
    padding: 1.6rem 2rem;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5em;
}

.nav-list a {
    color: #666666;
    font-family: Rockwell, 'Rokkitt', 'Georgia', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: #111111;
    opacity: 1;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: #111111;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =========================================
   HERO
   ========================================= */
.hero {
    padding: 12rem 0 2rem;
}

.hero h1 {
    color: #111111;
}


/* =========================================
   SECTIONS
   ========================================= */
.section {
    padding: 3.5rem 0;
    scroll-margin-top: 70px;
    border-top: none;
    position: relative;
}

.section::before {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: #cccccc;
    margin: 0 auto 3.5rem;
}

.section:first-of-type::before {
    display: none;
}

.section-accent {
    background-color: #f9f9f9;
}

.section p {
    max-width: 600px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
}

.two-col .col p {
    max-width: none;
}


/* =========================================
   PRINCIPLES LIST & QUOTE
   ========================================= */
.principles-list {
    list-style: none;
    max-width: 600px;
    margin: 1.5em 0;
    padding: 0;
}

.principles-list li {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.7em;
    padding-left: 1.2em;
    position: relative;
    text-align: justify;
}

.principles-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #999999;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.6;
}

.quote {
    margin-top: 2em;
    max-width: 600px;
    padding-left: 1.2em;
    border-left: 2px solid #cccccc;
}

.quote p {
    font-size: 0.92rem;
    font-style: italic;
    color: #444444;
    margin-bottom: 0.4em;
}

.quote cite {
    font-size: 0.78rem;
    color: #888888;
    font-style: normal;
}


/* =========================================
   CONTACT SECTION
   ========================================= */
.section-contact {
    padding: 3.5rem 0;
    border-top: none;
    position: relative;
}

.section-contact::before {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: #cccccc;
    margin: 0 auto 3.5rem;
}

.contact-inner {
    max-width: 520px;
}

.contact-inner h2 {
    margin-bottom: 1em;
}

.contact-inner p {
    max-width: none;
}


/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    border-top: none;
    padding: 2.5rem 0 2.5rem;
    margin-top: 1rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-detail {
    font-size: 0.7rem;
    color: #555555;
    margin-bottom: 0.15em;
    line-height: 1.5;
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-right .footer-detail {
    text-align: right;
}


/* =========================================
   PRIVACY PAGE
   ========================================= */
.privacy-page {
    min-height: 100vh;
    padding: 8rem 0 4rem;
}

.privacy-content {
    max-width: 600px;
}

.privacy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 70px;
}

.privacy-section h2 {
    margin-bottom: 1em;
}


/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* =========================================
   RESPONSIVE – TABLET & MOBILE
   ========================================= */
@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.35s ease;
        z-index: 105;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }

    .nav-list a {
        font-size: 1rem;
        color: #111111;
    }

    .hero {
        padding: 9rem 0 1.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section::before {
        margin-bottom: 2.5rem;
    }

    .section-contact {
        padding: 2.5rem 0;
    }

    .section-contact::before {
        margin-bottom: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.2em;
    }

    .footer-right {
        text-align: left;
    }

    .footer-right .footer-detail {
        text-align: left;
    }

    .privacy-page {
        padding: 6rem 0 3rem;
    }
}
