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

:root {
    --charcoal:    #2c2c2c;
    --charcoal-lt: #3d3d3d;
    --coral:       #FF7F6B;
    --coral-dark:  #e86955;
    --coral-pale:  #fff0ee;
    --cream:       #faf6f3;
    --cream-dark:  #f0e8e0;
    --warm-gray:   #6b6560;
    --white:       #ffffff;
    --radius-sm:   12px;
    --radius-md:   20px;
    --radius-lg:   32px;
    --shadow-sm:   0 2px 8px rgba(44,44,44,.06);
    --shadow-md:   0 8px 30px rgba(44,44,44,.10);
    --shadow-lg:   0 16px 50px rgba(44,44,44,.14);
    --font-body:   'DM Sans', system-ui, sans-serif;
    --font-display:'Playfair Display', Georgia, serif;
    --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--coral); color: var(--white);
    padding: .5rem 1rem; border-radius: var(--radius-sm);
    z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

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

/* ── Header ─────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,246,243,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(44,44,44,.06);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--font-display); font-size: 1.35rem;
    font-weight: 700; color: var(--charcoal);
}
.logo-mark {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--coral);
    display: block;
    flex-shrink: 0;
}

.nav-menu {
    display: flex; align-items: center; gap: 2rem;
}
.nav-menu a {
    font-size: .938rem; font-weight: 500;
    color: var(--warm-gray);
    transition: color var(--transition);
    position: relative;
}
.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; border-radius: 2px;
    background: var(--coral);
    transition: width var(--transition);
}
.nav-menu a:not(.btn):hover { color: var(--charcoal); }
.nav-menu a:not(.btn):hover::after { width: 100%; }

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600; font-size: .938rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--coral); color: var(--white);
    box-shadow: 0 4px 16px rgba(255,127,107,.35);
}
.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,127,107,.4);
}
.btn--ghost {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.5);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: var(--white); color: var(--charcoal);
    border-color: var(--white);
}
.btn--small { padding: .5rem 1.1rem; font-size: .875rem; }
.btn--large { padding: 1rem 2rem; font-size: 1rem; }
.btn__icon { width: 18px; height: 18px; }

/* ── Menu Toggle ────────────────────────────────── */
.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background var(--transition);
}
.menu-toggle:hover { background: var(--coral-pale); }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 20px; height: 2px;
    background: var(--charcoal); border-radius: 2px;
    transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top:  6px; }
.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.pexels.com/photos/20008782/pexels-photo-20008782.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44,44,44,.78) 0%,
        rgba(44,44,44,.55) 50%,
        rgba(255,127,107,.25) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 720px;
    padding-top: 72px;
    animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,127,107,.2);
    border: 1px solid rgba(255,127,107,.4);
    color: #ffd4cc;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .813rem; font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    margin-bottom: 2.25rem;
    max-width: 560px;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 1rem;
}
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.5);
    font-size: .75rem; font-weight: 500;
    letter-spacing: .1em; text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}

/* ── Section Shared ─────────────────────────────── */
section { padding: 7rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-tag {
    display: inline-block;
    color: var(--coral);
    font-size: .813rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: .75rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700; line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.063rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ── Products ───────────────────────────────────── */
.products { background: var(--white); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}
.product-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card__img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.product-card__tag {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--white); color: var(--coral-dark);
    padding: .3rem .75rem; border-radius: 50px;
    font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .04em;
}
.product-card__body { padding: 1.5rem; }
.product-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700;
    margin-bottom: .5rem; color: var(--charcoal);
}
.product-card__body p {
    font-size: .938rem; color: var(--warm-gray);
    line-height: 1.65;
}

/* ── About ──────────────────────────────────────── */
.about { background: var(--cream); }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 6/7;
}
.about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.about-image-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 160px; height: 160px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    opacity: .15;
    z-index: -1;
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }
.about-content p {
    font-size: 1.063rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.about-stats {
    display: flex; gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(44,44,44,.08);
}
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    color: var(--coral); line-height: 1;
}
.stat-label {
    font-size: .813rem; font-weight: 500;
    color: var(--warm-gray);
    text-transform: uppercase; letter-spacing: .06em;
}

/* ── Visit ──────────────────────────────────────── */
.visit { background: var(--charcoal); color: var(--white); }
.visit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.visit .section-tag { color: var(--coral); }
.visit .section-title { color: var(--white); text-align: left; }
.visit-subtitle {
    font-size: 1.063rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 2.5rem;
}
.contact-list { margin-bottom: 2.5rem; }
.contact-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: .5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-label {
    font-size: .813rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    color: rgba(255,255,255,.4);
    padding-top: .2rem;
}
.contact-link {
    font-size: 1.063rem;
    color: var(--white);
    transition: color var(--transition);
    line-height: 1.6;
}
.contact-link:hover { color: var(--coral); }
.hours-text {
    font-size: .938rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

/* Map */
.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}
.map-placeholder {
    width: 100%; height: 100%;
    background: var(--charcoal-lt);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: .75rem;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.pexels.com/photos/4047286/pexels-photo-4047286.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=800&h=600');
    background-size: cover;
    background-position: center;
}
.map-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(44,44,44,.6);
    border-radius: var(--radius-lg);
    transition: background var(--transition);
}
.map-placeholder:hover::after { background: rgba(44,44,44,.4); }
.map-icon {
    position: relative; z-index: 1;
    width: 48px; height: 48px;
    color: var(--coral);
}
.map-address, .map-hint {
    position: relative; z-index: 1;
    text-align: center;
}
.map-address {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}
.map-hint {
    font-size: .813rem;
    color: rgba(255,255,255,.5);
}
.map-link {
    position: absolute; inset: 0; z-index: 2;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 3.5rem 0 2rem;
    color: rgba(255,255,255,.6);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-mark {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--coral);
    display: inline-block; flex-shrink: 0;
}
.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: var(--white);
}
.footer-brand p {
    font-size: .938rem; line-height: 1.65;
    max-width: 320px;
}
.footer-contact h4 {
    font-size: .813rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    color: rgba(255,255,255,.4);
    margin-bottom: .75rem;
}
.footer-contact a {
    font-size: .938rem;
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
    line-height: 1.8;
}
.footer-contact a:hover { color: var(--coral); }
.footer-bottom {
    grid-column: 1 / -1;
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center;
    gap: .5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: .813rem;
    color: rgba(255,255,255,.35);
}

/* ── Scroll Animations ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .about-inner,
    .visit-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image { aspect-ratio: 4/3; max-height: 400px; }
    .about-content .section-tag,
    .about-content .section-title { text-align: center; }
    .about-content p { text-align: center; }
    .about-stats { justify-content: center; }
    .visit .section-title { text-align: center; }
    .visit-subtitle { text-align: center; }
    .contact-list { max-width: 400px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; }
    .visit-map { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
    section { padding: 5rem 0; }
    
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(250,246,243,.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform var(--transition);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a { font-size: 1.25rem; color: var(--charcoal); }
    
    .hero-content { padding-top: 100px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    
    .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.125rem; }
    .header-inner { height: 64px; }
    .about-stats { flex-direction: column; gap: 1.25rem; align-items: center; }
    .contact-item { grid-template-columns: 1fr; gap: .25rem; }
}
