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

:root {
    --honey: #c9944a;
    --honey-light: #e3b97a;
    --honey-glow: #f4d4a3;
    --amber: #a67235;
    --charcoal: #1a1a2e;
    --slate: #2d2d44;
    --cream: #fef9f3;
    --cream-dark: #f5ede3;
    --text-dark: #1a1a2e;
    --text-muted: #5c5c72;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* Skip Link Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--charcoal);
    color: var(--cream);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
    background: rgba(254, 249, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-hex {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-hex svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

nav .cta-nav {
    font-family: 'DM Sans', sans-serif;
    background: var(--charcoal);
    color: var(--cream);
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

nav .cta-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--honey);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav .cta-nav:hover::before {
    transform: translateX(0);
}

nav .cta-nav span {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 148, 74, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201, 148, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.honeycomb-grid {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    opacity: 0.06;
    pointer-events: none;
}

.hex-cell {
    position: absolute;
    width: 120px;
    height: 138px;
    background: var(--honey);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexFloat 8s ease-in-out infinite;
}

.hex-cell:nth-child(1) { top: 5%; right: 20%; animation-delay: 0s; }
.hex-cell:nth-child(2) { top: 15%; right: 35%; animation-delay: -1s; width: 80px; height: 92px; }
.hex-cell:nth-child(3) { top: 30%; right: 10%; animation-delay: -2s; width: 100px; height: 115px; }
.hex-cell:nth-child(4) { top: 45%; right: 28%; animation-delay: -3s; }
.hex-cell:nth-child(5) { top: 60%; right: 5%; animation-delay: -4s; width: 90px; height: 104px; }
.hex-cell:nth-child(6) { top: 70%; right: 40%; animation-delay: -5s; width: 70px; height: 81px; }
.hex-cell:nth-child(7) { top: 85%; right: 18%; animation-delay: -6s; width: 110px; height: 127px; }

@keyframes hexFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.hero-content {
    position: relative;
    max-width: 720px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease-out 0.1s backwards;
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--honey);
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero h1 .highlight {
    color: var(--honey);
    font-style: italic;
    position: relative;
}

/* .hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.12em;
    background: var(--honey-glow);
    z-index: -1;
} */

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease-out 0.3s backwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    color: var(--white);
    padding: 1.1rem 2.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(201, 148, 74, 0.35);
    animation: fadeUp 1s ease-out 0.4s backwards;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 148, 74, 0.45);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Section Styles */
section {
    padding: 7rem 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--honey);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--honey);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
}

/* Problems Section */
.problems {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--honey), transparent);
}

.problems .section-label {
    color: var(--honey-light);
}

.problems h2 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.problems-intro {
    color: rgba(254, 249, 243, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 4rem;
}

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

.problem-card {
    background: rgba(254, 249, 243, 0.03);
    border: 1px solid rgba(254, 249, 243, 0.08);
    border-radius: 20px;
    padding: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--honey) 0%, var(--amber) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 4px 0;
}

.problem-card:hover {
    background: rgba(254, 249, 243, 0.06);
    transform: translateY(-4px);
}

.problem-card:hover::before {
    height: 100%;
}

.problem-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: rgba(254, 249, 243, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Solution Section */
.solution {
    background: var(--cream);
    position: relative;
}

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

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

.solution-text > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 25px;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-top: 0.1rem;
}

.solution-visual {
    position: relative;
}

.solution-card {
    background: linear-gradient(145deg, var(--charcoal) 0%, var(--slate) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 148, 74, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.solution-card-icon {
    width: 64px;
    height: 74px;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.solution-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.solution-card p {
    color: rgba(254, 249, 243, 0.75);
    font-size: 1rem;
}

.floating-badges {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge {
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge:nth-child(2) { animation-delay: -1s; }
.badge:nth-child(3) { animation-delay: -2s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* Scout Journey Section */
.scout {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.scout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 148, 74, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.scout-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.scout-header h2 {
    margin-bottom: 1rem;
}

.scout-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.scout-journey {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.scout-journey::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--honey), var(--honey), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.scout-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.scout-step-number {
    width: 80px;
    height: 92px;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--honey);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scout-step:hover .scout-step-number {
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    color: var(--white);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(201, 148, 74, 0.3);
}

.scout-step h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.scout-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Trust Section */
.trust {
    background: var(--cream);
}

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

.trust-header h2 {
    margin-bottom: 1rem;
}

.trust-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.trust-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.1);
}

.trust-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
}

.trust-card:hover .trust-card-icon {
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
}

.trust-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--honey);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.4s;
}

.trust-card:hover .trust-card-icon svg {
    stroke: var(--white);
}

.trust-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(201, 148, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    position: relative;
}

.contact-text .section-label {
    color: var(--honey-light);
}

.contact-text h2 {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.contact-text > p {
    color: rgba(254, 249, 243, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(254, 249, 243, 0.8);
    font-size: 0.95rem;
}

.contact-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--honey);
    fill: none;
    stroke-width: 2;
}

.contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--cream);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--honey);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 148, 74, 0.1);
}

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

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    color: var(--white);
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(201, 148, 74, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 148, 74, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-success {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.form-success svg {
    width: 64px;
    height: 64px;
    stroke: var(--honey);
    fill: none;
    stroke-width: 2;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(254, 249, 243, 0.08);
    padding: 2.5rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

footer .logo {
    color: var(--cream);
}

footer p {
    color: rgba(254, 249, 243, 0.5);
    font-size: 0.9rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .solution-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    nav .cta-nav {
        display: none;
    }

    section {
        padding: 5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 7rem 0 4rem;
    }

    .scout-journey {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .scout-journey::before {
        display: none;
    }

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

    .floating-badges {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .honeycomb-grid {
        opacity: 0.03;
    }
}
