/* ===================================
   Motel Eight — Custom Styles
   Burgundy + Blush | Confident Corporate
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-burgundy: #8B1A1A;
    --color-burgundy-dark: #6B1414;
    --color-burgundy-light: #A52A2A;
    --color-blush: #F5E6E0;
    --color-blush-light: #FAF3F0;
    --color-blush-dark: #E8D0C8;
    --color-neutral-900: #1A1A1A;
    --color-neutral-700: #3D3D3D;
    --color-neutral-500: #6B6B6B;
    --color-neutral-300: #B8B8B8;
    --color-neutral-100: #F0F0F0;
    --color-white: #FFFFFF;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);
    
    --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-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-neutral-700);
    background-color: var(--color-white);
    -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;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-neutral-900);
    line-height: 1.2;
    font-weight: 600;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

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

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-neutral-500);
    max-width: 600px;
}

.section-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-neutral-700);
    margin-bottom: var(--space-lg);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

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

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

.btn-outline:hover {
    background-color: var(--color-burgundy);
    color: var(--color-white);
    transform: translateY(-1px);
}

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

.btn-white:hover {
    background-color: var(--color-blush);
    border-color: var(--color-blush);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--color-white);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--color-blush-dark);
    transition: box-shadow var(--transition-base);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

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

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

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

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--color-neutral-500);
    letter-spacing: 0.05em;
}

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

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

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

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

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

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
    background-color: var(--color-blush-light);
}

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

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-neutral-700);
    transition: all var(--transition-fast);
}

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

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

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: 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);
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/2736388/pexels-photo-2736388.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,26,26,0.3) 0%,
        rgba(26,26,26,0.5) 50%,
        rgba(26,26,26,0.8) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: calc(72px + var(--space-2xl));
    padding-bottom: var(--space-2xl);
}

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-blush);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero-title .text-accent {
    color: var(--color-blush);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 560px;
}

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

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--color-blush);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

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

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

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

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

.about-img-secondary img {
    width: 220px;
    height: 160px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -15px;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-lg);
}

.about-badge .badge-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.75rem;
    line-height: 1.4;
    opacity: 0.9;
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-blush-dark);
}

.stat {
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-neutral-500);
    margin-top: 0.25rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
    
    .about-img-main img {
        height: 500px;
    }
}

/* --- Rooms --- */
.rooms {
    padding: var(--space-3xl) 0;
    background-color: var(--color-blush-light);
}

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

.section-header .section-eyebrow {
    margin-bottom: var(--space-sm);
}

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

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.room-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.room-img {
    position: relative;
    overflow: hidden;
}

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

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

.room-tag {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background-color: var(--color-burgundy);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.room-name {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.room-desc {
    font-size: 0.9375rem;
    color: var(--color-neutral-500);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-neutral-700);
}

.room-features svg {
    width: 16px;
    height: 16px;
    color: var(--color-burgundy);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid .room-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }
}

/* --- Amenities --- */
.amenities {
    padding: var(--space-3xl) 0;
    background-color: var(--color-white);
}

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

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

.amenity-card {
    padding: var(--space-lg);
    background-color: var(--color-blush-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.amenity-card:hover {
    background-color: var(--color-white);
    border-color: var(--color-blush-dark);
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-burgundy);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.amenity-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.amenity-title {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.amenity-card p {
    font-size: 0.875rem;
    color: var(--color-neutral-500);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Location --- */
.location {
    padding: var(--space-3xl) 0;
    background-color: var(--color-neutral-900);
    color: var(--color-white);
}

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

.location .section-eyebrow {
    color: var(--color-blush);
}

.location .section-title {
    color: var(--color-white);
}

.location .section-title .text-accent {
    color: var(--color-blush);
}

.location .section-lead {
    color: rgba(255,255,255,0.7);
}

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

.location-item {
    display: flex;
    gap: var(--space-md);
}

.location-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(139,26,26,0.3);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.location-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-blush);
}

.location-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-blush);
    margin-bottom: 0.25rem;
}

.location-item p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.location-item a {
    color: rgba(255,255,255,0.8);
    transition: color var(--transition-fast);
}

.location-item a:hover {
    color: var(--color-blush);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-placeholder {
    position: relative;
    padding-bottom: 75%;
    height: 0;
}

.map-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

/* --- CTA --- */
.cta {
    padding: var(--space-3xl) 0;
    background-color: var(--color-burgundy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background-color: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background-color: rgba(0,0,0,0.05);
    border-radius: 50%;
}

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

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
}

.cta-content {
    max-width: 600px;
}

.cta .section-eyebrow {
    color: var(--color-blush);
}

.cta .section-title {
    color: var(--color-white);
}

.cta .section-title .text-accent {
    color: var(--color-blush);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

/* --- Contact --- */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--color-blush-light);
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

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

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-white);
}

.contact-method-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neutral-500);
    margin-bottom: 0.25rem;
}

.contact-method-value {
    font-size: 0.9375rem;
    color: var(--color-neutral-900);
    font-weight: 500;
}

.contact-method a {
    color: var(--color-burgundy);
    transition: color var(--transition-fast);
}

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

.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: 1.375rem;
    margin-bottom: var(--space-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-neutral-700);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-neutral-900);
    background-color: var(--color-blush-light);
    border: 2px solid var(--color-blush-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-burgundy);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(139,26,26,0.1);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md);
    background-color: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    color: #2E7D32;
    font-size: 0.9375rem;
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--color-neutral-900);
    color: rgba(255,255,255,0.7);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

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

.footer-brand .logo-name {
    color: var(--color-white);
}

.footer-brand .logo-tagline {
    color: rgba(255,255,255,0.5);
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-blush);
    margin-bottom: var(--space-md);
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

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

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact p {
    font-size: 0.9375rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-fast);
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* --- Mobile Menu --- */
.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-blush-dark);
    box-shadow: var(--shadow-lg);
    gap: var(--space-md);
}

.nav-menu.mobile-open a {
    font-size: 1rem;
    padding: 0.5rem 0;
}

/* --- Accessibility --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--color-burgundy);
    outline-offset: 2px;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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