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

:root {
    --bg-primary: #0a0f1a;
    --bg-secondary: #111827;
    --bg-card: #1a2236;
    --bg-card-hover: #1e2a42;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --teal-dark: #0a7a70;
    --teal-glow: rgba(13, 148, 136, 0.3);
    --gold: #d4a843;
    --gold-light: #e8c266;
    --gold-dark: #b8922e;
    --gold-glow: rgba(212, 168, 67, 0.3);
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 30px rgba(212, 168, 67, 0.15);
    --shadow-teal: 0 4px 30px rgba(13, 148, 136, 0.15);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--slate-200);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.relative { position: relative; z-index: 1; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--slate-50);
}

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

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

/* ===== Utility ===== */
.gold { color: var(--gold); }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 16px;
}
.section-tag.gold { color: var(--gold); }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-400);
    max-width: 600px;
    line-height: 1.8;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-subtitle {
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(13, 148, 136, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--slate-200);
    border: 1.5px solid var(--slate-600);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10, 15, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    padding: 10px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-50);
}
.logo-text { letter-spacing: -0.02em; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-300);
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    padding: 8px 20px !important;
    border: 1.5px solid var(--gold) !important;
    border-radius: var(--radius-xl) !important;
    color: var(--gold) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--bg-primary) !important;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--slate-200);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13, 148, 136, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(212, 168, 67, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
        var(--bg-primary);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(212, 168, 67, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.hero-content {
    position: relative;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-subtitle-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--slate-400);
    letter-spacing: 0.02em;
}
.hero-description {
    font-size: 1.15rem;
    color: var(--slate-400);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.stat-divider {
    width: 1px;
    background: var(--slate-700);
    align-self: stretch;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-500);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.about-image-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.about-feature {
    display: flex;
    gap: 20px;
}
.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(13, 148, 136, 0.05));
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: var(--radius-md);
    color: var(--teal-light);
}
.about-feature h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--slate-100);
}
.about-feature p {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ===== Shop ===== */
.shop {
    padding: 120px 0;
    background: var(--bg-primary);
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}
.shop-card {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}
.shop-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: var(--shadow-gold);
}
.shop-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.shop-card:hover .shop-card-image img {
    transform: scale(1.08);
}
.shop-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.shop-card:hover .shop-card-overlay {
    opacity: 1;
}
.shop-card-overlay svg {
    color: var(--gold);
}
.shop-card-content {
    padding: 24px;
}
.shop-card-content h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--slate-100);
}
.shop-card-content p {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.7;
}
.shop-cta {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}
.shop-cta p {
    color: var(--slate-400);
    font-size: 1rem;
}
.shop-cta a {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 168, 67, 0.3);
    transition: border-color 0.3s ease;
}
.shop-cta a:hover {
    border-color: var(--gold);
}

/* ===== Impact ===== */
.impact {
    padding: 120px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}
.impact-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(13, 148, 136, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%);
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.impact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
}
.impact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: var(--shadow-teal);
}
.impact-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(13, 148, 136, 0.05));
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 50%;
    color: var(--teal-light);
}
.impact-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--slate-100);
}
.impact-card p {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ===== Visit ===== */
.visit {
    padding: 120px 0;
    background: var(--bg-primary);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.visit-info { max-width: 480px; }
.visit-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius-sm);
    color: var(--gold);
}
.detail-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
    margin-bottom: 2px;
}
.detail-value {
    font-size: 1rem;
    color: var(--slate-200);
}
.visit-map {
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--bg-secondary);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.contact-method:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateX(4px);
}
.method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-sm);
    color: var(--teal-light);
}
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form { display: block; }
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-300);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1.5px solid var(--slate-700);
    border-radius: var(--radius-sm);
    color: var(--slate-200);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-600);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}
.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.15);
    border-radius: 50%;
    color: var(--teal-light);
}
.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--slate-400);
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-300);
    margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--slate-500);
    transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--slate-500);
}
.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: var(--slate-600);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Scroll reveal */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}
[data-aos].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid,
    .visit-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image { order: -1; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 24px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(212, 168, 67, 0.1);
    }
    .nav-links.open { right: 0; }
    .mobile-toggle { display: flex; }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .shop-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form-wrapper { padding: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content { padding: 100px 16px 60px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
}
