/* ========================================
   Eagle on The Hill — Styles
   Visual, premium, welcoming
   ======================================== */

:root {
    --color-ink: #1a1a1a;
    --color-ink-light: #4a4a4a;
    --color-ink-muted: #7a7a7a;
    --color-bg: #fafcff;
    --color-bg-warm: #f0f4fa;
    --color-accent: #2e7d6f;
    --color-accent-light: #e8f5f1;
    --color-accent-hover: #236358;
    --color-sky: #4a90d9;
    --color-sky-light: #eaf2fc;
    --color-warm: #e8833a;
    --color-gold: #c8952e;
    --color-white: #fff;
    --color-border: #e0e6ee;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --max-width: 1200px;
    --section-pad: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-ink);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* ---- Typography ---- */

h1, h2, h3 {
    line-height: 1.2;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h1 em {
    font-style: italic;
    color: #1a4080;
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--color-ink-muted);
}

/* ---- Buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-warm);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(232, 131, 58, 0.3);
}

.btn-primary:hover {
    background: #d4742e;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 131, 58, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-full {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
}

/* ---- Section Label ---- */

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--color-ink-light);
    max-width: 520px;
    margin: 1rem auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-ink-light);
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

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

/* ========================================
   Hero — Scenic
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 120px 40px 140px;
    position: relative;
    overflow: hidden;
    background: #1c1439;
}

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

.hero-scene svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0d2654;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 18px 60px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: #0d2654;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
}

.hero-sub {
    font-size: 1.1rem;
    color: #1e3a6e;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 6px rgba(255, 255, 255, 0.4);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-hint span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(13, 38, 84, 0.65);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(13, 38, 84, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ========================================
   Stats Strip
   ======================================== */

.stats {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
    position: relative;
}

.stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 52px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--color-ink-muted);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* ========================================
   Journey / Phases
   ======================================== */

.journey {
    padding: var(--section-pad) 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.phase {
    padding: 40px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-sky), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phase:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(46, 125, 111, 0.12);
}

.phase:hover::before {
    opacity: 1;
}

.phase-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--color-bg-warm);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.phase-icon {
    margin-bottom: 1.25rem;
}

.phase p {
    color: var(--color-ink-light);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.phase-details li {
    font-size: 0.85rem;
    color: var(--color-ink-light);
    padding: 8px 0;
    border-top: 1px solid var(--color-border);
    padding-left: 18px;
    position: relative;
}

.phase-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    transform: translateY(-50%);
}

/* ========================================
   Scenic Divider
   ======================================== */

.scenic-divider {
    width: 100%;
    line-height: 0;
    margin: -1px 0;
}

.scenic-divider svg {
    width: 100%;
    height: 180px;
    display: block;
}

/* ========================================
   Approach
   ======================================== */

.approach {
    padding: var(--section-pad) 40px;
    background: var(--color-bg-warm);
}

.approach-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-text h2 {
    margin-bottom: 1.5rem;
}

.approach-text p {
    color: var(--color-ink-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.approach-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

.visual-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border);
}

.visual-card-top {
    margin-bottom: 2rem;
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    background: var(--color-accent-light);
    padding: 6px 14px;
    border-radius: 100px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.timeline-item:last-child {
    border-bottom: none;
}

.tl-week {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-ink-muted);
    min-width: 100px;
}

.tl-desc {
    font-size: 0.92rem;
    color: var(--color-ink-light);
}

.timeline-item.active {
    padding-left: 16px;
    border-left: 3px solid var(--color-warm);
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(232, 131, 58, 0.05), transparent);
}

.timeline-item.active .tl-week {
    color: var(--color-warm);
}

.timeline-item.active .tl-desc {
    color: var(--color-ink);
    font-weight: 500;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials {
    padding: var(--section-pad) 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.testimonial {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-ink-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-ink-muted);
}

/* ========================================
   CTA / Contact
   ======================================== */

.cta {
    padding: var(--section-pad) 40px;
    background: linear-gradient(135deg, #1a2f3a 0%, #1a3a32 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 125, 111, 0.15), transparent 70%);
    pointer-events: none;
}

.cta .section-label {
    color: var(--color-warm);
}

.cta h2 {
    color: var(--color-white);
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.65);
    margin: 1rem 0 2.5rem;
    font-size: 0.95rem;
}

.cta-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: all 0.2s;
    outline: none;
    appearance: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: var(--color-warm);
    background: rgba(255, 255, 255, 0.12);
}

.form-input option {
    background: #1a2f3a;
    color: var(--color-white);
}

.cta .btn-primary {
    background: var(--color-warm);
    color: var(--color-white);
    font-weight: 600;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(232, 131, 58, 0.35);
}

.cta .btn-primary:hover {
    background: #d4742e;
    box-shadow: 0 6px 28px rgba(232, 131, 58, 0.45);
}

.cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1.25rem;
}

/* ========================================
   Gallery
   ======================================== */

.gallery {
    padding: var(--section-pad) 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: var(--color-bg-warm);
    border: 2px dashed var(--color-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ink-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: border-color 0.2s, background 0.2s;
}

.gallery-item--large .gallery-placeholder {
    min-height: 540px;
}

.gallery-placeholder:hover {
    border-color: var(--color-accent);
    background: var(--color-accent-light);
}

.gallery-placeholder--video {
    flex-direction: column;
    gap: 10px;
    background: #f0f2f8;
    border-color: var(--color-sky);
    color: var(--color-sky);
}

.gallery-placeholder--video:hover {
    border-color: var(--color-sky);
    background: var(--color-sky-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: #f5f7fb;
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--color-ink-light);
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 40px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--color-ink-muted);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 900px) {
    :root {
        --section-pad: 80px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .phases {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .approach-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .stats-inner {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stats-inner .stat {
        flex: 1 1 40%;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .scenic-divider svg {
        height: 120px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-pad: 64px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-scroll-hint {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .journey,
    .approach,
    .testimonials,
    .cta,
    .stats {
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav-inner {
        padding: 0 24px;
    }

    .footer-inner,
    .footer-bottom {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-links {
        gap: 40px;
    }

    .scenic-divider svg {
        height: 80px;
    }
}
