/* ============================================
   Sarah's Gown Gallery — Premium Dark Luxury
   Emerald Green + Cream + Gold Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --bg-primary: #070e0a;
    --bg-secondary: #0c1f14;
    --bg-tertiary: #112a1c;
    --bg-card: rgba(12, 31, 20, 0.6);
    --bg-card-hover: rgba(17, 42, 28, 0.8);

    --emerald-50: #f0fdf4;
    --emerald-100: #dcfce7;
    --emerald-200: #bbf7d0;
    --emerald-300: #86efac;
    --emerald-400: #4ade80;
    --emerald-500: #22c55e;
    --emerald-600: #16a34a;
    --emerald-700: #15803d;
    --emerald-800: #166534;
    --emerald-900: #14532d;
    --emerald-950: #052e16;

    --cream-50: #fefdf8;
    --cream-100: #fdf9ef;
    --cream-200: #f9f0d4;
    --cream-300: #f2e3b0;
    --cream-400: #e8cc7a;
    --cream-500: #d4a84b;

    --gold-300: #f0d78c;
    --gold-400: #e8c547;
    --gold-500: #d4a843;
    --gold-600: #c49a30;
    --gold-700: #b8860b;

    --text-primary: #fefce8;
    --text-secondary: #d4d4c8;
    --text-muted: #8a9a88;
    --text-dark: #0a1f12;

    --border-subtle: rgba(34, 197, 94, 0.12);
    --border-gold: rgba(212, 168, 67, 0.35);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;

    --nav-height: 72px;
    --section-padding: clamp(4rem, 10vw, 8rem);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    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 {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, select, textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* --- Typography --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1px;
    background: var(--gold-500);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.gold-text {
    color: var(--gold-500);
    font-style: italic;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--text-dark);
    border: 1px solid var(--gold-500);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--cream-200);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--gold-500);
    color: var(--gold-400);
}

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

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

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

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cream-100);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.02em;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-500);
    border: 1px solid var(--border-gold);
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--gold-500);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream-200);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(7, 14, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: var(--cream-200);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream-200);
    transition: color 0.3s ease;
}

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

.mobile-cta {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500) !important;
    border: 1px solid var(--border-gold);
    padding: 0.75rem 2rem;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 14, 10, 0.95) 0%,
        rgba(7, 14, 10, 0.85) 40%,
        rgba(7, 14, 10, 0.6) 70%,
        rgba(7, 14, 10, 0.4) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7, 14, 10, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(7, 14, 10, 0.8) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding-top: var(--nav-height);
    padding-bottom: 2rem;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 1.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-gold);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--cream-50);
    margin-bottom: 1.5rem;
}

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

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--gold-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Right */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-image-frame {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    height: 520px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-600);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.5;
}

.hero-quote {
    position: relative;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 2px solid var(--gold-600);
    margin-left: 0.5rem;
}

.hero-quote p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--cream-200);
    line-height: 1.7;
    margin: 0.75rem 0;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

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

/* --- About Section --- */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image {
    width: 100%;
    height: clamp(400px, 60vw, 650px);
    object-fit: cover;
    border-radius: 2px;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(7, 14, 10, 0.9), transparent);
}

.about-year {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gold-400);
    letter-spacing: 0.05em;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-400);
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.about-badge svg {
    color: var(--gold-500);
}

.about-content-col {
    padding-left: 1rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    color: var(--gold-500);
}

.value-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: 0.2rem;
}

.value-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

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

.collection-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    display: block;
    group: true;
}

.collection-card-img {
    position: relative;
    height: clamp(380px, 50vw, 580px);
    overflow: hidden;
}

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

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

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 14, 10, 0.95) 0%,
        rgba(7, 14, 10, 0.6) 40%,
        transparent 70%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}

.collection-card:hover .collection-card-overlay {
    background: linear-gradient(
        to top,
        rgba(7, 14, 10, 0.97) 0%,
        rgba(7, 14, 10, 0.7) 45%,
        rgba(7, 14, 10, 0.3) 70%
    );
}

.collection-card-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.collection-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cream-50);
    margin-bottom: 0.75rem;
}

.collection-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 300px;
}

.collection-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
    transition: gap 0.3s ease;
}

.collection-card:hover .collection-card-cta {
    gap: 0.85rem;
}

/* --- Experience Section --- */
.experience {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.experience-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.experience-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold-600);
    line-height: 1;
    min-width: 3.5rem;
    opacity: 0.6;
}

.step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: 0.3rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Experience Visual */
.experience-visual {
    position: relative;
    height: clamp(450px, 60vw, 650px);
}

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

.exp-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.exp-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: 2px;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.exp-accent-box {
    position: absolute;
    bottom: 30%;
    left: 55%;
    transform: translateX(-50%);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-gold);
    padding: 1.25rem 1.75rem;
    border-radius: 2px;
    text-align: center;
    z-index: 2;
}

.exp-accent-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.exp-accent-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-400);
}

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

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

.visit-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
}

.visit-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    color: var(--gold-500);
}

.visit-detail strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: 0.2rem;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    transition: color 0.3s ease;
}

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

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

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-wrapper iframe {
    filter: saturate(0.3) brightness(0.7) contrast(1.2);
    transition: filter 0.4s ease;
}

.visit-map:hover .map-wrapper iframe {
    filter: saturate(0.5) brightness(0.75) contrast(1.15);
}

/* --- Contact Section --- */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

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

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-600);
    background: rgba(212, 168, 67, 0.04);
}

.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 24 24' fill='none' stroke='%238a9a88' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

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

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    gap: 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--emerald-600);
    border-radius: 50%;
    color: var(--emerald-400);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream-100);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream-100);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--gold-500);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 280px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream-200);
    margin-bottom: 0.5rem;
}

.footer-links-col a,
.footer-links-col span {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
    line-height: 1.6;
}

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

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

.footer-bottom span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content-col {
        padding-left: 0;
    }

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

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-visual {
        height: 400px;
    }

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

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 2rem) 0 4rem;
    }

    .hero-inner {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-scroll {
        display: none;
    }

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

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

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

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .experience-visual {
        height: 320px;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s 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; }
}
