/* ============================================
   FOOTBRIDGE LOFT — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --teal-300: #5EEAD4;
    --teal-400: #2DD4BF;
    --teal-500: #14B8A6;
    --teal-600: #0D9488;
    --teal-700: #0F766E;
    --teal-800: #115E59;
    --teal-900: #134E4A;
    
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --slate-950: #080E1A;
    
    --white: #FFFFFF;
    --black: #000000;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.15);
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background-color: var(--slate-50);
    line-height: 1.6;
    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 {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
}

/* --- Section Shared --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-700);
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--teal-600);
    font-style: italic;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-600);
    line-height: 1.7;
    max-width: 560px;
}

.section-header {
    margin-bottom: 56px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 72px;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

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

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

.btn-outline:hover {
    border-color: var(--teal-500);
    color: var(--teal-700);
    background: rgba(13, 148, 136, 0.04);
}

.btn-teal {
    background: var(--teal-600);
    color: var(--white);
    border: none;
}

.btn-teal:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: box-shadow var(--transition-base);
}

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

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-inner {
        padding: 0 40px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--slate-900);
}

.nav-logo-icon {
    color: var(--teal-600);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--teal-600);
}

.nav-cta {
    background: var(--teal-600) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    transition: all var(--transition-base) !important;
}

.nav-cta:hover {
    background: var(--teal-700) !important;
    color: var(--white) !important;
}

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

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-800);
    padding: 12px 0;
    transition: color var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--teal-600);
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    background: var(--teal-600);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
}

.mobile-menu-address {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ============================================
   HERO — Asymmetric Magazine-Style
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Geometric Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--teal-500);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--teal-400);
    bottom: 10%;
    left: -80px;
    border-radius: var(--radius-xl);
    transform: rotate(30deg);
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--teal-600);
    top: 40%;
    right: 35%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.12;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-inner {
        padding: 80px 40px 100px;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
    }
}

@media (min-width: 1024px) {
    .hero-inner {
        padding: 100px 48px 120px;
        gap: 64px;
    }
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    color: var(--teal-600);
    font-style: italic;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--slate-900);
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--slate-200);
}

/* Hero Image Column */
.hero-image-col {
    position: relative;
    display: grid;
    gap: 16px;
}

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

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

.hero-img-main {
    aspect-ratio: 600 / 750;
}

.hero-img-float {
    aspect-ratio: 400 / 280;
    margin-top: -60px;
    margin-left: 20px;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--slate-50);
}

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--teal-500);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

@media (min-width: 768px) {
    .hero-img-float {
        margin-top: -80px;
        margin-left: 40px;
    }
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms {
    padding: 80px 0 100px;
    background: var(--white);
}

@media (min-width: 768px) {
    .rooms {
        padding: 100px 0 120px;
    }
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

.room-card {
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    border: 1px solid var(--slate-100);
}

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

.room-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 500 / 350;
}

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

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

.room-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--slate-900);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.room-card-tag--teal {
    background: var(--teal-600);
}

.room-card-body {
    padding: 28px;
}

.room-card-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--slate-900);
}

.room-card-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.room-card-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.room-card-amenities li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--slate-700);
    font-weight: 500;
}

.room-card-amenities svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
    padding: 80px 0 100px;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .experience {
        padding: 100px 0 120px;
    }
}

.experience-bg-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.04) 0%, rgba(13, 148, 136, 0.01) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.experience-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .experience-layout {
        grid-template-columns: 1fr 0.8fr;
        gap: 56px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.feature-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(13, 148, 136, 0.2);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(13, 148, 136, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    margin-bottom: 14px;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Experience Images */
.experience-image-col {
    position: relative;
}

.experience-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 500 / 620;
}

.experience-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-img-accent {
    position: absolute;
    bottom: -32px;
    right: -16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--slate-50);
    aspect-ratio: 320 / 220;
}

.experience-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    padding: 80px 0 100px;
    background: var(--white);
}

@media (min-width: 768px) {
    .location {
        padding: 100px 0 120px;
    }
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .location-layout {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.location-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 148, 136, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

.location-highlight strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 2px;
}

.location-highlight span {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    min-height: 300px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: 80px 0;
    background: var(--teal-700);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.quote-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.quote-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.quote-decoration {
    color: var(--teal-300);
    margin-bottom: 24px;
    opacity: 0.6;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 28px;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.quote-author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--teal-200);
}

.quote-author-location {
    font-size: 0.8125rem;
    color: var(--teal-300);
    opacity: 0.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0 100px;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--teal-500);
    top: -150px;
    left: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--teal-400);
    bottom: -50px;
    right: 10%;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .cta-inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(13, 148, 136, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

.cta-contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.cta-contact-value {
    font-size: 1rem;
    color: var(--slate-800);
    font-weight: 500;
    line-height: 1.5;
}

.cta-contact-value a {
    color: var(--teal-700);
    transition: color var(--transition-fast);
}

.cta-contact-value a:hover {
    color: var(--teal-600);
}

/* Contact Form */
.cta-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-100);
}

.cta-form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--slate-900);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 560px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-700);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 12px 14px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    color: var(--slate-800);
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-group--full {
    margin-top: 4px;
}

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

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cta-form .btn {
    align-self: flex-start;
    margin-top: 8px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--teal-700);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 48px;
    }
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-logo svg {
    color: var(--teal-400);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--slate-400);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--slate-400);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--teal-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone,
.footer-email {
    font-size: 0.9375rem;
    color: var(--slate-400);
    transition: color var(--transition-fast);
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--teal-400);
}

.footer-address {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-top: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--slate-500);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

/* ============================================
   REDUCED MOTION — ensure content is visible
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
