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

:root {
    --coral:       #E8735A;
    --coral-light: #F4A08E;
    --coral-pale:  #FDE8E3;
    --charcoal:    #2D2D2D;
    --charcoal-soft: #4A4A4A;
    --bg:          #FDF8F6;
    --bg-warm:     #FFF5F0;
    --white:       #FFFFFF;
    --gray-100:    #F5F0EE;
    --gray-200:    #E8E2DF;
    --gray-400:    #A09894;
    --radius:      16px;
    --radius-sm:   10px;
    --shadow:      0 4px 24px rgba(45,45,45,0.07);
    --shadow-lg:   0 12px 48px rgba(45,45,45,0.10);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body:   'Lato', system-ui, sans-serif;
    --font-display:'Playfair Display', Georgia, serif;
}

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

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

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--coral); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 1000; font-weight: 700;
}
.skip-link:focus { top: 16px; }

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

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { color: var(--charcoal-soft); }

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.1rem; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--coral {
    background: var(--coral); color: var(--white);
    box-shadow: 0 4px 16px rgba(232,115,90,0.35);
}
.btn--coral:hover {
    background: #d4614a; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,115,90,0.45);
}
.btn--ghost {
    background: transparent; color: var(--charcoal);
    border: 2px solid var(--gray-200);
}
.btn--ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn--small {
    padding: 10px 20px; font-size: 0.85rem;
    background: var(--coral); color: var(--white);
    border-radius: 50px;
}
.btn--small:hover { background: #d4614a; }
.btn--white {
    background: var(--white); color: var(--coral);
    box-shadow: var(--shadow);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-white {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: var(--white); color: var(--coral); }

/* ── Header ────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,248,246,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,115,90,0.1);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(45,45,45,0.06); }

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

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
    width: 40px; height: 40px;
    background: var(--coral); color: var(--white);
    border-radius: 12px; font-family: var(--font-display);
    font-weight: 700; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--charcoal); }

.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a {
    font-size: 0.9rem; font-weight: 700; color: var(--charcoal-soft);
    transition: var(--transition); position: relative;
}
.nav-list a:not(.btn):hover { color: var(--coral); }
.nav-list a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--coral);
    transition: var(--transition);
}
.nav-list a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger {
    display: block; width: 24px; height: 2px; background: var(--charcoal);
    border-radius: 2px; transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: ''; display: block; width: 24px; height: 2px;
    background: var(--charcoal); border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before { margin-top: -6px; }
.hamburger::after { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); margin-top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); margin-top: 0; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
    padding-top: 72px; min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--coral-pale) 100%);
    position: relative; overflow: hidden;
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    padding: 64px 0 120px;
}
.hero-eyebrow {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--coral); margin-bottom: 16px;
}
.hero h1 { margin-bottom: 24px; }
.hero-desc { font-size: 1.1rem; color: var(--charcoal-soft); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 40px; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
    font-family: var(--font-display); font-size: 1.8rem;
    color: var(--coral); font-weight: 700;
}
.hero-stats span { font-size: 0.85rem; color: var(--gray-400); }

.hero-image {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 620/720;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Products ──────────────────────────────────────────── */
.products { padding: 100px 0; background: var(--bg); }
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img { aspect-ratio: 4/3; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card h3 { padding: 24px 24px 8px; }
.product-card p { padding: 0 24px 24px; font-size: 0.95rem; }

/* ── About ─────────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--bg-warm); }
.about-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 560/640; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy > p { margin-bottom: 16px; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-features li {
    display: flex; align-items: center; gap: 12px;
    font-weight: 600; color: var(--charcoal);
}
.icon-check { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; }

/* ── Visit ─────────────────────────────────────────────── */
.visit { padding: 100px 0; background: var(--bg); }
.visit-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.visit-info h2 { margin-bottom: 24px; }
.visit-address {
    font-size: 1.1rem; color: var(--charcoal);
    margin-bottom: 24px; line-height: 1.8;
}
.visit-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.visit-details li {
    display: flex; align-items: center; gap: 12px;
    font-size: 1rem;
}
.visit-details a { color: var(--charcoal-soft); transition: var(--transition); }
.visit-details a:hover { color: var(--coral); }
.icon-phone, .icon-mail { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; }
.visit-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 560/420; }
.visit-map img { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA ───────────────────────────────────────────────── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--coral) 0%, #d4614a 100%);
    color: var(--white); text-align: center;
    position: relative; overflow: hidden;
}
.cta-blob {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
    top: -200px; right: -150px; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta h2 { color: var(--white); margin-bottom: 20px; }
.cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-inner {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo-mark { background: var(--coral); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); transition: var(--transition); font-size: 0.95rem; }
.footer-links a:hover { color: var(--coral-light); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact a:hover { color: var(--coral-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0; text-align: center;
    font-size: 0.85rem; color: rgba(255,255,255,0.35);
}

/* ── Mobile Nav ────────────────────────────────────────── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--bg);
        flex-direction: column; padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-120%); opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    .nav-list.open { transform: translateY(0); opacity: 1; }
    .nav-list a.btn { align-self: center; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 48px 0 100px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 480px; margin: 0 auto; }
    .visit-inner { grid-template-columns: 1fr; gap: 40px; }
    .visit-map { max-width: 560px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Animations ────────────────────────────────────────── */
.fade-up {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
