/* Maxine Agency — matching maxineagency.com aesthetic */
/* Off-white cream bg, dark olive text, chartreuse footer, serif logo */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- COLORS (matching maxineagency.com) --- */
:root {
    --cream: #F9F8F0;
    --olive: #3D420F;
    --olive-light: #5C6318;
    --olive-muted: #8A8D5E;
    --chartreuse: #DCE775;
    --chartreuse-dark: #C5CF5A;
    --white: #ffffff;
    --black: #000000;
}

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

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

body {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--olive);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

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

a {
    color: var(--olive);
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.6;
}

/* --- NAV --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 66, 15, 0.06);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 36px;
    width: auto;
    opacity: 0.9;
}

.logo-text {
    font-family: 'Cormorant Garamond', 'Didot', 'Bodoni MT', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--black);
}

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

.nav-links a {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--olive);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--olive);
    transition: all 0.3s;
}

/* --- HERO --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--olive);
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(61,66,15,0.1) 0%,
        rgba(61,66,15,0.5) 50%,
        rgba(61,66,15,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Didot', 'Bodoni MT', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream);
    max-width: 750px;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--chartreuse);
    margin-bottom: 1.5rem;
}

.cta-link {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    border-bottom: 1px solid rgba(249,248,240,0.4);
    padding-bottom: 4px;
    transition: all 0.3s;
}

.cta-link:hover {
    opacity: 1;
    border-bottom-color: var(--cream);
}

/* --- SECTIONS --- */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--olive-muted);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Didot', 'Bodoni MT', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--olive);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--olive-muted);
    margin-top: 12px;
}

/* --- SERVICES --- */
.services-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: 30px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(61,66,15,0.1);
}

.service-row:first-child {
    border-top: 1px solid rgba(61,66,15,0.1);
}

.service-num {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--olive-muted);
    opacity: 0.4;
    padding-top: 4px;
}

.service-info h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    color: var(--olive);
}

.service-info p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--olive-muted);
}

.service-price {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--olive);
    letter-spacing: 0.02em;
    text-align: right;
    padding-top: 4px;
}

/* --- WHY PORTUGAL (dark olive section) --- */
.section-dark {
    background: var(--olive);
    color: var(--cream);
}

.section-dark .section-label {
    color: var(--olive-light);
}

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

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 50px 0 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(249,248,240,0.1);
}

.stat-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--chartreuse);
    opacity: 0.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.why-card {
    padding: 30px 0;
    border-bottom: 1px solid rgba(249,248,240,0.1);
}

.why-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(249,248,240,0.55);
}

.brands-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(249,248,240,0.1);
}

.brands-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(249,248,240,0.25);
    margin-bottom: 30px;
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
}

.brands-row span {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(249,248,240,0.4);
    transition: color 0.3s;
}

.brands-row span:hover {
    color: var(--cream);
}

.comparison-wrap {
    padding-top: 60px;
}

.comparison-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(249,248,240,0.25);
    margin-bottom: 25px;
}

.comparison {
    width: 100%;
    border-collapse: collapse;
}

.comparison th {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(249,248,240,0.35);
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(249,248,240,0.12);
}

.comparison th.highlight {
    color: var(--chartreuse);
}

.comparison td {
    font-size: 0.82rem;
    font-weight: 300;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(249,248,240,0.05);
    color: rgba(249,248,240,0.45);
}

.comparison td.highlight {
    color: var(--cream);
    font-weight: 500;
}

.comparison td:first-child {
    color: rgba(249,248,240,0.35);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}

.about-text .section-label {
    margin-bottom: 12px;
}

.about-text .section-title {
    margin-bottom: 30px;
}

.about-text p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--olive-muted);
    margin-bottom: 20px;
}

.about-accent {
    font-weight: 500 !important;
    color: var(--olive) !important;
    font-style: italic;
    border-left: 2px solid var(--olive);
    padding-left: 20px;
    margin-top: 30px !important;
}

/* --- CONTACT --- */
.section-contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-details {
    padding-top: 10px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-label {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--olive-muted);
    opacity: 0.6;
    margin-bottom: 6px;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--olive);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid rgba(61,66,15,0.12);
    background: transparent;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--olive);
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--olive-muted);
    opacity: 0.5;
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--olive);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--olive);
    color: var(--cream);
    border: none;
    padding: 16px 40px;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--olive-light);
}

/* --- FOOTER (chartreuse, matching maxineagency.com) --- */
.footer {
    background: var(--chartreuse);
    color: var(--olive);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(61,66,15,0.12);
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.85;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', 'Didot', 'Bodoni MT', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--olive);
}

.footer-info p {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--olive);
    margin-bottom: 4px;
    text-align: right;
}

.footer-bottom {
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--olive-muted);
    opacity: 0.6;
}

/* --- FADE-IN --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .container, .nav-container, .hero-content {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(249,248,240,0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(61,66,15,0.06);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-content {
        padding: 0 24px 50px;
    }

    .section {
        padding: 70px 0;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-num {
        display: none;
    }

    .service-price {
        text-align: left;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brands-row {
        gap: 20px 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .footer-info p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .comparison th,
    .comparison td {
        padding: 10px 8px;
        font-size: 0.7rem;
    }
}
