/* ============================================
   Apollo Cafe — Classic & Elegant Stylesheet
   Burgundy + Blush Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-burgundy: #7B2D3B;
    --color-burgundy-dark: #5C1F2B;
    --color-burgundy-light: #9A3D4F;
    --color-burgundy-muted: rgba(123, 45, 59, 0.08);
    --color-blush: #F5E6D3;
    --color-blush-light: #FBF5EE;
    --color-blush-dark: #E8D1BC;
    --color-cream: #FDF9F4;
    --color-warm-white: #FEFCF9;
    --color-charcoal: #2A2224;
    --color-text: #3D2B2E;
    --color-text-light: #6B5558;
    --color-text-muted: #8A7074;
    --color-border: rgba(123, 45, 59, 0.12);
    --color-border-light: rgba(123, 45, 59, 0.06);

    --font-serif: 'Lora', 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

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

    --shadow-sm: 0 1px 3px rgba(42, 34, 36, 0.06), 0 1px 2px rgba(42, 34, 36, 0.04);
    --shadow-md: 0 4px 16px rgba(42, 34, 36, 0.08), 0 2px 4px rgba(42, 34, 36, 0.04);
    --shadow-lg: 0 12px 40px rgba(42, 34, 36, 0.12), 0 4px 12px rgba(42, 34, 36, 0.06);
    --shadow-xl: 0 24px 60px rgba(42, 34, 36, 0.16);

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

/* --- 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-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-burgundy);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-burgundy-dark);
}

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--color-burgundy);
    color: #fff;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
    color: #fff;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
}

.lead {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

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

/* --- Section Padding --- */
.section-padding {
    padding: var(--space-3xl) 0;
}

/* --- Section Divider --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xl);
}

.divider-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-burgundy);
    opacity: 0.3;
}

.divider-pearl {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-burgundy);
    opacity: 0.5;
}

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

.btn-primary {
    background: var(--color-burgundy);
    color: #fff;
    border: 2px solid var(--color-burgundy);
}

.btn-primary:hover {
    background: var(--color-burgundy-dark);
    border-color: var(--color-burgundy-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-burgundy);
    border: 2px solid var(--color-burgundy);
}

.btn-outline:hover {
    background: var(--color-burgundy);
    color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 249, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.logo:hover {
    color: var(--color-burgundy);
}

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

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-light .logo-text {
    color: var(--color-blush);
}

.logo-light {
    color: var(--color-blush);
}

.logo-light:hover {
    color: var(--color-blush);
}

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

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

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

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

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

.nav-cta {
    background: var(--color-burgundy);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-left: var(--space-xs);
}

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

.nav-cta:hover {
    background: var(--color-burgundy-dark);
    color: #fff !important;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--color-burgundy-muted);
}

.hamburger {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-charcoal);
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-charcoal);
    transition: all var(--transition-base);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--color-charcoal);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/11979193/pexels-photo-11979193.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280') center center / cover no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 34, 36, 0.72) 0%,
        rgba(92, 31, 43, 0.58) 50%,
        rgba(42, 34, 36, 0.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--space-xl) var(--space-lg);
}

.hero-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.decorative-line {
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(245, 230, 211, 0.5);
}

.decorative-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-blush);
    opacity: 0.8;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-blush);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin-bottom: var(--space-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(245, 230, 211, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: var(--color-blush);
    color: var(--color-burgundy-dark);
    border-color: var(--color-blush);
}

.hero-actions .btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--color-burgundy-dark);
}

.hero-actions .btn-outline {
    color: var(--color-blush);
    border-color: rgba(245, 230, 211, 0.5);
}

.hero-actions .btn-outline:hover {
    background: var(--color-blush);
    color: var(--color-burgundy-dark);
    border-color: var(--color-blush);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(245, 230, 211, 0.5);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245, 230, 211, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--color-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    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;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-warm-white);
}

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

.about-badge {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--color-burgundy);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    line-height: 1.4;
}

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

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 1rem;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

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

.value-icon {
    flex-shrink: 0;
    color: var(--color-burgundy);
    margin-top: 0.125rem;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   SPECIALTIES SECTION
   ============================================ */
.specialties {
    background: var(--color-blush-light);
}

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

.specialty-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-light);
}

.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

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

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

.card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.card-description {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--color-warm-white);
}

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

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

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

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

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item--large img {
    aspect-ratio: 4/3;
}

.gallery-item:not(.gallery-item--large) img {
    aspect-ratio: 3/2;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(42, 34, 36, 0.7), transparent);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-style: italic;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    background: var(--color-burgundy);
    color: #fff;
    text-align: center;
}

.quote-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    color: rgba(245, 230, 211, 0.2);
    margin-bottom: var(--space-md);
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-blush);
    margin-bottom: var(--space-xl);
}

.quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.attribution-line {
    width: 40px;
    height: 1px;
    background: rgba(245, 230, 211, 0.4);
}

.attribution-text {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.7);
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit {
    background: var(--color-blush-light);
}

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

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

.info-block {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-block-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.info-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
}

.hours-list .day {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-charcoal);
}

.hours-list .time {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-burgundy);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-burgundy-dark);
}

.contact-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

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

.map-frame {
    border-radius: var(--radius-lg);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--color-warm-white);
}

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

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

.contact-form {
    margin-top: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-burgundy);
    background: #fff;
    box-shadow: 0 0 0 3px var(--color-burgundy-muted);
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    text-align: center;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
    background: var(--color-burgundy-muted);
    border: 1px solid var(--color-burgundy);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--space-md);
}

.form-success svg {
    color: var(--color-burgundy);
}

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

/* --- Contact Visual --- */
.contact-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-overlay-card {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    background: rgba(253, 249, 244, 0.95);
    backdrop-filter: blur(8px);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.overlay-card-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.overlay-card-accent {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-burgundy);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(245, 230, 211, 0.6);
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-blush);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-hours a,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-hours a:hover,
.footer-contact a:hover {
    color: var(--color-blush);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.6);
}

.footer-contact address {
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.copyright,
.footer-location {
    font-size: 0.8125rem;
    color: rgba(245, 230, 211, 0.4);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE — Tablet & Below
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        gap: var(--space-xl);
    }

    .specialties-grid {
        gap: var(--space-md);
    }

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

    .gallery-item--large {
        grid-column: span 12;
        grid-row: span 1;
    }

    .gallery-item:not(.gallery-item--large) {
        grid-column: span 6;
    }
}

@media (max-width: 900px) {
    .contact-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        aspect-ratio: 16/9;
        max-height: 400px;
    }

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

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 3.5rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--color-warm-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        padding: var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-sm);
    }

    /* Mobile nav overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(42, 34, 36, 0.5);
        z-index: -1;
    }

    /* Hero adjustments */
    .hero-headline {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-lg);
    }

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

    .hero-scroll {
        display: none;
    }

    /* About adjustments */
    .about-image-accent {
        width: 65%;
        bottom: -1.5rem;
        right: -1rem;
    }

    .about-badge {
        top: -1rem;
        left: -1rem;
        padding: 1rem 1.25rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    /* Specialties */
    .specialties-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--large,
    .gallery-item:not(.gallery-item--large) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item img {
        aspect-ratio: 4/3 !important;
    }

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

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

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

    /* Contact overlay card */
    .contact-overlay-card {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
    }
}

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

    .section-padding {
        padding: var(--space-2xl) 0;
    }

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

    .about-badge {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: var(--space-md);
    }
}
