/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #2D2D2D;
    background: #FAFAF8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
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; }

/* ===== Skip Link ===== */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #2D2D2D; color: #fff; padding: .5rem 1rem;
    border-radius: 0 0 6px 6px; z-index: 200; font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ===== Variables ===== */
:root {
    --charcoal: #2D2D2D;
    --charcoal-light: #3D3D3D;
    --coral: #FF6B4B;
    --coral-dark: #E85A3A;
    --coral-light: #FF8A72;
    --cream: #FAFAF8;
    --cream-dark: #F2F0EC;
    --gray-100: #F7F7F5;
    --gray-200: #E8E6E1;
    --gray-300: #D1CFC9;
    --gray-400: #9E9B94;
    --gray-500: #6B6860;
    --gray-600: #4A4842;
    --white: #FFFFFF;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(45,45,45,.06), 0 1px 2px rgba(45,45,45,.04);
    --shadow-md: 0 4px 16px rgba(45,45,45,.08), 0 2px 4px rgba(45,45,45,.04);
    --shadow-lg: 0 12px 40px rgba(45,45,45,.12), 0 4px 12px rgba(45,45,45,.06);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { color: var(--gray-500); }

/* ===== Layout ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ===== Header ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,250,248,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
    font-family: 'Playfair Display', serif; font-weight: 800;
    font-size: 1.35rem; color: var(--coral);
    background: var(--charcoal); padding: .25rem .55rem;
    border-radius: var(--radius-sm); line-height: 1;
}
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--charcoal); letter-spacing: -.01em; }
.logo-light .logo-mark { background: var(--white); }
.logo-light .logo-text { color: var(--white); }

.primary-nav ul { display: flex; gap: .25rem; }
.primary-nav a {
    display: block; padding: .5rem 1rem; border-radius: var(--radius-sm);
    font-size: .9rem; font-weight: 500; color: var(--gray-500);
    transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover { color: var(--charcoal); background: var(--gray-100); }

.nav-toggle { display: none; padding: .5rem; color: var(--charcoal); border-radius: var(--radius-sm); transition: background var(--transition); }
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle[aria-expanded="true"] svg { transform: rotate(90deg); }

/* ===== Hero ===== */
.hero { padding: 7.5rem 0 4rem; background: var(--cream); }
.hero-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); overflow: hidden;
    border: 1px solid var(--gray-200);
}
.hero-card-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.hero-content {
    padding: 3.5rem 3rem 3rem 3.5rem;
    display: flex; flex-direction: column; gap: 1.25rem;
    justify-content: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 600; color: var(--coral);
    text-transform: uppercase; letter-spacing: .08em;
    width: fit-content;
}
.hero-badge svg { opacity: .8; }
.hero-headline {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    line-height: 1.25; color: var(--charcoal);
    letter-spacing: -.02em;
}
.text-coral { color: var(--coral); }
.hero-sub { font-size: 1.05rem; line-height: 1.7; color: var(--gray-500); max-width: 520px; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; padding-top: .5rem; }

.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8rem 1.5rem; border-radius: var(--radius-sm);
    font-size: .925rem; font-weight: 600; transition: all var(--transition);
}
.btn-primary {
    background: var(--coral); color: var(--white);
    box-shadow: 0 4px 14px rgba(255,107,75,.35);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,75,.4); }
.btn-outline {
    background: transparent; color: var(--charcoal);
    border: 1.5px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

.hero-image-wrap { position: relative; overflow: hidden; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.hero-image-accent {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(to top, rgba(45,45,45,.15), transparent);
    pointer-events: none;
}

/* ===== Stat Cards ===== */
.stat-cards {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; margin-top: -2rem; position: relative; z-index: 2;
}
.stat-card {
    background: var(--white); border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem;
    box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stat-icon {
    flex-shrink: 0; width: 44px; height: 44px;
    background: var(--charcoal); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--coral);
}
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--charcoal); line-height: 1.2; }
.stat-label { font-size: .8rem; color: var(--gray-400); font-weight: 500; }

/* ===== Section Header ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-tag {
    display: inline-block; font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em; color: var(--coral);
    margin-bottom: .75rem;
}
.section-tag-light { color: var(--coral-light); }
.section-title { margin-bottom: 1rem; letter-spacing: -.02em; }
.section-desc { font-size: 1.05rem; line-height: 1.7; }

/* ===== Products ===== */
.products { background: var(--cream); }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.product-card {
    background: var(--white); border-radius: var(--radius-md);
    overflow: hidden; border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-tag {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--charcoal); color: var(--white);
    font-size: .7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; padding: .3rem .7rem; border-radius: 100px;
}
.product-card-body { padding: 1.5rem; }
.product-card-title { margin-bottom: .5rem; font-size: 1.2rem; }
.product-card-desc { font-size: .925rem; line-height: 1.65; }

