:root {
    --charcoal: #1A1A1A;
    --charcoal-light: #242424;
    --charcoal-lighter: #2E2E2E;
    --coral: #E86A5E;
    --coral-light: #F0857A;
    --coral-dark: #D45549;
    --gold: #C9A96E;
    --gold-light: #D4B97E;
    --offwhite: #F5F0EB;
    --offwhite-muted: #B8B0A8;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--charcoal);
    color: var(--offwhite);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    margin-bottom: 1.5rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: var(--charcoal-lighter);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    border-radius: 2px;
    animation: preloaderProgress 1.2s ease-in-out infinite;
}

@keyframes preloaderProgress {
    0% { width: 0%; margin-left: 0; }
    50% { width: 60%; margin-left: 20%; }
    100% { width: 0%; margin-left: 100%; }
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 106, 94, 0.1);
    transition: all 0.4s var(--transition-smooth);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--offwhite);
    letter-spacing: -0.02em;
}

/* Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 51;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--offwhite);
    transition: all 0.3s var(--transition-smooth);
    transform-origin: center;
}

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

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--offwhite-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-link-cta {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

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

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 106, 94, 0.35);
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(26, 26, 26, 0.75) 50%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 106, 94, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 106, 94, 0.12);
    border: 1px solid rgba(232, 106, 94, 0.25);
    color: var(--coral-light);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s var(--transition-smooth) forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--offwhite);
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s var(--transition-smooth) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) { animation-delay: 0.2s; }
.hero-title-line:nth-child(3) { animation-delay: 0.3s; }

.accent-gradient {
    background: linear-gradient(135deg, var(--coral), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--offwhite-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.4s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(232, 106, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 106, 94, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--offwhite);
    border: 1px solid rgba(245, 240, 235, 0.3);
}

.btn-outline:hover {
    border-color: var(--coral);
    color: var(--coral-light);
    transform: translateY(-3px);
}

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

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--offwhite);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--offwhite-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 240, 235, 0.15);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--offwhite-muted);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Section Styles */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    color: var(--offwhite);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--offwhite-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services */
.services {
    background: var(--charcoal);
}

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

.service-card {
    background: var(--charcoal-light);
    border: 1px solid rgba(245, 240, 235, 0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(40px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: rgba(232, 106, 94, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(232, 106, 94, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 94, 0.08);
    border: 1px solid rgba(232, 106, 94, 0.15);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: rgba(232, 106, 94, 0.15);
    transform: scale(1.05);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--offwhite);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9rem;
    color: var(--offwhite-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--coral);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s var(--transition-smooth);
}

.service-link:hover {
    gap: 0.625rem;
}

/* About */
.about {
    background: var(--charcoal-light);
    position: relative;
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(232, 106, 94, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

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

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-image-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(245, 240, 235, 0.1);
}

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

.about-float-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--offwhite);
}

.about-content {
    padding: 1rem 0;
}

.about-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 500;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

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

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

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

.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 94, 0.08);
    border: 1px solid rgba(232, 106, 94, 0.15);
    border-radius: 12px;
}

.about-value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--offwhite);
    margin-bottom: 0.25rem;
}

.about-value-text {
    font-size: 0.875rem;
    color: var(--offwhite-muted);
    line-height: 1.6;
}

/* Philosophy */
.philosophy {
    background: var(--charcoal);
    position: relative;
}

.philosophy-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(232, 106, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-content {
    position: relative;
}

.philosophy-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    color: var(--offwhite);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: var(--offwhite-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.philosophy-pillars {
    position: relative;
}

.philosophy-pillar {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--charcoal-light);
    border: 1px solid rgba(245, 240, 235, 0.06);
    border-radius: 20px;
    transition: all 0.4s var(--transition-smooth);
}

.philosophy-pillar:hover {
    border-color: rgba(232, 106, 94, 0.2);
    transform: translateY(-5px);
}

.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--offwhite);
    margin-bottom: 0.75rem;
}

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

/* Facility */
.facility {
    background: var(--charcoal-light);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.facility-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.facility-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-image:hover::after {
    opacity: 1;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

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

.facility-image-lg {
    grid-column: span 7;
    min-height: 350px;
}

.facility-image:not(.facility-image-lg) {
    grid-column: span 5;
    min-height: 350px;
}

/* Contact */
.contact {
    background: var(--charcoal);
    position: relative;
}

.contact-bg-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(232, 106, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.contact-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 500;
    color: var(--offwhite);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.contact-text {
    font-size: 1rem;
    color: var(--offwhite-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 94, 0.08);
    border: 1px solid rgba(232, 106, 94, 0.15);
    border-radius: 12px;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--offwhite-muted);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--offwhite);
    line-height: 1.6;
}

.contact-phone {
    color: var(--offwhite);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: var(--coral);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--charcoal-light);
    border: 1px solid rgba(245, 240, 235, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
}

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

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

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

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--offwhite-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input {
    background: var(--charcoal);
    border: 1px solid rgba(245, 240, 235, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: var(--offwhite);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s var(--transition-smooth);
    outline: none;
}

.form-input::placeholder {
    color: rgba(184, 176, 168, 0.5);
}

.form-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 106, 94, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B8B0A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--charcoal-light);
    color: var(--offwhite);
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.5s var(--transition-smooth);
}

.form-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 94, 0.1);
    border: 2px solid rgba(232, 106, 94, 0.2);
    border-radius: 50%;
}

.form-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--offwhite);
    margin-bottom: 0.75rem;
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--offwhite-muted);
    line-height: 1.7;
}

.hidden {
    display: none !important;
}

/* Footer */
.footer {
    background: var(--charcoal-light);
    border-top: 1px solid rgba(245, 240, 235, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--offwhite-muted);
    line-height: 1.7;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--offwhite);
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--offwhite-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--coral);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--offwhite-muted);
    line-height: 1.5;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 235, 0.06);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--offwhite-muted);
}

.footer-location {
    font-size: 0.8rem;
    color: var(--offwhite-muted);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--charcoal-lighter);
    border: 1px solid rgba(245, 240, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--offwhite);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--transition-smooth);
    z-index: 40;
}

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

.back-to-top:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-image-lg {
        grid-column: span 12;
    }

    .facility-image:not(.facility-image-lg) {
        grid-column: span 6;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--charcoal-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s var(--transition-smooth);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

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

    .nav-link-cta {
        width: 100%;
        text-align: center;
    }

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

    .about-images {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-float {
        left: -10px;
        bottom: -20px;
    }

    .about-image-accent {
        width: 120px;
        height: 120px;
        bottom: -10px;
        right: -10px;
    }

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

    .facility-image-lg,
    .facility-image:not(.facility-image-lg) {
        grid-column: span 12;
        min-height: 250px;
    }

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

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

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

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }
}

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

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
