/* ============================================
   Inner Harbor — Complete Stylesheet
   Forest #1A3228 | Amber #D4A04A | Mist #C8D0D6
   ============================================ */

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

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f4f6f8;
    color: #1A3228;
    line-height: 1.6;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: #1A3228;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
    color: #3d5a4c;
    max-width: 65ch;
}

.section-subtitle {
    color: #D4A04A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #D4A04A;
    color: #1A3228;
}

.btn-primary:hover {
    background-color: #c08e3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 74, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: #C8D0D6;
    border: 2px solid #C8D0D6;
}

.btn-secondary:hover {
    background-color: #C8D0D6;
    color: #1A3228;
    transform: translateY(-2px);
}

.btn-forest {
    background-color: #1A3228;
    color: #C8D0D6;
}

.btn-forest:hover {
    background-color: #0f1f19;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 50, 40, 0.3);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 50, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 208, 214, 0.1);
    transition: background-color 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

/* -- Logo -- */
.navbar .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #C8D0D6;
    letter-spacing: -0.5px;
}

.navbar .logo span {
    color: #D4A04A;
}

/* -- Nav Links -- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: #C8D0D6;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.3rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4A04A;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #D4A04A;
}

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

.nav-links .nav-cta {
    background-color: #D4A04A;
    color: #1A3228;
    padding: 0.55rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    background-color: #c08e3a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 160, 74, 0.3);
}

/* -- Hamburger -- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1100;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #C8D0D6;
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger span+span {
    margin-top: 5px;
}

/* Hamburger open state */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A3228 0%, #0f1f19 50%, #1A3228 100%);
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(212, 160, 74, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 208, 214, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    color: #C8D0D6;
    margin-bottom: 1.2rem;
}

.hero-content h1 .highlight {
    color: #D4A04A;
}

.hero-content p {
    color: rgba(200, 208, 214, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(200, 208, 214, 0.06);
    border: 1px solid rgba(200, 208, 214, 0.12);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(4px);
}

.hero-card .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200, 208, 214, 0.08);
}

.hero-card .stat:last-child {
    border-bottom: none;
}

.hero-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 160, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #D4A04A;
}

.hero-card .stat-text h4 {
    color: #C8D0D6;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.hero-card .stat-text p {
    color: rgba(200, 208, 214, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    color: #1A3228;
}

.section-header p {
    color: #5a7a68;
    margin: 0 auto;
}

/* ---------- Features Section ---------- */
.features {
    background-color: #ffffff;
}

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

.feature-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 208, 214, 0.3);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 50, 40, 0.08);
    border-color: rgba(212, 160, 74, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(26, 50, 40, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #D4A04A;
}

.feature-card h3 {
    color: #1A3228;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: #5a7a68;
    font-size: 0.95rem;
    margin: 0 auto;
}

/* ---------- About / Showcase Section ---------- */
.showcase {
    background-color: #1A3228;
}

.showcase .section-header h2 {
    color: #C8D0D6;
}

.showcase .section-header p {
    color: rgba(200, 208, 214, 0.7);
}

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

.showcase-image {
    background: rgba(200, 208, 214, 0.06);
    border-radius: 24px;
    padding: 2rem;
    min-height: 300px;
    border: 1px solid rgba(200, 208, 214, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200, 208, 214, 0.3);
    font-size: 1.2rem;
}

.showcase-text h2 {
    color: #C8D0D6;
}

.showcase-text p {
    color: rgba(200, 208, 214, 0.75);
    margin-bottom: 1.5rem;
}

.showcase-text .btn {
    margin-top: 0.5rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, #D4A04A 0%, #c08e3a 100%);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: #1A3228;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(26, 50, 40, 0.8);
    margin: 0 auto 2rem;
}

.cta-section .btn-forest {
    background-color: #1A3228;
    color: #C8D0D6;
}

.cta-section .btn-forest:hover {
    background-color: #0f1f19;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #0f1f19;
    color: rgba(200, 208, 214, 0.7);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(200, 208, 214, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    color: #C8D0D6;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.footer-brand .logo span {
    color: #D4A04A;
}

.footer-brand p {
    color: rgba(200, 208, 214, 0.6);
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #C8D0D6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.footer-col ul li a {
    color: rgba(200, 208, 214, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #D4A04A;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 208, 214, 0.06);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(200, 208, 214, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---------- Tablet & below ---------- */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .showcase-text .btn {
        display: inline-block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    /* -- Hamburger visible -- */
    .hamburger {
        display: flex;
    }

    /* -- Mobile nav overlay -- */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 80vw);
        height: 100vh;
        background-color: #1A3228;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(200, 208, 214, 0.08);
    }

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

    .nav-links a {
        font-size: 1.15rem;
    }

    .nav-links .nav-cta {
        padding: 0.75rem 2rem;
        text-align: center;
        width: 100%;
    }

    /* -- Body lock when menu open -- */
    body.no-scroll {
        overflow: hidden;
    }

    /* -- Sections -- */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-card {
        padding: 1.5rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .cta-section {
        padding: 3.5rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul li a {
        justify-content: center;
    }
}

/* ---------- Small mobile ---------- */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-card .stat {
        flex-direction: column;
        text-align: center;
    }

    .feature-card {
        padding: 2rem 1.25rem;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.text-amber {
    color: #D4A04A;
}

.text-forest {
    color: #1A3228;
}

.text-mist {
    color: #C8D0D6;
}

.bg-forest {
    background-color: #1A3228;
}

.bg-amber {
    background-color: #D4A04A;
}

.bg-mist {
    background-color: #C8D0D6;
}

.mt-1 {
    margin-top: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}