/* Style: Emerald Strategy (Minimalist Corporate) */
:root {
    --bg-color: #FDFDFD;
    --text-color: #1a1a1a;
    --emerald: #064E3B; /* Deep Green */
    --sand: #F5F5DC;
    --light-grey: #f4f4f4;
    --border-color: #e5e5e5;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-weight: 300;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* Navbar */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.nav-container { width: 90%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-sans); font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; color: var(--text-color); }
.dot { color: var(--emerald); }

.desktop-menu { display: flex; gap: 40px; align-items: center; list-style: none; }
.desktop-menu a { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.desktop-menu a:hover { color: var(--emerald); }
.nav-cta { border: 1px solid var(--text-color); padding: 10px 25px; border-radius: 50px; }
.nav-cta:hover { background: var(--text-color); color: var(--bg-color); }

.menu-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-burger .line { width: 25px; height: 2px; background: var(--text-color); }

/* Fullscreen Menu (Mobile) */
.fullscreen-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--emerald); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px; transform: translateY(-100%); transition: 0.5s ease-in-out; }
.fullscreen-menu.active { transform: translateY(0); }
.menu-close { position: absolute; top: 30px; right: 30px; color: var(--sand); cursor: pointer; font-weight: 700; text-transform: uppercase; }
.fullscreen-menu a { font-family: var(--font-serif); font-size: 3rem; color: var(--sand); }

@media (max-width: 900px) {
    .desktop-menu { display: none; }
    .menu-burger { display: flex; }
}

/* Hero */
.hero-minimal { padding: 150px 0 100px; }
.subtitle { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--emerald); font-weight: 800; display: block; margin-bottom: 20px; }
.headline { font-family: var(--font-serif); font-size: 5rem; line-height: 1.1; margin-bottom: 50px; color: var(--text-color); }
.headline-sm { font-family: var(--font-serif); font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }

.hero-footer { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid var(--border-color); padding-top: 30px; }
.hero-footer p { max-width: 400px; color: #666; }
.link-arrow { font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.link-arrow span { transition: 0.3s; }
.link-arrow:hover span { transform: translateX(10px); }

.hero-image-break { width: 100%; height: 500px; background-size: cover; background-position: center; background-attachment: fixed; }

/* Services List */
.list-item { display: flex; align-items: center; justify-content: space-between; padding: 40px 0; border-bottom: 1px solid var(--border-color); transition: 0.3s; }
.list-item:hover { background: var(--light-grey); padding-left: 20px; padding-right: 20px; }
.list-item .num { font-size: 0.9rem; color: var(--emerald); font-weight: 700; }
.list-item h3 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; width: 30%; }
.list-item p { width: 40%; color: #666; }
.plus-btn { font-size: 2rem; font-weight: 300; }

/* Stats */
.stats-minimal { background: var(--emerald); color: var(--sand); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; text-align: center; }
.stat .val { display: block; font-family: var(--font-serif); font-size: 4rem; line-height: 1; margin-bottom: 10px; }
.stat .lbl { text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; opacity: 0.8; }

/* About Page */
.about-hero { padding: 150px 0 80px; background: var(--light-grey); }
.serif-head { font-family: var(--font-serif); font-size: 4rem; line-height: 1.2; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.lead { font-size: 1.2rem; font-weight: 500; margin-bottom: 30px; }
.values-grid { margin-top: 50px; display: grid; gap: 30px; }
.val-item { border-left: 2px solid var(--emerald); padding-left: 20px; }
.val-item h4 { font-size: 1rem; margin-bottom: 5px; color: var(--emerald); }

/* Testimonials */
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.t-card { background: var(--white); padding: 40px; border: 1px solid var(--border-color); }
.t-quote { font-family: var(--font-serif); font-size: 4rem; color: var(--emerald); line-height: 0.5; margin-bottom: 20px; }
.t-text { font-style: italic; margin-bottom: 30px; color: #555; }
.t-author strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; }
.t-author span { font-size: 0.8rem; color: #888; text-transform: uppercase; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.c-row { margin-bottom: 30px; }
.c-row span { display: block; font-size: 0.7rem; letter-spacing: 2px; color: #888; margin-bottom: 5px; }
.c-row a, .c-row p { font-family: var(--font-serif); font-size: 1.5rem; color: var(--emerald); }

.minimal-form .form-group { margin-bottom: 30px; }
.minimal-form label { display: block; font-size: 0.8rem; margin-bottom: 10px; font-weight: 700; letter-spacing: 1px; }
.minimal-form input, .minimal-form textarea { width: 100%; border: none; border-bottom: 1px solid var(--text-color); padding: 10px 0; background: transparent; font-family: var(--font-serif); font-size: 1.2rem; outline: none; }
.minimal-form input:focus, .minimal-form textarea:focus { border-bottom-color: var(--emerald); }
.btn-submit { background: var(--text-color); color: var(--bg-color); border: none; padding: 15px 40px; font-family: var(--font-sans); font-weight: 700; cursor: pointer; border-radius: 50px; margin-top: 20px; transition: 0.3s; }
.btn-submit:hover { background: var(--emerald); }

/* Legal */
.legal-container { max-width: 800px; }
.legal-block h3 { margin-top: 30px; font-family: var(--font-serif); color: var(--emerald); }

/* Footer */
.minimal-footer { border-top: 1px solid var(--border-color); padding: 80px 0 40px; margin-top: 100px; background: var(--white); }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 60px; }
.brand-col h4 { font-family: var(--font-sans); font-weight: 800; line-height: 1; letter-spacing: 1px; }
.link-col { display: flex; flex-direction: column; gap: 15px; }
.link-col a { font-weight: 500; }
.link-col a:hover { text-decoration: underline; }
.address-col { color: #888; text-align: right; }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 20px; font-size: 0.8rem; color: #888; }

@media (max-width: 900px) {
    .hero-footer, .list-item, .split-grid, .stats-grid, .testimonials-slider, .contact-grid, .footer-top { flex-direction: column; grid-template-columns: 1fr; }
    .hero-minimal { padding: 120px 0 60px; }
    .headline { font-size: 3rem; }
    .list-item { padding: 30px 0; flex-direction: column; align-items: flex-start; gap: 10px; }
    .list-item h3 { width: 100%; }
    .list-item p { width: 100%; }
    .address-col { text-align: left; margin-top: 30px; }
}