/* ============================================
   The Hobby Oasis — Styles
   Classic & Elegant · Burgundy + Blush
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Burgundy Palette */
    --burgundy-deep: #5C1A2A;
    --burgundy-main: #7B2D3B;
    --burgundy-mid: #9B3D4B;
    --burgundy-light: #B85C6A;
    --burgundy-pale: #D4A0AA;
    
    /* Blush Palette */
    --blush-deep: #C4909A;
    --blush-main: #E8C4C8;
    --blush-light: #F2D8DC;
    --blush-pale: #F9EDED;
    --blush-cream: #FDF6F0;
    
    /* Neutrals */
    --charcoal: #2A2022;
    --dark-brown: #3D2E30;
    --warm-gray: #6B5B5D;
    --mid-gray: #9E8E90;
    --light-gray: #D4C4C6;
    --off-white: #FAF3EF;
    --white: #FFFDFB;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Layout */
    --container-max: 1280px;
    --container-padding: 1.5rem;
    --header-height: 72px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(92, 26, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(92, 26, 42, 0.1);
    --shadow-lg: 0 8px 32px rgba(92, 26, 42, 0.12);
    --shadow-xl: 0 16px 48px rgba(92, 26, 42, 0.15);
    
    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    -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;
}

address {
    font-style: normal;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
}

em {
    font-style: italic;
    color: var(--burgundy-main);
}

/* --- Section Eyebrow --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy-main);
    margin-bottom: var(--space-sm);
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--charcoal);
}

/* --- Section Subtitle --- */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Section Header --- */
.section-header.centered {
    text-align: center;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--burgundy-main);
    color: var(--white);
    border: 1.5px solid var(--burgundy-main);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--burgundy-main);
    border: 1.5px solid var(--burgundy-main);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background-color: var(--burgundy-main);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--blush-light);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.site-header .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--burgundy-deep);
    letter-spacing: 0.02em;
}

.nav-logo-icon {
    color: var(--burgundy-main);
}

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

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--burgundy-main);
    transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--burgundy-main);
}

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

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

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--burgundy-deep);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 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(4px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--blush-cream) 0%, var(--white) 40%, var(--blush-pale) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--burgundy-main) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--burgundy-main) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, var(--burgundy-main) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 50px 50px;
    pointer-events: none;
}

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

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

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy-main);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background-color: var(--burgundy-main);
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    max-width: 560px;
}

.hero-headline em {
    color: var(--burgundy-main);
    font-size: 1.05em;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

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

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

.hero-trust span {
    font-size: 0.8125rem;
    color: var(--mid-gray);
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--blush-deep);
    flex-shrink: 0;
}

/* Hero Images */
.hero-image-group {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

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

.hero-img--primary {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
}

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

.hero-img--secondary {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 55%;
    aspect-ratio: 4/3;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-xl);
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--mid-gray);
    font-size: 0.6875rem;
    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); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

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

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

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 7/8;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 50%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 7/8;
    display: block;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -16px;
    background: var(--burgundy-main);
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge .badge-year {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-badge .badge-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 0.125rem;
}

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

.about-text {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

.feature-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background-color: var(--blush-pale);
    color: var(--burgundy-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
    padding: var(--space-3xl) 0;
    background-color: var(--blush-cream);
}

.categories .section-header {
    margin-bottom: var(--space-xl);
}

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

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    group: true;
}

.category-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.category-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 26, 42, 0.7) 0%, rgba(92, 26, 42, 0.1) 50%, transparent 100%);
    opacity: 0.85;
    transition: opacity var(--transition-base);
}

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

.category-card:hover .category-img-overlay {
    opacity: 1;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    z-index: 1;
}

.category-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 253, 251, 0.4);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.category-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.category-info p {
    font-size: 0.875rem;
    color: rgba(255, 253, 251, 0.8);
    line-height: 1.6;
    max-width: 280px;
}

/* ============================================
   WORKSHOPS SECTION
   ============================================ */
.workshops {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

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

.workshops-content {
    padding-right: var(--space-lg);
}

.workshops-text {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.workshops-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.workshops-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--charcoal);
}

.workshops-list-icon {
    flex-shrink: 0;
    color: var(--burgundy-main);
}

/* Workshops Images */
.workshops-images {
    display: grid;
    grid-template-rows: 1.4fr 0.8fr;
    gap: var(--space-md);
}

.workshops-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.workshops-img--top {
    height: 100%;
}

.workshops-img--top img,
.workshops-img--bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.workshops-img--bottom {
    border-radius: var(--radius-md);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy-main) 60%, var(--burgundy-mid) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 30% 40%, var(--white) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, var(--white) 1px, transparent 1px);
    background-size: 48px 48px, 64px 64px;
    pointer-events: none;
}

.testimonial .container {
    position: relative;
    z-index: 1;
}

.testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-mark {
    display: block;
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 0.8;
    color: rgba(255, 253, 251, 0.2);
    margin-bottom: var(--space-sm);
}

.testimonial blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.testimonial-attr {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blush-pale);
}

/* ============================================
   VISIT / CONTACT SECTION
   ============================================ */
.visit {
    padding: var(--space-3xl) 0;
    background-color: var(--blush-cream);
}

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

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--blush-pale);
    color: var(--burgundy-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-detail h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.visit-detail p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--burgundy-main);
    transition: color var(--transition-fast);
}

.visit-detail a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.visit-cta {
    margin-top: var(--space-lg);
}

/* Form */
.visit-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--blush-light);
}

.visit-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

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

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background-color: var(--blush-cream);
    border: 1px solid var(--blush-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy-main);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

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

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

.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'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237B2D3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.form-success-icon {
    display: block;
    margin: 0 auto var(--space-sm);
    color: var(--burgundy-main);
}

.form-success p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--charcoal);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    border-top: 1px solid var(--blush-light);
}

.map-container {
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    filter: saturate(0.7) contrast(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--charcoal);
    color: var(--blush-pale);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.site-footer a {
    color: var(--blush-pale);
    transition: color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(212, 196, 198, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-logo-icon {
    color: var(--blush-main);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--mid-gray);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-main);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links li a {
    font-size: 0.9375rem;
    color: var(--mid-gray);
}

.footer-links li a:hover {
    color: var(--white);
}

.footer-contact address p {
    font-size: 0.9375rem;
    color: var(--mid-gray);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

.footer-bottom a {
    color: var(--warm-gray);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        padding: var(--space-xl) 0 var(--space-2xl);
    }
    
    .hero-eyebrow {
        justify-content: center;
    }
    
    .hero-headline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image-group {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid,
    .workshops-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .workshops-content {
        padding-right: 0;
        order: 2;
    }
    
    .workshops-images {
        order: 1;
        max-width: 560px;
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-xl);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 999;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(42, 32, 34, 0.5);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-xl));
        padding-bottom: var(--space-2xl);
    }
    
    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .hero-img--secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: var(--space-sm);
        border: none;
        box-shadow: var(--shadow-md);
    }
    
    .hero-image-group {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-img--primary {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
    
    .about-image-accent {
        width: 40%;
        right: -10px;
        bottom: -20px;
    }
    
    .about-badge {
        top: -12px;
        left: -8px;
        padding: 0.75rem 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .workshops-images {
        grid-template-rows: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .visit-form-wrap {
        padding: var(--space-md);
    }
    
    .about-image-accent {
        display: none;
    }
}
