/* ==========================================
   Turnaround Bar — Custom Styles
   Color Palette: Burgundy + Blush
   ========================================== */

/* CSS Custom Properties */
:root {
    --color-burgundy-50: #fdf2f6;
    --color-burgundy-100: #fce7ef;
    --color-burgundy-200: #f9d0df;
    --color-burgundy-300: #f2a3be;
    --color-burgundy-400: #e86a9a;
    --color-burgundy-500: #c44d78;
    --color-burgundy-600: #a33458;
    --color-burgundy-700: #8b1a4a;
    --color-burgundy-800: #721540;
    --color-burgundy-900: #5c1234;
    --color-burgundy-950: #3a0a20;
    
    --color-blush-50: #fef8f9;
    --color-blush-100: #fdf0f3;
    --color-blush-200: #fbe4ec;
    --color-blush-300: #f7cdd9;
    --color-cream: #fef9f4;
    --color-cream-dark: #fdf3eb;
    
    --color-text-primary: #1a0a10;
    --color-text-secondary: #4a2030;
    --color-text-muted: #7a4a5a;
    --color-text-light: #f8eef3;
    
    --color-bg-body: #fef9f7;
    --color-bg-warm: #fdf5f0;
    --color-bg-burgundy: #721540;
    --color-bg-dark: #2a0818;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(139, 26, 74, 0.06), 0 1px 2px rgba(139, 26, 74, 0.04);
    --shadow-md: 0 4px 16px rgba(139, 26, 74, 0.08), 0 2px 4px rgba(139, 26, 74, 0.04);
    --shadow-lg: 0 12px 40px rgba(139, 26, 74, 0.12), 0 4px 12px rgba(139, 26, 74, 0.06);
    --shadow-xl: 0 24px 60px rgba(139, 26, 74, 0.15);
}

/* 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.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

/* Section Label */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy-600);
    background: var(--color-burgundy-100);
    padding: 0.4em 1em;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
}

.section-label-light {
    color: var(--color-burgundy-200);
    background: rgba(255, 255, 255, 0.15);
}

/* Section Title */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.section-title-light {
    color: var(--color-text-light);
}

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

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

/* Section Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.9em 1.8em;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-burgundy-700);
    color: var(--color-text-light);
    box-shadow: 0 4px 14px rgba(139, 26, 74, 0.3);
}

.btn-primary:hover {
    background: var(--color-burgundy-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 26, 74, 0.35);
}

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

.btn-secondary:hover {
    background: var(--color-burgundy-50);
    border-color: var(--color-burgundy-400);
    transform: translateY(-2px);
}

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

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 249, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 26, 74, 0.08);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(254, 249, 247, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.nav-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--color-burgundy-700);
    color: var(--color-text-light);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

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

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-burgundy-500);
    transition: width 0.3s ease;
}

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

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

.nav-cta-btn {
    background: var(--color-burgundy-700);
    color: var(--color-text-light) !important;
    padding: 0.55em 1.3em;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.nav-cta-btn:hover {
    background: var(--color-burgundy-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 26, 74, 0.25);
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(58, 10, 32, 0.92) 0%,
        rgba(114, 21, 64, 0.85) 40%,
        rgba(139, 26, 74, 0.75) 70%,
        rgba(163, 52, 88, 0.65) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 10, 32, 0.3) 0%,
        transparent 40%,
        transparent 60%,
        rgba(58, 10, 32, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px var(--spacing-md) 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-burgundy-200);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5em 1.2em;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
}

.hero-accent {
    color: var(--color-burgundy-300);
    font-style: italic;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(248, 238, 243, 0.8);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

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

.hero-actions .btn-secondary {
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.6em;
    color: rgba(248, 238, 243, 0.7);
    font-size: 0.9rem;
}

.hero-detail svg {
    color: var(--color-burgundy-300);
    flex-shrink: 0;
}

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

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

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

/* ==========================================
   ABOUT
   ========================================== */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-body);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    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: 450px;
    object-fit: cover;
}

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

.about-img-secondary img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-burgundy-700);
    color: var(--color-text-light);
    padding: 1.2em 1.4em;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-experience-badge .experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-experience-badge .experience-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.2em;
}

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

