/* ── VARIABLES ── */
:root {
    --primary: #1a2332;
    --primary-light: #243447;
    --accent: #c8a961;
    --accent-hover: #d4b872;
    --text: #3a3a3a;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-cream: #f9f7f3;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

/* ── RESET ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 35, 50, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--accent);
}

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

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--primary) !important;
    padding: 0.55rem 1.5rem;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: url('hero-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,35,50,0.92) 0%, rgba(13,21,32,0.85) 50%, rgba(26,42,61,0.75) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,169,97,0.3), transparent);
    z-index: 2;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 680px;
}

.hero-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    animation: fadeInUp 0.8s ease;
    position: relative;
    padding-left: 3rem;
}

.hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.2rem;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-size: 3.6rem;
    color: #fff;
    margin-bottom: 1.8rem;
    font-weight: 600;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
    font-weight: 600;
}

.hero-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin-bottom: 2.8rem;
    line-height: 1.85;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 0.9rem 2.2rem;
    border: none;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,169,97,0.25);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.6);
    padding: 0.9rem 1.5rem;
    border: none;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.btn-ghost:hover {
    color: var(--accent);
}

.hero-metrics {
    display: flex;
    gap: 0;
    margin-top: 5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.metric {
    padding: 1.5rem 3rem 1.5rem 0;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.metric:first-child {
    padding-left: 0;
}

.metric:last-child {
    border-right: none;
}

.metric strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.metric span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

/* ── SECTIONS ── */
.section {
    padding: 7rem 2rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ── ABOUT ── */
.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 520px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent);
    z-index: 0;
}

.about-image-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: url('hero-banner.jpg') center/cover no-repeat;
}

.about-image-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,35,50,0.85), rgba(13,21,32,0.8));
}

.about-image-inner > * {
    position: relative;
    z-index: 1;
}

.about-image-inner .years {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.about-image-inner .years-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text h2 span {
    color: var(--accent);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(200,169,97,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.about-feature span {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--primary);
}

/* ── SERVICES ── */
.services {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200,169,97,0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card ul li {
    padding: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card ul li::before {
    content: '\2022';
    color: var(--accent);
    font-weight: bold;
}

/* ── APPROACH ── */
.approach {
    background: var(--primary);
    color: #fff;
}

.approach .section-label {
    color: var(--accent);
}

.approach .section-header h2 {
    color: #fff;
}

.approach .section-header p {
    color: rgba(255,255,255,0.55);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.approach-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: rgba(200,169,97,0.2);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 1.5rem;
    background: var(--primary);
    position: relative;
    z-index: 1;
}

.step h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ── TEAM ── */
.team {
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-photo::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(200,169,97,0.2);
}

.team-photo .initials {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
}

.team-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.team-card .role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 300px;
    margin: 0 auto;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--bg-cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-author-info strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}

.testimonial-author-info span {
    color: var(--text-light);
    font-size: 0.82rem;
}

/* ── CTA ── */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1520 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ── CONTACT ── */
.contact {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(200,169,97,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.contact-detail strong {
    display: block;
    color: var(--primary);
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.contact-detail span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg-cream);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1px solid var(--border);
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    padding: 0.95rem 2.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ── FOOTER ── */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
    margin-bottom: 1.2rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 320px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1280px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.82rem;
}

.footer-disclaimer {
    max-width: 1280px;
    margin: 1rem auto 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-metrics {
        gap: 0;
    }
    .metric {
        padding: 1.2rem 2rem 1.2rem 0;
    }
    .services-grid,
    .team-grid,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
    .approach-steps {
        grid-template-columns: 1fr 1fr;
    }
    .approach-steps::before {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .section {
        padding: 4.5rem 1.5rem;
    }
    .hero-container {
        padding: 7rem 1.5rem 4rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-metrics {
        flex-direction: column;
        gap: 0;
    }
    .metric {
        padding: 1.2rem 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .metric:last-child {
        border-bottom: none;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        gap: 2.5rem;
    }
    .about-image {
        height: 300px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .services-grid,
    .team-grid,
    .testimonial-grid,
    .approach-steps {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .section-header h2,
    .cta h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-actions a,
    .cta-buttons a {
        text-align: center;
    }
}
