/* ===== 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;
    background: #1A1A1A;
    color: #F5F0EB;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #E86A52;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.2; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E86A52;
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #E86A52;
    display: inline-block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
}
.section-sub {
    font-size: 1.1rem;
    color: #A0A0A0;
    max-width: 560px;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
    background: #E86A52;
    color: #fff;
}
.btn-primary:hover {
    background: #D4553E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 106, 82, 0.35);
}
.btn-ghost {
    background: transparent;
    color: #F5F0EB;
    border: 1.5px solid rgba(245, 240, 235, 0.3);
}
.btn-ghost:hover {
    border-color: #E86A52;
    color: #E86A52;
}
.btn-small {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.site-header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}
.logo-text { letter-spacing: -0.01em; }
.logo-text span { color: #E86A52; }

/* NAV */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #B0AFAA;
    transition: color 0.2s;
    position: relative;
}
.main-nav a:hover { color: #E86A52; }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E86A52;
    transition: width 0.3s;
}
.main-nav a:hover::after { width: 100%; }

/* NAV TOGGLE */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #F5F0EB;
    position: relative;
    transition: all 0.3s;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #F5F0EB;
    left: 0;
    transition: all 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: #1A1A1A;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.shape-1 {
    width: 600px;
    height: 600px;
    background: #E86A52;
    top: -200px;
    right: -100px;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: #FF8F77;
    bottom: -100px;
    left: -100px;
}
.shape-3 {
    width: 200px;
    height: 200px;
    background: #E86A52;
    top: 50%;
    left: 45%;
    opacity: 0.08;
}
.shape-4 {
    width: 150px;
    height: 150px;
    background: #FFD166;
    top: 20%;
    left: 10%;
    opacity: 0.06;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E86A52;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.tag-dot {
    width: 8px;
    height: 8px;
    background: #E86A52;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-headline em {
    font-style: normal;
    color: #E86A52;
    position: relative;
}
.hero-headline em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(232, 106, 82, 0.25);
    border-radius: 3px;
}
.hero-sub {
    font-size: 1.15rem;
    color: #A0A0A0;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #E86A52;
}
.stat-label {
    font-size: 0.8rem;
    color: #707070;
    letter-spacing: 0.04em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* HERO IMAGE */
.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}
.hero-img-main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.hero-img-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    z-index: 2;
    border: 4px solid #1A1A1A;
}
.hero-img-float img {
    width: 240px;
    height: 200px;
    object-fit: cover;
}
.hero-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #E86A52;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(232, 106, 82, 0.4);
}

/* ===== PRODUCTS ===== */
.products {
    padding: 100px 0;
    background: #1A1A1A;
    position: relative;
}
.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,106,82,0.3), transparent);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #222222;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.product-card--large {
    grid-row: span 2;
}
.product-card--large .product-card-img img {
    height: 100%;
    min-height: 400px;
}
.product-card-img {
    overflow: hidden;
    position: relative;
}
.product-card-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img img {
    transform: scale(1.05);
}
.product-card-content {
    padding: 28px;
}
.product-card-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}
.product-card-content p {
    font-size: 0.95rem;
    color: #A0A0A0;
    line-height: 1.7;
    margin-bottom: 16px;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #E86A52;
    transition: gap 0.3s;
}
.link-arrow:hover { gap: 12px; }
.product-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E86A52, #FF8F77);
    opacity: 0;
    transition: opacity 0.3s;
}
.product-card:hover .product-card-accent { opacity: 1; }

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #1E1E1E;
}
.about-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(232,106,82,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    border: 4px solid #1E1E1E;
}
.about-img-accent img {
    width: 320px;
    height: 260px;
    object-fit: cover;
}
.about-shape {
    position: absolute;
    top: -30px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: #E86A52;
    border-radius: 20px;
    transform: rotate(15deg);
    z-index: -1;
    opacity: 0.6;
}
.about-content .section-title { margin-bottom: 24px; }
.about-body {
    font-size: 1.05rem;
    color: #A0A0A0;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(232, 106, 82, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.feature-item p {
    font-size: 0.9rem;
    color: #808080;
    line-height: 1.6;
}