.about-lead {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-body {
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

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

.about-feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2em;
    color: var(--color-text-primary);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================
   OFFERINGS
   ========================================== */
.offerings {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-warm);
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.offering-card {
    background: var(--color-bg-body);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.offering-img {
    overflow: hidden;
    height: 260px;
}

.offering-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.offering-body {
    padding: var(--spacing-lg);
}

.offering-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-burgundy-700), var(--color-burgundy-600));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.offering-body h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.offering-body > p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.offering-list {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}

.offering-list li {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 0.92rem;
    color: var(--color-text-secondary);
}

.offering-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-burgundy-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================
   COMMUNITY
   ========================================== */
.community {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-body);
}

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

.community-text {
    padding-right: var(--spacing-lg);
}

.community-body {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
}

.community-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

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

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

.stat-label {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-top: 0.3em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-burgundy-200);
}

.community-visual {
    position: relative;
}

.community-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

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

.comm-img-1 {
    grid-row: span 2;
}

.comm-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.comm-img-2 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* ==========================================
   VISIT / CTA
   ========================================== */
.visit {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-body);
}

.visit-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-burgundy-900) 0%, var(--color-burgundy-700) 50%, var(--color-burgundy-600) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visit-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.visit-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-xl);
}

.visit-text {
    padding: var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-body {
    color: rgba(248, 238, 243, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 400px;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.visit-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy-300);
}

.info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(248, 238, 243, 0.5);
    margin-bottom: 0.2em;
}

.info-value {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.info-link {
    color: var(--color-burgundy-200);
    transition: color 0.25s ease;
}

.info-link:hover {
    color: var(--color-text-light);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-warm);
}

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

.contact-info-side {
    padding: var(--spacing-lg) 0;
}

.contact-body {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

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

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 0.8em;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    padding: 0.8em 1.2em;
    background: var(--color-bg-body);
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.contact-direct-item:hover {
    color: var(--color-burgundy-700);
    border-color: var(--color-burgundy-200);
    box-shadow: var(--shadow-sm);
}

.contact-direct-item svg {
    color: var(--color-burgundy-500);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg-body);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 26, 74, 0.06);
}

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

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 0.5em;
}

.form-input {
    width: 100%;
    padding: 0.85em 1em;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    background: var(--color-bg-warm);
    border: 1.5px solid var(--color-burgundy-100);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.25s ease;
}

.form-input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.form-input:focus {
    border-color: var(--color-burgundy-400);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 26, 74, 0.08);
}

.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='%237a4a5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
}

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-bg-body);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 26, 74, 0.06);
}

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

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--color-burgundy-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy-600);
    margin-bottom: var(--spacing-md);
}

.form-success h3 {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-sm);
}

.form-success p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    max-width: 320px;
}

.btn-send-again {
    font-size: 0.85rem;
    padding: 0.6em 1.4em;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-bottom: var(--spacing-sm);
}

.footer-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-burgundy-600);
    color: var(--color-text-light);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.footer-tagline {
    color: rgba(248, 238, 243, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy-300);
    margin-bottom: var(--spacing-sm);
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(248, 238, 243, 0.6);
    padding: 0.3em 0;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: var(--color-text-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    font-size: 0.82rem;
    color: rgba(248, 238, 243, 0.35);
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 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; }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .about-grid,
    .offerings-grid,
    .community-content,
    .visit-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-img-secondary {
        right: 0;
        bottom: -30px;
    }
    
    .about-experience-badge {
        left: 10px;
        top: -15px;
    }
    
    .community-text {
        padding-right: 0;
    }
    
    .visit-content {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
        --spacing-3xl: 5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 249, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-sm);
        border-bottom: 1px solid rgba(139, 26, 74, 0.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-details {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-scroll {
        display: none;
    }
    
    .about-img-main img {
        height: 320px;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--spacing-sm);
        border: none;
        box-shadow: var(--shadow-md);
    }
    
    .about-img-secondary img {
        width: 100%;
        height: 200px;
    }
    
    .about-images {
        order: -1;
    }
    
    .offering-img {
        height: 220px;
    }
    
    .community-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .stat-divider {
        width: 48px;
        height: 1px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5em;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .visit-info {
        padding: var(--spacing-md);
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
}
