/* ========================================
   Ah Louis Store — Style System
   Bold editorial · Terracotta + Sand
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-terracotta: #B85D45;
    --color-terracotta-dark: #9A4B35;
    --color-terracotta-light: #D4856F;
    --color-sand: #F5F0EB;
    --color-sand-dark: #E8DFD5;
    --color-sand-mid: #F0EAE3;
    --color-charcoal: #1A1A1A;
    --color-dark: #2C2C2C;
    --color-text: #3A3A3A;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-overlay: rgba(26, 26, 26, 0.55);
    --color-overlay-dark: rgba(26, 26, 26, 0.7);

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --space-3xl: 12rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    --container-max: 1280px;
    --container-narrow: 900px;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-sand);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none !important; }
}

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

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

button {
    cursor: none;
    background: none;
    border: none;
    font-family: inherit;
}

@media (max-width: 768px) {
    button { cursor: pointer; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--color-terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.6;
}

.cursor.hover {
    width: 12px;
    height: 12px;
    background: var(--color-terracotta-light);
}

.cursor-follower.hover {
    width: 52px;
    height: 52px;
    border-color: var(--color-terracotta-light);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    transition: background var(--transition-base), padding var(--transition-base);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    z-index: 1001;
    transition: color var(--transition-base);
}

.logo-mark {
    color: var(--color-terracotta-light);
}

.logo-text {
    font-style: italic;
}

.header.scrolled {
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

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

/* --- Nav --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-terracotta);
    transition: width var(--transition-base);
}

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

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

.header.scrolled .nav-link {
    color: var(--color-text-light);
}

.header.scrolled .nav-link:hover {
    color: var(--color-charcoal);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: var(--color-terracotta);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-1px);
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--color-white);
    transition: transform var(--transition-base), opacity var(--transition-base);
    transform-origin: center;
}

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

.mobile-menu-btn.active .hamburger::before {
    transform: translateY(5.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--color-sand);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-charcoal);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-sand-dark);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--color-terracotta);
    padding-left: 0.5rem;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--color-sand-dark);
    margin: 1rem 0;
}

.mobile-menu-phone {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: 0.5rem;
}

.mobile-menu-address {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    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 ease-out;
}

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

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    margin-top: 4rem;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-tag-line {
    width: 48px;
    height: 1.5px;
    background: var(--color-terracotta-light);
}

.hero-tag span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--color-white);
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
}

.headline-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.headline-line:nth-child(1) { animation-delay: 0.5s; }
.headline-line:nth-child(2) { animation-delay: 0.65s; }
.headline-line:nth-child(3) { animation-delay: 0.8s; }
.headline-line:nth-child(4) { animation-delay: 0.95s; }

.hero-headline em {
    font-style: italic;
    color: var(--color-terracotta-light);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    border: 1.5px solid var(--color-terracotta);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 93, 69, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero Scroll --- */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}

.hero-scroll span {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* --- Marquee --- */
.marquee {
    background: var(--color-charcoal);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--color-terracotta);
    padding: 0 0.5rem;
    flex-shrink: 0;
    font-size: 0.5rem;
    align-self: center;
}

/* --- Section Labels --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 32px;
    height: 1.5px;
    background: var(--color-terracotta);
    flex-shrink: 0;
}

.label-line.light {
    background: var(--color-terracotta-light);
}

.section-label span:last-child {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.section-label.light span:last-child {
    color: rgba(255, 255, 255, 0.6);
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--color-terracotta);
}

.section-title.light {
    color: var(--color-white);
}

/* --- About --- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-sand);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

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

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
    aspect-ratio: 4/5;
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 12px 32px rgba(184, 93, 69, 0.3);
}

.about-badge .badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-badge .badge-text {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-sand-dark);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-sand-dark);
}

/* --- Collections --- */
.collections {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--color-white);
}

.section-header {
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.collection-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.collection-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.collection-image {
    position: relative;
    aspect-ratio: 6/7;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.collection-card:hover .collection-image img {
    transform: scale(1.06);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.6) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    line-height: 1;
    margin-bottom: auto;
    padding-top: 1rem;
}

.collection-overlay svg {
    color: var(--color-terracotta-light);
    transform: translate(-8px, 8px);
    transition: transform var(--transition-base);
}

.collection-card:hover .collection-overlay svg {
    transform: translate(0, 0);
}

.collection-info {
    padding: 1.25rem 0.25rem;
}

.collection-info h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.375rem;
}

.collection-info p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Experience --- */
.experience {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

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

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 26, 26, 0.88) 0%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 0.4) 100%
    );
}

.experience-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-bottom: var(--space-lg);
}

.experience-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 1.5rem;
}

.experience-features {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 560px;
}

.feature {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: background var(--transition-base), border-color var(--transition-base);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.feature-icon {
    color: var(--color-terracotta-light);
    margin-bottom: 1rem;
}

.feature h4 {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* --- Quote Section --- */
.quote-section {
    padding: var(--space-3xl) 0;
    background: var(--color-sand);
    text-align: center;
}

.quote-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.8;
    color: var(--color-terracotta);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: -0.5rem;
    user-select: none;
}

blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.04em;
}

.quote-divider {
    width: 24px;
    height: 1.5px;
    background: var(--color-terracotta);
}

.quote-location {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* --- Visit --- */
.visit {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--color-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    color: var(--color-terracotta);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--color-charcoal);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-value:hover {
    color: var(--color-terracotta);
}

.hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-sand-dark);
}

.hours h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--color-sand-mid);
}

.hours-row span:first-child {
    color: var(--color-text);
    font-weight: 500;
}

.hours-row span:last-child {
    color: var(--color-text-light);
}

/* --- Map --- */
.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 60%, transparent 100%);
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.map-pin {
    color: var(--color-terracotta);
}

.map-address {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.4;
}

.map-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
}

/* --- Newsletter --- */
.newsletter {
    padding: var(--space-2xl) 0;
    background: var(--color-charcoal);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.newsletter-content .section-label span:last-child {
    color: rgba(255,255,255,0.5);
}

.newsletter-content .section-title {
    color: var(--color-white);
}

.newsletter-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 1rem;
}

.newsletter-form-wrap {
    position: relative;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: border-color var(--transition-fast), background var(--transition-fast);
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus {
    border-color: var(--color-terracotta);
    background: rgba(255, 255, 255, 0.1);
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    text-align: center;
    color: var(--color-white);
}

.form-success.active {
    display: flex;
}

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

.form-success p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
}

/* --- Footer --- */
.footer {
    background: var(--color-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-light {
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1rem;
    max-width: 240px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-terracotta-light);
    padding-left: 0.375rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-phone,
.footer-email {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--color-terracotta-light);
}

.footer-address {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); transform-origin: top; }
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-card:last-child {
        grid-column: span 2;
    }
    
    .collection-card:last-child .collection-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .nav, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-accent {
        right: 0;
        bottom: -1.5rem;
    }
    
    .about-badge {
        top: -1rem;
        left: 0;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-card:last-child {
        grid-column: span 1;
    }
    
    .collection-card:last-child .collection-image {
        aspect-ratio: 6/7;
    }
    
    .experience-features {
        grid-template-columns: 1fr;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        aspect-ratio: 16/9;
    }
    
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