/* ===== STORY ===== */
.story {
    padding: 100px 0;
    background: #1A1A1A;
    position: relative;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.story-content .section-title { margin-bottom: 28px; }
.story-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.story-body p {
    font-size: 1.05rem;
    color: #A0A0A0;
    line-height: 1.8;
}
.story-stats {
    display: flex;
    gap: 40px;
}
.story-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.story-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #E86A52;
}
.story-stat-label {
    font-size: 0.85rem;
    color: #707070;
}
.story-visual { position: relative; }
.story-img-stack { position: relative; }
.story-img-1 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.story-img-1 img { width: 100%; height: 520px; object-fit: cover; }
.story-img-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    border: 4px solid #1A1A1A;
}
.story-img-2 img { width: 400px; height: 300px; object-fit: cover; }
.story-quote {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    background: #E86A52;
    color: #fff;
    padding: 28px;
    border-radius: 16px;
    max-width: 260px;
    box-shadow: 0 16px 40px rgba(232, 106, 82, 0.3);
    z-index: 2;
}
.story-quote svg { margin-bottom: 12px; }
.story-quote blockquote {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* ===== VISIT ===== */
.visit {
    padding: 100px 0;
    background: #1E1E1E;
    position: relative;
    overflow: hidden;
}
.visit-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.v-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}
.v-shape-1 {
    width: 500px;
    height: 500px;
    background: #E86A52;
    top: -200px;
    right: -100px;
}
.v-shape-2 {
    width: 300px;
    height: 300px;
    background: #FFD166;
    bottom: -100px;
    left: -50px;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.visit-info .section-title { margin-bottom: 16px; }
.visit-sub {
    font-size: 1.05rem;
    color: #A0A0A0;
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.3s;
}
.contact-card:hover {
    background: rgba(232, 106, 82, 0.08);
    border-color: rgba(232, 106, 82, 0.2);
    transform: translateX(6px);
}
.contact-card--static { cursor: default; }
.contact-card--static:hover {
    transform: none;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
}
.contact-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(232, 106, 82, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #E86A52;
    margin-bottom: 6px;
}
.contact-card p {
    font-size: 0.95rem;
    color: #D0D0D0;
    line-height: 1.5;
}
.contact-card-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: #505050;
    transition: color 0.3s, transform 0.3s;
}
.contact-card:hover .contact-card-arrow {
    color: #E86A52;
    transform: translateX(4px);
}
.visit-map {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
}
.map-wrapper iframe {
    width: 100%;
    height: 400px;
}
.map-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #808080;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #111111;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
    font-size: 0.95rem;
    color: #707070;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E86A52;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.95rem;
    color: #808080;
    transition: color 0.2s;
}
.footer-links a:hover { color: #E86A52; }
.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact a,
.footer-contact p {
    font-size: 0.95rem;
    color: #808080;
    transition: color 0.2s;
}
.footer-contact a:hover { color: #E86A52; }
.footer-hours p {
    font-size: 0.95rem;
    color: #808080;
    line-height: 1.8;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: #505050;
}
.footer-bottom a {
    color: #505050;
    transition: color 0.2s;
}
.footer-bottom a:hover { color: #E86A52; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-img-main img { height: 480px; }
    .about-grid,
    .story-grid,
    .visit-grid { gap: 48px; }
    .story-quote { left: -20px; padding: 20px; max-width: 220px; }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-card--large { grid-row: span 1; }
    .product-card--large .product-card-img img { min-height: 280px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1A1A1A;
        padding: 80px 32px 32px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0,0,0,0.4);
        z-index: 999;
    }
    .main-nav.open { right: 0; }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .main-nav a { font-size: 1.1rem; color: #F5F0EB; }
    .main-nav .btn-small { margin-top: 16px; }

    .hero { padding: 100px 0 60px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-image { order: -1; justify-content: center; }
    .hero-img-main img { height: 360px; }
    .hero-img-float { left: 0; bottom: -20px; }
    .hero-badge { right: 0; }
    .hero-stats { flex-wrap: wrap; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .about-grid,
    .story-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-accent { right: 0; bottom: -30px; }
    .about-img-accent img { width: 240px; height: 200px; }
    .story-img-2 img { width: 280px; height: 220px; }
    .story-quote {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        margin-top: 16px;
    }
    .story-stats { flex-wrap: wrap; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 2rem; }
    .hero-img-float { display: none; }
    .hero-badge { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .product-card-content { padding: 20px; }
}
