*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2a2a2a;
    --coral: #E8645A;
    --coral-dark: #D4534A;
    --white: #ffffff;
    --off-white: #FAFAFA;
    --cream: #F5F3F0;
    --gray-100: #F0EDE9;
    --gray-200: #E0DCD6;
    --gray-300: #C4BFB6;
    --gray-400: #9E9890;
    --gray-500: #6B6560;
    --gray-600: #4A4540;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--gray-600);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 60px;
    height: 100%;
    background: var(--coral);
    animation: loaderSlide 1s var(--ease-smooth) infinite;
}

@keyframes loaderSlide {
    to { left: 60px; }
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--gray-200);
}

.nav.scrolled .nav-logo-text {
    color: var(--charcoal);
}

.nav.scrolled .nav-logo-mark {
    background: var(--charcoal);
    color: var(--white);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--white);
    color: var(--charcoal);
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.5px;
    transition: background 0.4s, color 0.4s;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: color 0.4s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav.scrolled .nav-links a {
    color: var(--gray-500);
}

.nav.scrolled .nav-links a:hover {
    color: var(--charcoal);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 101;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: background 0.4s, transform 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s var(--ease-out);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav.scrolled .hamburger,
.nav.scrolled .hamburger::before,
.nav.scrolled .hamburger::after {
    background: var(--charcoal);
}

.nav.scrolled .nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s var(--ease-smooth);
}

.hero.visible .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.55) 0%,
        rgba(26, 26, 26, 0.4) 40%,
        rgba(26, 26, 26, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero.visible .hero-eyebrow,
.hero.visible .hero-headline,
.hero.visible .hero-sub,
.hero.visible .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero.visible .hero-eyebrow { transition-delay: 0.2s; }
.hero.visible .hero-headline { transition-delay: 0.35s; }
.hero.visible .hero-sub { transition-delay: 0.5s; }
.hero.visible .hero-actions { transition-delay: 0.65s; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollPulse 2s var(--ease-smooth) infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-coral {
    background: var(--coral);
    color: var(--white);
}

.btn-coral:hover {
    background: var(--coral-dark);
}

.btn-full {
    width: 100%;
}

/* SECTION LABELS */
.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 520px;
}

/* PRODUCTS */
.products {
    padding: 120px 0;
    background: var(--white);
}

.products .section-header {
    text-align: center;
    margin-bottom: 72px;
}

.products .section-desc {
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.product-img {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover::after {
    opacity: 1;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin-top: 16px;
    letter-spacing: -0.01em;
}

.product-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--gray-500);
    margin-top: 8px;
    max-width: 320px;
}

/* ABOUT */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--gray-100);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.about-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* VISIT */
.visit {
    padding: 120px 0;
    background: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 520px;
    background: var(--charcoal);
    overflow: hidden;
}

.visit-info {
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-info .section-label {
    color: var(--coral);
}

.visit-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 32px;
}

.visit-address {
    font-style: normal;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.visit-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
}

.visit-detail:hover {
    color: var(--coral);
}

.visit-hours {
    margin-top: auto;
}

.hours-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.hours-note {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.visit-map {
    min-height: 400px;
    background: var(--charcoal-light);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(1) invert(1) contrast(0.8) brightness(0.6);
    transition: filter 0.4s;
}

.visit-map:hover iframe {
    filter: grayscale(0.3) invert(1) contrast(0.9) brightness(0.7);
}

/* CONTACT */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-500);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.form-input {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-input:focus {
    border-bottom-color: var(--coral);
}

.form-textarea {
    min-height: 100px;
}

.form-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray-400);
    text-align: center;
}

.form-note a {
    color: var(--coral);
    transition: color 0.3s;
}

.form-note a:hover {
    color: var(--coral-dark);
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-success svg {
    color: var(--coral);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.form-success p {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray-500);
}

/* FOOTER */
.footer {
    padding: 56px 0;
    background: var(--charcoal);
    border-top: 1px solid var(--charcoal-light);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .nav-logo-mark {
    background: var(--white);
    color: var(--charcoal);
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.footer-info a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s;
}

.footer-info a:hover {
    color: var(--coral);
}

.footer-copy {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* MOBILE MENU OVERLAY */
.nav-links.mobile-open {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.nav-links.mobile-open.open {
    opacity: 1;
    visibility: visible;
}

.nav-links.mobile-open a {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.01em;
    text-transform: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

    .contact-inner {
        gap: 56px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 560px;
    }

    .hero-scroll {
        display: none;
    }

    .products {
        padding: 80px 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }

    .product-img {
        aspect-ratio: 16/9;
    }

    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        aspect-ratio: 16/9;
    }

    .about-stats {
        gap: 24px;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-layout {
        grid-template-columns: 1fr;
    }

    .visit-info {
        padding: 56px 24px;
    }

    .visit-map {
        min-height: 300px;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .product-card {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
