/* ============================================
   Dreamers USA Liquor Store — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-terracotta: #C1694F;
    --color-terracotta-dark: #A0523D;
    --color-terracotta-light: #D4896F;
    --color-sand: #F5E6D3;
    --color-sand-light: #FAF3EB;
    --color-sand-dark: #E8D5C0;
    --color-wine: #8B4557;
    --color-gold: #D4A84B;
    --color-dark: #1A1A1A;
    --color-dark-soft: #2C2C2C;
    --color-navy: #2C3E50;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-text-inverse: #F5E6D3;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid var(--color-terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}

body:hover .cursor-dot,
body:hover .cursor-ring {
    opacity: 1;
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--color-terracotta-light);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(250, 243, 235, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: var(--spacing-xs) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-dark);
}

.nav-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--color-terracotta);
    color: var(--color-sand-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
}

.nav-logo-accent {
    color: var(--color-terracotta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    letter-spacing: 0.02em;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-terracotta);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 105, 79, 0.4);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-sand-light);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--color-terracotta);
}

.mobile-menu-cta {
    background: var(--color-terracotta);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: var(--spacing-sm);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: var(--color-sand-light);
    padding-top: 80px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 105, 79, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 69, 87, 0.06) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Left */
.hero-left {
    max-width: 540px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-terracotta);
    margin-bottom: var(--spacing-md);
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

.hero-headline-line {
    display: block;
}

.hero-headline-accent {
    color: var(--color-terracotta);
}

.hero-headline-script {
    font-style: italic;
    font-weight: 400;
    font-size: 0.7em;
    color: var(--color-text-light);
    margin-top: 4px;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-terracotta);
    color: white;
    box-shadow: 0 4px 15px rgba(193, 105, 79, 0.3);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 105, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-sand-dark);
}

.btn-secondary:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-top: 4px;
}

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

/* Hero Right — Image Stack */
.hero-right {
    position: relative;
    min-height: 600px;
}

.hero-image-stack {
    position: relative;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-primary {
    width: 320px;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 3;
}

.hero-img-secondary {
    width: 260px;
    height: 200px;
    bottom: 120px;
    right: 140px;
    z-index: 2;
    border: 4px solid var(--color-sand-light);
}

.hero-img-tertiary {
    width: 180px;
    height: 180px;
    bottom: 0;
    right: 20px;
    z-index: 1;
}

.hero-img-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--color-terracotta);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(193, 105, 79, 0.4);
    z-index: 4;
}

.hero-float-card {
    position: absolute;
    top: 60px;
    left: -30px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-float-card-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-terracotta);
}

.hero-float-card-text {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text);
    margin-top: 2px;
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    overflow: hidden;
    padding: 14px 0;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

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

.marquee-item {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-dot {
    color: var(--color-terracotta);
    font-size: 0.6rem;
}

/* --- Section Common --- */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-terracotta);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.15;
}

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

.section-title-accent {
    color: var(--color-terracotta);
}

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

/* --- Collections Section --- */
.collections {
    padding: var(--spacing-2xl) 0;
    background: var(--color-sand-light);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--spacing-md);
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    transition: var(--transition);
    text: none;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.collection-card--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.collection-card--wide {
    grid-column: 2 / 4;
}

.collection-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: var(--transition-slow);
}

.collection-card:hover .collection-card-bg {
    transform: scale(1.05);
}

.collection-card-content {
    position: relative;
    z-index: 1;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg);
    color: white;
}

.collection-card--large .collection-card-content {
    min-height: 540px;
    justify-content: flex-end;
}

.collection-card--wide .collection-card-content {
    min-height: 260px;
}

.collection-card-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

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

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

.collection-card-info {
    position: relative;
    z-index: 1;
}

.collection-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.collection-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.collection-card--large .collection-card-title {
    font-size: 2rem;
}

.collection-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 300px;
    margin-bottom: var(--spacing-sm);
}

.collection-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.collection-card:hover .collection-card-arrow {
    background: white;
    color: var(--color-terracotta);
    transform: translateX(4px);
}

/* --- About Section --- */
.about {
    padding: var(--spacing-2xl) 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 105, 79, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 550px;
}

.about-img-main {
    width: 75%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

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

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--color-dark);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.about-experience-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: var(--color-terracotta);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(193, 105, 79, 0.5);
    z-index: 2;
}

.about-exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-exp-text {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
    opacity: 0.9;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content .section-tag {
    color: var(--color-gold);
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(245, 230, 211, 0.75);
    margin-bottom: var(--spacing-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(193, 105, 79, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-sand-light);
    margin-bottom: 2px;
}

.about-feature-desc {
    font-size: 0.85rem;
    color: rgba(245, 230, 211, 0.55);
    line-height: 1.5;
}

/* --- Services Section --- */
.services {
    padding: var(--spacing-2xl) 0;
    background: var(--color-sand);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover .service-card-accent {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-sand-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-terracotta);
    color: white;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* --- Testimonial Section --- */
.testimonial {
    padding: var(--spacing-2xl) 0;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(193, 105, 79, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 168, 75, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-icon {
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-sand);
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial-author-name {
    display: block;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.testimonial-author-location {
    display: block;
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.5);
    margin-top: 2px;
}

/* --- Contact Section --- */
.contact {
    padding: var(--spacing-2xl) 0;
    background: var(--color-dark);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(193, 105, 79, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-terracotta);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--color-sand);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--color-sand);
}

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

/* Contact Form Card */
.contact-form-card {
    background: var(--color-dark-soft);
    border: 1px solid rgba(245, 230, 211, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-sand-light);
    margin-bottom: 6px;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.5);
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 230, 211, 0.5);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(245, 230, 211, 0.06);
    border: 1px solid rgba(245, 230, 211, 0.12);
    border-radius: var(--radius-sm);
    color: var(--color-sand);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: rgba(245, 230, 211, 0.3);
}

.form-input:focus {
    border-color: var(--color-terracotta);
    background: rgba(193, 105, 79, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F5E6D3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--color-dark-soft);
    color: var(--color-sand);
}

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(193, 105, 79, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: var(--color-terracotta);
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-sand-light);
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.5);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- Footer --- */
.footer {
    background: #111111;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(245, 230, 211, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-sand-light);
    margin-bottom: var(--spacing-sm);
}

.footer-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--color-terracotta);
    color: var(--color-sand-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
}

.footer-logo-accent {
    color: var(--color-terracotta);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.4);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-terracotta);
    margin-bottom: 4px;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.5);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-sand-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.3);
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(245, 230, 211, 0.2);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    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; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-subheadline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-right {
        display: none;
    }
    
    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .collection-card--large {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    
    .collection-card--wide {
        grid-column: 1 / 3;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-card--large,
    .collection-card--wide {
        grid-column: 1 / 2;
    }
    
    .collection-card--large .collection-card-content {
        min-height: 360px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Disable custom cursor on touch devices */
    .cursor-dot, .cursor-ring {
        display: none !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
}