/* ===== About ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 620px; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -2rem; right: -1.5rem;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-img-secondary img { width: 320px; height: 280px; object-fit: cover; }
.about-img-accent {
    position: absolute; top: -1.5rem; left: -1rem;
    width: 120px; height: 120px; background: var(--coral);
    border-radius: var(--radius-md); opacity: .15; z-index: -1;
}
.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-body { font-size: 1rem; line-height: 1.75; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: .5rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-icon {
    flex-shrink: 0; width: 36px; height: 36px;
    background: var(--coral); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
}
.value-item strong { display: block; font-size: .95rem; color: var(--charcoal); margin-bottom: .1rem; }
.value-item span { font-size: .85rem; color: var(--gray-400); }

/* ===== Visit ===== */
.visit { padding: 6rem 0; background: var(--cream); }
.visit-card {
    background: var(--charcoal); border-radius: var(--radius-lg);
    overflow: hidden; position: relative;
}
.visit-card-bg {
    position: absolute; inset: 0;
    background: url('https://images.pexels.com/photos/18656839/pexels-photo-18656839.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1400&h=600') center/cover no-repeat;
    opacity: .12;
}
.visit-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
    position: relative; z-index: 1;
}
.visit-content { padding: 3.5rem 3rem; }
.section-title-light { color: var(--white); }
.visit-desc { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 2rem; max-width: 480px; }
.visit-details { display: flex; flex-direction: column; gap: 1.25rem; }
.visit-detail { display: flex; align-items: flex-start; gap: 1rem; }
.visit-detail-icon {
    flex-shrink: 0; width: 40px; height: 40px;
    background: rgba(255,255,255,.08); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--coral);
}
.visit-detail strong { display: block; font-size: .9rem; color: var(--white); margin-bottom: .15rem; }
.visit-detail span { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.visit-map { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; overflow: hidden; min-height: 480px; }
.visit-map img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Contact ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-desc { font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-direct { display: flex; flex-direction: column; gap: .75rem; }
.contact-direct-item {
    display: flex; align-items: center; gap: .75rem;
    padding: .875rem 1rem; background: var(--gray-100);
    border-radius: var(--radius-sm); font-weight: 500;
    transition: background var(--transition), color var(--transition);
}
.contact-direct-item:hover { background: var(--charcoal); color: var(--white); }
.contact-direct-item svg { color: var(--coral); flex-shrink: 0; }
.contact-direct-item:hover svg { color: var(--coral-light); }

.contact-form-wrap { position: relative; }
.contact-form {
    background: var(--cream); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .825rem; font-weight: 600; color: var(--charcoal); }
.form-group input, .form-group textarea {
    padding: .75rem 1rem; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-family: inherit; font-size: .925rem;
    color: var(--charcoal); background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255,107,75,.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    text-align: center; padding: 3rem 2rem;
    background: var(--cream); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}
.success-icon { color: #22C55E; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { font-size: .95rem; }

/* ===== Footer ===== */
.footer { background: var(--charcoal); padding: 4rem 0 0; color: rgba(255,255,255,.6); }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem; padding-bottom: 3rem;
}
.footer-brand p { margin-top: .75rem; font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.45); }
.footer h4 {
    font-family: 'Inter', sans-serif; font-size: .75rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
    color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.footer-links ul, .footer-hours ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--coral); }
.footer address { font-style: normal; font-size: .9rem; line-height: 1.7; }
.footer p a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer p a:hover { color: var(--coral); }
.footer-hours li { display: flex; justify-content: space-between; font-size: .875rem; }
.footer-hours li.closed span:last-child { color: var(--coral); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.5rem 0; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ===== Scroll Animations ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-card-inner { grid-template-columns: 1fr; }
    .hero-image-wrap img { min-height: 320px; }
    .hero-content { padding: 2.5rem 2rem; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 3rem; }
    .about-img-secondary { right: -1rem; }
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { min-height: 300px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
    .contact-grid { gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .primary-nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--gray-200);
        padding: 1rem; box-shadow: var(--shadow-lg);
        transform: translateY(-110%); opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
    }
    .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .primary-nav ul { flex-direction: column; }
    .primary-nav a { padding: .75rem 1rem; }
    .hero { padding: 6rem 0 3rem; }
    .hero-content { padding: 2rem 1.5rem; }
    .stat-cards { margin-top: -1.5rem; }
    .stat-card { padding: 1rem; }
    .products-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-main img { height: 400px; }
    .about-img-secondary { position: relative; bottom: auto; right: auto; margin-top: 1rem; }
    .about-img-accent { display: none; }
    .visit-content { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .stat-cards { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}
