/* ============================================
   Tourist Stop — Premium Dark Luxury Styles
   Charcoal + Coral + Gold Accent Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --bg-primary: #0e0e10;
    --bg-secondary: #161618;
    --bg-tertiary: #1e1e22;
    --bg-card: #1a1a1e;
    --bg-elevated: #222228;

    --text-primary: #f5f0eb;
    --text-secondary: #b8b0a8;
    --text-muted: #7a726a;

    --accent-coral: #e8645a;
    --accent-coral-light: #f0786e;
    --accent-coral-dark: #c94e44;
    --accent-gold: #d4a853;
    --accent-gold-light: #e8c078;
    --accent-gold-dark: #b8903e;

    --border-subtle: rgba(212, 168, 83, 0.12);
    --border-medium: rgba(212, 168, 83, 0.25);
    --border-strong: rgba(212, 168, 83, 0.4);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(232, 100, 90, 0.15);
    --shadow-gold: 0 0 40px rgba(212, 168, 83, 0.1);

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

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

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1280px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent-coral);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(14, 14, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.nav-logo-mark {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(212, 168, 83, 0.08);
}

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    padding: 10px 24px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-cta:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.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;
    z-index: 999;
    background: rgba(14, 14, 16, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.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-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 12px 0;
    transition: var(--transition-fast);
}

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

.mobile-menu-divider {
    width: 60px;
    height: 1px;
    background: var(--border-medium);
    margin: 16px auto;
}

.mobile-menu-address {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 8px;
}

.mobile-menu-phone {
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.mobile-menu-phone:hover {
    color: var(--accent-gold-light);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 100, 90, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 90%, rgba(232, 100, 90, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.hero-eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-primary);
}

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

.hero-title-accent {
    display: block;
    color: var(--accent-coral);
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    letter-spacing: 0.04em;
}

.btn-primary {
    background: var(--accent-coral);
    color: var(--text-primary);
    border: 1px solid var(--accent-coral);
}

.btn-primary:hover {
    background: var(--accent-coral-light);
    border-color: var(--accent-coral-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-medium);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 700px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-img--main {
    width: 340px;
    height: 460px;
    top: 0;
    right: 40px;
    z-index: 2;
    border: 1px solid var(--border-subtle);
}

.hero-img--secondary {
    width: 260px;
    height: 195px;
    bottom: 180px;
    left: 0;
    z-index: 3;
    border: 1px solid var(--border-subtle);
}

.hero-img--accent {
    width: 200px;
    height: 267px;
    bottom: 0;
    right: 20px;
    z-index: 1;
    border: 1px solid var(--border-subtle);
}

.hero-badge {
    position: absolute;
    bottom: 200px;
    right: -10px;
    z-index: 4;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.hero-badge svg {
    color: var(--accent-gold);
}

.hero-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
}

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

.hero-scroll span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

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

/* --- Section Shared --- */
.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

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

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

/* --- About Section --- */
.about {
    padding: 120px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--border-medium));
}

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

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

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

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

.about-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: var(--transition-base);
}

.about-feature:hover .about-feature-icon {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--accent-gold);
}

.about-feature h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Collection Section --- */
.collection {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.collection::before,
.collection::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-subtle);
}

.collection::before { top: 0; }
.collection::after { bottom: 0; }

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

.collection-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

.collection-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.collection-card--featured {
    grid-column: span 7;
}

.collection-card:not(--featured) {
    grid-column: span 5;
}

.collection-card-img {
    overflow: hidden;
    height: 260px;
}

.collection-card--featured .collection-card-img {
    height: 340px;
}

.collection-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.collection-card-content {
    padding: 28px;
}

.collection-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-coral);
    background: rgba(232, 100, 90, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.collection-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.collection-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Experience Section --- */
.experience {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 100, 90, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.experience-content {
    padding: 20px 0;
}

.experience-text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.experience-text em {
    color: var(--accent-coral);
    font-style: italic;
    font-family: var(--font-display);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.experience-list-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.experience-visual {
    position: relative;
}

.experience-img-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exp-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.exp-img--1 {
    height: 380px;
}

.exp-img--2 {
    height: 220px;
}

/* --- Visit Section --- */
.visit {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-subtle);
}

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

.visit-content {
    padding: 20px 0;
}

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

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

.visit-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.visit-detail h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.visit-detail p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.visit-detail a:hover {
    color: var(--accent-gold-light);
}

.visit-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    min-height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    filter: grayscale(0.6) brightness(0.7) contrast(1.1);
    transition: var(--transition-base);
}

.visit-map:hover .map-placeholder {
    filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-subtle);
}

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

.contact-info {
    padding: 20px 0;
}

.contact-text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-direct-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.contact-direct-item:hover {
    color: var(--accent-gold);
}

.contact-direct-sep {
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrap {
    position: relative;
}

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

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

.form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text-primary);
    transition: var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent-gold);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.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='%237a726a' 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 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
}

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

.form-success-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

.footer-links li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- 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.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) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        height: 500px;
        order: -1;
    }

    .hero-img--main {
        width: 260px;
        height: 350px;
        right: 20px;
    }

    .hero-img--secondary {
        width: 200px;
        height: 150px;
        bottom: 140px;
        left: 0;
    }

    .hero-img--accent {
        width: 160px;
        height: 213px;
        bottom: 0;
        right: 10px;
    }

    .about-layout,
    .experience-layout,
    .visit-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .collection-card--featured {
        grid-column: span 12;
    }

    .collection-card:not(.collection-card--featured) {
        grid-column: span 6;
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-img--main {
        width: 200px;
        height: 270px;
        right: 10px;
    }

    .hero-img--secondary {
        width: 150px;
        height: 113px;
        bottom: 100px;
        left: 0;
    }

    .hero-img--accent {
        width: 130px;
        height: 173px;
        bottom: 0;
        right: 5px;
    }

    .hero-badge {
        bottom: 110px;
        right: 0;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .hero-scroll {
        display: none;
    }

    .about,
    .collection,
    .experience,
    .visit,
    .contact {
        padding: 80px 0;
    }

    .collection-grid {
        gap: 16px;
    }

    .collection-card--featured,
    .collection-card:not(.collection-card--featured) {
        grid-column: span 12;
    }

    .collection-card-img {
        height: 220px;
    }

    .collection-card--featured .collection-card-img {
        height: 260px;
    }

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

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

    .visit-layout {
        gap: 40px;
    }

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

    .contact-layout {
        gap: 48px;
    }
}

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

    .hero {
        padding: 90px 16px 60px;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-img--main {
        width: 160px;
        height: 216px;
        right: 0;
    }

    .hero-img--secondary {
        width: 120px;
        height: 90px;
        bottom: 80px;
        left: 0;
    }

    .hero-img--accent {
        width: 110px;
        height: 147px;
        bottom: 0;
        right: 0;
    }

    .hero-badge {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .about-image-wrap img {
        height: 350px;
    }

    .about-image-accent {
        display: none;
    }

    .collection-card-content {
        padding: 20px;
    }

    .collection-card-content h3 {
        font-size: 18px;
    }

    .visit-actions {
        flex-direction: column;
    }

    .visit-actions .btn {
        justify-content: center;
    }
}
