/* ============================================
   White Rock Toys and Gaming — Stylesheet
   Classic & Elegant · Plum + Amber Palette
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Plum palette */
    --plum-50: #faf5f7;
    --plum-100: #f5e9ed;
    --plum-200: #ebd0d9;
    --plum-300: #d9a8b8;
    --plum-400: #c27a91;
    --plum-500: #a85570;
    --plum-600: #8b3d56;
    --plum-700: #6b2f44;
    --plum-800: #4a1f2d;
    --plum-900: #2d131a;
    --plum-950: #1a0b0f;

    /* Amber palette */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;

    /* Neutrals */
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ---------- 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-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-800);
    background-color: var(--plum-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--plum-700);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: var(--space-md);
}

/* ---------- Section Labels & Headings ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-700);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2rem;
}

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

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--plum-900);
    margin-bottom: var(--space-lg);
}

.heading-accent {
    color: var(--plum-600);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--plum-700);
    color: #fff;
    border-color: var(--plum-700);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--plum-800);
    border-color: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 47, 68, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--plum-700);
    border-color: var(--plum-300);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--plum-700);
    color: #fff;
    border-color: var(--plum-700);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--plum-700);
    border-color: var(--plum-300);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--plum-700);
    color: #fff;
    border-color: var(--plum-700);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 245, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--plum-200);
    height: var(--header-height);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(107, 47, 68, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--plum-700);
    color: var(--amber-400);
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--plum-900);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--amber-700);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.main-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: color var(--transition-fast);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-500);
    transition: width var(--transition-base);
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--plum-700);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

.nav-cta {
    background: var(--plum-700);
    color: #fff !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--plum-800);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 110;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum-800);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-4xl);
    background: linear-gradient(135deg, var(--plum-950) 0%, var(--plum-800) 50%, var(--plum-700) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--amber-400) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--amber-400) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, var(--amber-400) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    color: #fff;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-400);
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--space-xl);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: var(--space-xl);
}

.hero-accent {
    color: var(--amber-400);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: var(--amber-600);
    border-color: var(--amber-600);
    color: var(--plum-950);
}

.hero-actions .btn-primary:hover {
    background: var(--amber-500);
    border-color: var(--amber-500);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.35);
}

.hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-base), background var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-card--amber {
    border-color: rgba(251, 191, 36, 0.3);
}

.stat-card--plum {
    border-color: rgba(168, 85, 112, 0.4);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-md);
    color: var(--amber-400);
}

.stat-card--plum .stat-icon {
    color: var(--plum-300);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
}

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

/* ---------- About ---------- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--plum-50);
}

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

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

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(107, 47, 68, 0.2);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber-400);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

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

.about-content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
    font-size: 1.0625rem;
    line-height: 1.85;
}

.about-features {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--plum-200);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--plum-800);
    font-size: 0.9375rem;
}

.about-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--amber-600);
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 100%;
    height: 100%;
}

/* ---------- Services ---------- */
.services {
    padding: var(--space-4xl) 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--plum-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--plum-100);
}

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

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 19, 26, 0.3), transparent);
}

.service-card-content {
    padding: var(--space-xl);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--plum-700);
    color: var(--amber-400);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.75;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: var(--space-4xl) 0;
    background: var(--plum-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item--wide {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 7 / 10;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 10 / 13;
    grid-row: 2 / 3;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-700) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 30% 50%, var(--amber-400) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, var(--amber-400) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content .section-label {
    color: var(--amber-400);
}

.cta-content .section-label::before {
    background: var(--amber-500);
}

.cta-heading {
    color: #fff;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.cta-actions .btn-primary {
    background: var(--amber-600);
    border-color: var(--amber-600);
    color: var(--plum-950);
}

.cta-actions .btn-primary:hover {
    background: var(--amber-500);
    border-color: var(--amber-500);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.35);
}

.cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- Visit ---------- */
.visit {
    padding: var(--space-4xl) 0;
    background: #fff;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.visit-detail {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--plum-100);
    color: var(--plum-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-detail-icon svg {
    width: 22px;
    height: 22px;
}

.visit-detail-text strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: var(--plum-900);
    margin-bottom: var(--space-xs);
}

.visit-detail-text p {
    color: var(--neutral-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.visit-detail-text a {
    color: var(--plum-600);
    transition: color var(--transition-fast);
}

.visit-detail-text a:hover {
    color: var(--plum-800);
}

.visit-map {
    margin-top: var(--space-2xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(107, 47, 68, 0.12);
}

/* Contact Form */
.visit-contact {
    background: var(--plum-50);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--plum-100);
}

.visit-contact h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: var(--space-md);
}

.visit-contact > p {
    color: var(--neutral-600);
    margin-bottom: var(--space-2xl);
    line-height: 1.75;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--plum-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--neutral-800);
    background: #fff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(168, 85, 112, 0.15);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    color: #166534;
    font-weight: 500;
    margin-top: var(--space-lg);
}

.form-success svg {
    width: 24px;
    height: 24px;
    color: #22c55e;
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--plum-950);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    padding: var(--space-4xl) 0 var(--space-3xl);
}

.footer-brand p {
    margin-top: var(--space-lg);
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand .logo-name {
    color: #fff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-lg);
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-xl) 0;
}

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

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

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    background: var(--plum-700);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 50;
    box-shadow: 0 4px 15px rgba(107, 47, 68, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--plum-800);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

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

    .hero-stats {
        max-width: 400px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item,
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        height: 250px;
    }

    .cta-card {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--plum-50);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-2xl)) var(--space-2xl) var(--space-2xl);
        gap: var(--space-lg);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right var(--transition-base);
        z-index: 100;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        font-size: 1.125rem;
    }

    .nav-cta {
        margin-top: var(--space-md);
    }

    /* Mobile overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-3xl));
        padding-bottom: var(--space-3xl);
    }

    .hero-card {
        padding: var(--space-2xl);
    }

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

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-image-accent {
        top: -12px;
        left: -12px;
        width: 80px;
        height: 80px;
    }

    .about-features {
        flex-direction: column;
        gap: var(--space-md);
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }

    /* CTA */
    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* Visit */
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        display: grid;
        grid-template-columns: auto 1fr;
        text-align: left;
        padding: var(--space-lg);
        gap: var(--space-md);
        align-items: center;
    }

    .stat-icon {
        margin: 0;
    }

    .stat-number {
        margin-bottom: 0;
    }
}

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

    html {
        scroll-behavior: auto;
    }

    .hero-scroll {
        animation: none;
    }

    .back-to-top {
        transition: none;
    }
}
