/* ============================================
   Queen City Cigar — Editorial Style Stylesheet
   Emerald Green + Cream Palette
   ============================================ */

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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #fefdf8;
    --cream-100: #fef9ef;
    --cream-200: #fdf3e0;
    --cream-300: #f5e6c8;
    --gold-400: #d4a853;
    --gold-500: #c49a3c;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --text-muted: #949494;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-50);
    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;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(6, 95, 70, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: padding 0.5s var(--ease-out-expo);
}

.nav.scrolled .nav-inner {
    padding: 14px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream-50);
    transition: color 0.4s ease;
}

.nav.scrolled .nav-logo {
    color: var(--emerald-800);
}

.nav-logo-icon {
    color: var(--gold-400);
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(254, 253, 248, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--text-mid);
}

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

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

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

.nav-cta {
    background: rgba(254, 253, 248, 0.12) !important;
    border: 1px solid rgba(254, 253, 248, 0.25) !important;
    padding: 8px 20px !important;
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

.nav.scrolled .nav-cta {
    background: var(--emerald-800) !important;
    border-color: var(--emerald-800) !important;
    color: var(--cream-50) !important;
}

.nav-cta:hover {
    background: rgba(254, 253, 248, 0.2) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--emerald-700) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream-50);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
    background: var(--emerald-800);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--emerald-900);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--cream-100);
    padding: 12px 0;
    transition: color 0.3s ease;
}

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

.mobile-menu-cta {
    margin-top: 16px;
    color: var(--gold-400) !important;
    font-family: var(--font-sans);
    font-size: 1rem !important;
    font-weight: 500;
}

.mobile-menu-contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-contact a {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.5);
    transition: color 0.3s ease;
}

.mobile-menu-contact a:hover {
    color: var(--cream-200);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--emerald-900) 0%,
        #0a3d2e 30%,
        #0d4f3a 50%,
        var(--emerald-800) 70%,
        #087a58 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(16, 185, 129, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(254, 253, 248, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    color: var(--cream-50);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 0 24px;
    padding-top: 80px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: rgba(212, 168, 83, 0.6);
}

.hero-eyebrow span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream-50);
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-400);
}

.hero-subhead {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: rgba(254, 253, 248, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream-50);
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(254, 253, 248, 0.5);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(254, 253, 248, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(254, 253, 248, 0.4);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-primary {
    background: var(--gold-400);
    color: var(--emerald-900);
}

.btn-primary:hover {
    background: var(--gold-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cream-50);
    border: 1px solid rgba(254, 253, 248, 0.3);
}

.btn-secondary:hover {
    background: rgba(254, 253, 248, 0.1);
    border-color: rgba(254, 253, 248, 0.5);
}

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

/* --- Section Eyebrow & Headline --- */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--emerald-700);
}

.section-subhead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 520px;
}

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

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

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

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(6, 78, 59, 0.12);
}

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

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

.about-image-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.15);
    border: 4px solid var(--cream-50);
}

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

.about-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--emerald-800);
    color: var(--cream-50);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

.about-content {
    padding: 16px 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-value-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--cream-200);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
}

/* --- Collection --- */
.collection {
    padding: 120px 0;
    background: var(--cream-100);
}

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

.section-header .section-subhead {
    margin: 0 auto;
}

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

.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--cream-50);
    box-shadow: 0 4px 24px rgba(6, 78, 59, 0.06);
    transition: all 0.4s var(--ease-out-expo);
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.12);
}

.collection-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5/3.5;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.collection-card-overlay svg {
    color: var(--cream-50);
    transform: translate(-8px, 8px);
    transition: transform 0.4s var(--ease-out-expo);
}

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

.collection-card-body {
    padding: 24px 28px 28px;
}

.collection-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.collection-card-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* --- Experience --- */
.experience {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.experience-content {
    order: 1;
}

.experience-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 48px;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.experience-feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
}

.experience-feature-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-300);
    opacity: 0.4;
    padding-top: 2px;
}

.experience-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.experience-feature p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

.experience-images {
    order: 2;
    position: relative;
    min-height: 580px;
}

.experience-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(6, 78, 59, 0.12);
    position: relative;
    z-index: 2;
}

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

.experience-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.15);
    border: 4px solid var(--cream-50);
    z-index: 3;
}

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

.experience-images::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--emerald-200);
    border-radius: 16px;
    z-index: 1;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: var(--cream-100);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-info {
    padding: 16px 0;
}

.visit-details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--emerald-800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
}

.visit-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-mid);
}

.visit-detail a {
    color: var(--text-mid);
    transition: color 0.3s ease;
}

.visit-detail a:hover {
    color: var(--emerald-700);
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.1);
    min-height: 400px;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-content .section-eyebrow {
    color: var(--gold-400);
}

.contact-content .section-headline {
    color: var(--cream-50);
}

.contact-content .section-headline em {
    color: var(--gold-400);
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(254, 253, 248, 0.6);
    margin-top: 16px;
}

.contact-form {
    background: rgba(254, 253, 248, 0.06);
    border: 1px solid rgba(254, 253, 248, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 253, 248, 0.5);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(254, 253, 248, 0.07);
    border: 1px solid rgba(254, 253, 248, 0.12);
    border-radius: 10px;
    color: var(--cream-50);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(254, 253, 248, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-400);
    background: rgba(254, 253, 248, 0.1);
}

.form-group 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 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='rgba(254,253,248,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--emerald-900);
    color: var(--cream-50);
}

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

.contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: rgba(254, 253, 248, 0.06);
    border: 1px solid rgba(254, 253, 248, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-success.visible {
    display: flex;
}

.contact-success svg {
    color: var(--emerald-500);
    margin-bottom: 20px;
}

.contact-success h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 12px;
}

.contact-success p {
    font-size: 0.95rem;
    color: rgba(254, 253, 248, 0.6);
    margin-bottom: 28px;
}

/* --- Footer --- */
.footer {
    background: #041a12;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream-50);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--gold-400);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(254, 253, 248, 0.4);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.5);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cream-200);
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(254, 253, 248, 0.4);
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(254, 253, 248, 0.4);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--cream-200);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(254, 253, 248, 0.3);
}

.footer-legal {
    font-size: 0.75rem !important;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.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; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid,
    .experience-split,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .experience-content { order: 2; }
    .experience-images { order: 1; min-height: 400px; }

    .about-image-accent {
        right: 16px;
        bottom: -20px;
    }

    .experience-img-secondary {
        left: -16px;
        bottom: -24px;
    }

    .experience-images::before {
        right: -10px;
        top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-image-accent {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
        border: none;
        box-shadow: 0 16px 48px rgba(6, 78, 59, 0.15);
    }

    .about-image-wrap {
        display: flex;
        flex-direction: column;
    }

    .experience-images {
        min-height: 320px;
    }

    .experience-img-secondary {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

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

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

    .section-headline {
        font-size: 1.8rem;
    }
}
