/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a2e2a;
    background: var(--cream);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --emerald: #059669;
    --emerald-dark: #047857;
    --emerald-deeper: #065f46;
    --emerald-light: #d1fae5;
    --cream: #faf9f6;
    --cream-dark: #f0efe9;
    --sand: #e8e4d9;
    --text: #1a2e2a;
    --text-muted: #5a6b67;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(5, 150, 105, 0.08);
    --shadow-lg: 0 12px 48px rgba(5, 150, 105, 0.12);
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--emerald); color: #fff;
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 1000; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ===== TYPOGRAPHY ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    background: var(--emerald-light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
}
.text-accent { color: var(--emerald); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--emerald);
    color: #fff;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.btn-primary:hover {
    background: var(--emerald-dark);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}
.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--sand);
}
.btn-secondary:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--emerald);
}
.logo-icon { color: var(--emerald); }
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--emerald); background: var(--emerald-light); }
.nav-cta {
    background: var(--emerald) !important;
    color: #fff !important;
    margin-left: 8px;
}
.nav-cta:hover { background: var(--emerald-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.nav-toggle:hover { background: var(--emerald-light); }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 20px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #065f46 0%, #059669 35%, #34d399 65%, #6ee7b7 100%);
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}
.geo-1 {
    width: 600px; height: 600px;
    background: var(--cream);
    top: -200px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.geo-2 {
    width: 300px; height: 300px;
    background: #a3e635;
    bottom: -80px; left: -60px;
    animation: float 6s ease-in-out infinite reverse;
}
.geo-3 {
    width: 150px; height: 150px;
    background: var(--cream);
    top: 30%; left: 8%;
    animation: float 7s ease-in-out infinite 1s;
}
.geo-4 {
    width: 80px; height: 80px;
    background: #a3e635;
    top: 20%; right: 15%;
    border-radius: 20%;
    animation: spin 12s linear infinite;
}
.geo-5 {
    width: 200px; height: 200px;
    background: var(--cream);
    bottom: 10%; right: 5%;
    animation: float 9s ease-in-out infinite 2s;
}
.geo-6 {
    width: 60px; height: 60px;
    background: #a3e635;
    top: 50%; left: 5%;
    border-radius: 12px;
    animation: spin 8s linear infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.03); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 249, 246, 0.18);
    border: 1px solid rgba(250, 249, 246, 0.3);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 8px; height: 8px;
    background: #a3e635;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}
.text-accent { color: #a3e635; }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 56px;
}
.hero-actions .btn-secondary {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    backdrop-filter: blur(8px);
}
.hero-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.stat-divider {
    width: 1px; height: 32px;
    background: rgba(255,255,255,0.25);
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -32px; right: -24px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-accent {
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background: var(--emerald);
    border-radius: 20%;
    z-index: -1;
    opacity: 0.15;
}
.about-text .section-title { margin-bottom: 20px; }
.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: var(--emerald-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--emerald);
}
.feature-item strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 2px; }
.feature-item span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== OFFERINGS ===== */
.offerings {
    padding: 100px 0;
    background: var(--cream-dark);
}
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.offering-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.offering-card:hover { transform: translateY(-4px); }
.card-emerald {
    background: var(--emerald);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.2);
}
.card-cream {
    background: var(--cream);
    border: 1px solid var(--sand);
    box-shadow: var(--shadow);
}
.offering-img { overflow: hidden; }
.offering-img img {
    width: 100%; height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}
.offering-card:hover .offering-img img { transform: scale(1.05); }
.offering-body { padding: 28px; }
.offering-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(250, 249, 246, 0.25);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.card-cream .offering-tag { background: var(--emerald-light); }
.offering-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.card-cream .offering-title { color: var(--text); }
.offering-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}
.card-cream .offering-body p { color: var(--text-muted); }

/* ===== WHY THRIFT ===== */
.why-thrift { padding: 100px 0; background: var(--cream); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-point-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--emerald);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}
.why-point strong { display: block; color: var(--text); font-size: 1rem; margin-bottom: 4px; }
.why-point span { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.why-visual { position: relative; }
.visual-block { border-radius: var(--radius); overflow: hidden; }
.visual-block-2 {
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 2;
}
.visual-block-2 img { width: 100%; height: auto; object-fit: cover; }
.visual-block-1 {
    position: absolute; top: -24px; left: -24px;
    width: 120px; height: 120px;
    background: var(--emerald);
    border-radius: 24px;
    z-index: 1;
    opacity: 0.2;
}
.visual-block-3 {
    position: absolute; bottom: -24px; right: -24px;
    width: 80px; height: 80px;
    background: #a3e635;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
}

/* ===== VISIT ===== */
.visit { padding: 100px 0; background: var(--cream-dark); }
.visit-card {
    position: relative;
    background: var(--emerald);
    border-radius: 24px;
    overflow: hidden;
    padding: 64px;
    box-shadow: 0 16px 64px rgba(5, 150, 105, 0.25);
}
.visit-geos { position: absolute; inset: 0; pointer-events: none; }
.visit-geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: #fff;
}
.visit-geo-1 { width: 300px; height: 300px; top: -100px; right: -60px; }
.visit-geo-2 { width: 150px; height: 150px; bottom: -40px; left: 10%; }
.visit-geo-3 { width: 80px; height: 80px; top: 20%; left: 5%; border-radius: 16px; }
.visit-content { position: relative; z-index: 1; max-width: 640px; }
.visit-content .section-title { color: #fff; }
.visit-content .section-label { background: rgba(255,255,255,0.18); color: #a3e635; }
.visit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 36px 0;
}
.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.visit-detail-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: #a3e635;
}
.visit-detail strong { display: block; color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.visit-detail span, .visit-detail a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.visit-detail a:hover { color: #a3e635; }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-actions .btn-primary {
    background: #fff;
    color: var(--emerald);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.visit-actions .btn-primary:hover {
    background: var(--cream);
}
.visit-actions .btn-secondary {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.visit-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--cream-dark);
    border-radius: var(--radius-sm);
    border: 1px solid var(--sand);
    transition: border-color 0.2s, transform 0.2s;
}
.contact-method:hover { border-color: var(--emerald); transform: translateX(4px); }
.contact-method-icon {
    color: var(--emerald);
    flex-shrink: 0;
}
.contact-method span { font-weight: 500; color: var(--text); }
.contact-form-wrap {
    background: var(--cream-dark);
    border: 1px solid var(--sand);
    border-radius: var(--radius);
    padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon { color: var(--emerald); margin: 0 auto 16px; }
.form-success h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-nav strong, .footer-contact strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-nav a:hover { color: #a3e635; }
.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #a3e635; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .about-grid,
    .why-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-float { right: 16px; bottom: -20px; }
    .visit-card { padding: 40px; }
    .visit-details { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(16px);
        padding: 16px 24px 24px;
        border-bottom: 1px solid rgba(5, 150, 105, 0.1);
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 12px 16px; }
    .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; }
    .offerings-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 16px 60px; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .visit-card { padding: 28px; }
    .contact-form-wrap { padding: 24px; }
}
