/* ========================================
   MARICRUZ MAXEY — CSS
   Classic & Elegant · Terracotta + Sand
   ======================================== */

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

:root {
    --terracotta: #B85C38;
    --terracotta-dark: #9A4B2C;
    --terracotta-light: #D4845E;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #C4A882;
    --cream: #FDF8F3;
    --espresso: #3C2415;
    --espresso-light: #5C3D2E;
    --warm-gray: #8B7355;
    --warm-gray-light: #B5A088;
    --white: #FFFFFF;
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(60, 36, 21, 0.06), 0 1px 2px rgba(60, 36, 21, 0.04);
    --shadow-md: 0 4px 16px rgba(60, 36, 21, 0.08), 0 2px 6px rgba(60, 36, 21, 0.04);
    --shadow-lg: 0 12px 40px rgba(60, 36, 21, 0.12), 0 4px 12px rgba(60, 36, 21, 0.06);
    --shadow-xl: 0 20px 60px rgba(60, 36, 21, 0.14), 0 8px 20px rgba(60, 36, 21, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--espresso);
    background-color: var(--cream);
    line-height: 1.7;
    -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;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- ACCENT BAR ---------- */
.accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta-dark), var(--terracotta), var(--terracotta-light), var(--terracotta), var(--terracotta-dark));
}

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.text-terracotta {
    color: var(--terracotta);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--espresso);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 13px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(184, 92, 56, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    box-shadow: 0 6px 20px rgba(184, 92, 56, 0.4);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--espresso);
    border: 1.5px solid var(--sand-dark);
}

.btn-ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-1px);
}

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

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(196, 168, 130, 0.2);
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 243, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 68px;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--espresso);
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--warm-gray);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--terracotta);
    background: rgba(184, 92, 56, 0.06);
}

.nav-cta-btn {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    background: var(--terracotta);
    padding: 9px 22px;
    border-radius: 50px;
    margin-left: 8px;
    transition: all var(--transition);
}

.nav-cta-btn:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--espresso);
    border-radius: 2px;
    transition: all var(--transition);
}

.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-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(60, 36, 21, 0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: linear-gradient(160deg, var(--cream) 0%, var(--sand-light) 50%, var(--sand) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(184, 92, 56, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(196, 168, 130, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

/* Main hero card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-xl);
    max-width: 620px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(196, 168, 130, 0.15);
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    background: var(--sand-light);
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-card-badge svg {
    color: var(--terracotta);
}

.hero-card-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.hero-card-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--espresso);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-card-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 32px;
    max-width: 480px;
}

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

.hero-card-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--warm-gray-light);
}

.hero-card-hours svg {
    color: var(--sand-dark);
}

/* Floating stat cards */
.hero-float {
    position: relative;
    z-index: 3;
}

.float-card-inner {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(196, 168, 130, 0.12);
    transition: all var(--transition);
}

.float-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.float-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(184, 92, 56, 0.1), rgba(184, 92, 56, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.float-card-icon--cocktail {
    background: linear-gradient(135deg, rgba(184, 92, 56, 0.12), rgba(184, 92, 56, 0.04));
}

.float-card-icon--heart {
    background: linear-gradient(135deg, rgba(184, 92, 56, 0.1), rgba(184, 92, 56, 0.05));
}

.float-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 2px;
}

.float-card-value {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--espresso);
    line-height: 1.3;
}

/* Hero layout on desktop */
@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: stretch;
    }

    .hero-card {
        align-self: center;
    }

    .hero-float-1 {
        position: absolute;
        top: 60px;
        right: -20px;
        animation: float1 6s ease-in-out infinite;
    }

    .hero-float-2 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -10px;
        animation: float2 7s ease-in-out infinite;
    }

    .hero-float-3 {
        position: absolute;
        bottom: 60px;
        right: -20px;
        animation: float3 5.5s ease-in-out infinite;
    }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(6px); }
}

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

/* Mobile layout */
@media (max-width: 1023px) {
    .hero-float-1 {
        order: 3;
    }
    .hero-float-2 {
        order: 4;
    }
    .hero-float-3 {
        order: 5;
    }
    .hero-card {
        order: 2;
    }
    .hero-float {
        max-width: 340px;
    }
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-image-wrap {
    position: relative;
}

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

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

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

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

.about-image-seal {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 72px;
    height: 72px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.about-image-seal svg {
    margin-bottom: 2px;
}

.about-image-seal span {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-content {
    padding: 10px 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--warm-gray);
    margin-bottom: 18px;
}

.about-signature {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--sand);
}

.signature-line {
    width: 48px;
    height: 2px;
    background: var(--terracotta);
    margin-bottom: 14px;
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    color: var(--espresso);
}

.signature-role {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-top: 4px;
}

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

/* ---------- MENU ---------- */
.menu {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--sand-light) 0%, var(--cream) 100%);
}

.menu-header {
    text-align: center;
    margin-bottom: 56px;
}

.menu-header .section-desc {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(196, 168, 130, 0.12);
    transition: all var(--transition);
}

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

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px;
}

.menu-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(184, 92, 56, 0.12), rgba(184, 92, 56, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--espresso);
}

.menu-card-subtitle {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sand);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--espresso);
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--warm-gray-light);
    margin-top: 40px;
    font-style: italic;
}

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

/* ---------- EXPERIENCE ---------- */
.experience {
    padding: 100px 0;
    background: var(--white);
}

.experience-header {
    text-align: center;
    margin-bottom: 56px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.exp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(196, 168, 130, 0.12);
    transition: all var(--transition);
}

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

.exp-card-img {
    overflow: hidden;
    height: 240px;
}

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

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

.exp-card-body {
    padding: 28px 32px 32px;
}

.exp-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--espresso);
    margin-bottom: 12px;
}

.exp-card-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-gray);
}

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

/* ---------- VISIT / CONTACT ---------- */
.visit {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--sand) 0%, var(--sand-light) 100%);
}

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

.visit-info {
    padding: 10px 0;
}

.visit-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 36px;
    max-width: 480px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.visit-detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 4px;
}

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

.visit-detail-value a {
    color: var(--terracotta);
    transition: color var(--transition);
}

.visit-detail-value a:hover {
    color: var(--terracotta-dark);
    text-decoration: underline;
}

.visit-map-btn {
    margin-top: 8px;
}

/* Contact form */
.visit-form-wrap {
    max-width: 520px;
    width: 100%;
}

.visit-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(196, 168, 130, 0.15);
}

.visit-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--espresso);
    margin-bottom: 6px;
}

.visit-form-subtitle {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--espresso);
    background: var(--sand-light);
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--sand-dark);
}

.form-input:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 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='%238B7355' 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 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form success state */
.form-success {
    display: none;
    text-align: center;
    padding: 32px 16px;
}

.form-success.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(184, 92, 56, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--espresso);
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

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

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

/* ---------- FOOTER ---------- */
.footer {
    background: var(--espresso);
    color: var(--sand);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sand);
    margin-bottom: 14px;
}

.footer-logo-icon {
    color: var(--terracotta-light);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--warm-gray-light);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand-dark);
    margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--sand);
    transition: color var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--sand);
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--terracotta-light);
}

.footer-contact a {
    color: var(--sand);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--terracotta-light);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(196, 168, 130, 0.15);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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; }
