/* ============================================
   La Casa De Mi Mama LLC — Custom Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

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

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

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

ul {
    list-style: none;
}

/* --- Geometric Background --- */
.geo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: #1B4332;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -100px;
}

.geo-tri {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.03;
}

.geo-tri--1 {
    border-style: solid;
    border-width: 0 80px 140px 80px;
    border-color: transparent transparent #1B4332 transparent;
    top: 30%;
    right: 5%;
    transform: rotate(15deg);
}

.geo-tri--2 {
    border-style: solid;
    border-width: 100px 60px 0 60px;
    border-color: #1B4332 transparent transparent transparent;
    bottom: 25%;
    left: 8%;
    transform: rotate(-20deg);
}

.geo-sq {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #1B4332;
    opacity: 0.03;
    top: 55%;
    right: 12%;
    transform: rotate(45deg);
}

.geo-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #1B4332;
    border-radius: 50%;
    opacity: 0.04;
    bottom: 40%;
    right: 2%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(253, 251, 247, 0.95);
    box-shadow: 0 4px 30px rgba(27, 67, 50, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1B4332;
    flex-shrink: 0;
}

.nav-logo-icon {
    color: #1B4332;
    width: 32px;
    height: 32px;
}

.nav-logo-text {
    display: none;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1B4332;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(27, 67, 50, 0.08);
}

.nav-link.active {
    color: #1B4332;
    background: rgba(27, 67, 50, 0.1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #1B4332;
    color: #FDFBF7;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #163628;
    transform: translateY(-1px);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: #1B4332;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-logo-text {
        display: block;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(27, 67, 50, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0, 1), opacity 0.35s ease;
        pointer-events: none;
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-logo-text {
        display: block;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #1B4332;
    color: #FDFBF7;
}

.btn--primary:hover {
    background: #163628;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 67, 50, 0.3);
}

.btn--ghost {
    background: transparent;
    color: #1B4332;
    border: 2px solid rgba(27, 67, 50, 0.3);
}

.btn--ghost:hover {
    border-color: #1B4332;
    background: rgba(27, 67, 50, 0.05);
}

.btn--outline {
    background: transparent;
    color: #1B4332;
    border: 2px solid #1B4332;
}

.btn--outline:hover {
    background: #1B4332;
    color: #FDFBF7;
}

.btn--accent {
    background: #E07A5F;
    color: #FDFBF7;
}

.btn--accent:hover {
    background: #C25A3E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.35);
}

.btn--ghost-light {
    background: rgba(255, 255, 255, 0.15);
    color: #FDFBF7;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* --- Hero --- */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5EDE0 50%, #EDD9C4 100%);
}

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

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(27, 67, 50, 0.08);
    border: 1px solid rgba(27, 67, 50, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1B4332;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #1B4332;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #0c1e16;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: #1B4332;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #112a1f;
    opacity: 0.8;
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

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

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B4332;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #112a1f;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(27, 67, 50, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(27, 67, 50, 0.15);
    aspect-ratio: 520/640;
}

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

.hero-img-accent {
    position: absolute;
    bottom: -24px;
    left: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(27, 67, 50, 0.2);
    border: 4px solid #FDFBF7;
    aspect-ratio: 280/200;
    width: 200px;
}

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

.hero-dot-pattern {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, #1B4332 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.15;
    position: absolute;
    top: -30px;
    right: -20px;
}

.hero-geo-accent {
    position: absolute;
    top: 20px;
    right: -50px;
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    z-index: 0;
}

.hero-shape--tri {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 100px 60px;
    border-color: transparent transparent rgba(27, 67, 50, 0.06) transparent;
    top: 15%;
    left: -30px;
    transform: rotate(-15deg);
}

.hero-shape--circ {
    width: 200px;
    height: 200px;
    background: rgba(27, 67, 50, 0.04);
    border-radius: 50%;
    bottom: 10%;
    right: -60px;
}

.hero-shape--rect {
    width: 80px;
    height: 80px;
    background: rgba(224, 122, 95, 0.08);
    top: 20%;
    right: 10%;
    transform: rotate(45deg);
    border-radius: 8px;
}

@media (max-width: 1023px) {
    .hero-visual {
        order: -1;
        max-width: 400px;
    }
    
    .hero-img-accent {
        left: -20px;
        bottom: -16px;
        width: 160px;
    }
}

/* --- Marquee --- */
.marquee {
    background: #1B4332;
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(253, 251, 247, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Shared --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E07A5F;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0c1e16;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #112a1f;
    opacity: 0.75;
    max-width: 560px;
}

/* --- Menu --- */
.menu {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.menu-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

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

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.menu-cat {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1B4332;
    border: 2px solid rgba(27, 67, 50, 0.2);
    border-radius: 50px;
    transition: all 0.2s ease;
}

.menu-cat:hover {
    border-color: #1B4332;
    background: rgba(27, 67, 50, 0.05);
}

.menu-cat.active {
    background: #1B4332;
    color: #FDFBF7;
    border-color: #1B4332;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.menu-card {
    background: #FDFBF7;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(27, 67, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(27, 67, 50, 0.12);
}

.menu-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: rgba(27, 67, 50, 0.9);
    color: #FDFBF7;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.menu-card-body {
    padding: 24px;
}

.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0c1e16;
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #112a1f;
    opacity: 0.7;
}

.menu-footer {
    margin-top: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.menu-footer-text {
    font-size: 0.9rem;
    color: #112a1f;
    opacity: 0.6;
    font-style: italic;
}

/* --- About --- */
.about {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    background: #1B4332;
    color: #FDFBF7;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(253, 251, 247, 0.03);
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(224, 122, 95, 0.06);
    border-radius: 50%;
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr 1.1fr;
        gap: 80px;
    }
}

.about-visual {
    position: relative;
}

.about-img-stack {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 500/620;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid #1B4332;
    aspect-ratio: 300/220;
    width: 200px;
}

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

.about-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #E07A5F;
    color: #FDFBF7;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.4);
}

.about-badge svg {
    animation: heart-beat 1.5s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
}

.about-content .section-label {
    color: #D4A373;
}

.about-content .section-title {
    color: #FDFBF7;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E07A5F, #D4A373);
    border-radius: 3px;
    margin-bottom: 32px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(253, 251, 247, 0.8);
    margin-bottom: 20px;
}

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

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

.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(253, 251, 247, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A373;
}

.about-value-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FDFBF7;
    margin-bottom: 4px;
}

.about-value-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(253, 251, 247, 0.6);
}

/* --- Visit --- */
.visit {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.visit-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

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

.visit-content .section-title {
    margin-bottom: 40px;
}

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

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

.visit-detail-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4332;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1B4332;
    opacity: 0.5;
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #0c1e16;
}

.visit-detail-value a {
    color: #1B4332;
    font-weight: 600;
    transition: color 0.2s ease;
}

.visit-detail-value a:hover {
    color: #E07A5F;
}

.visit-hours-closed {
    display: block;
    font-size: 0.85rem;
    color: #E07A5F;
    font-weight: 600;
    margin-top: 4px;
}

.visit-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(27, 67, 50, 0.1);
    position: relative;
}

.visit-map-link {
    display: block;
    position: relative;
    aspect-ratio: 560/420;
}

.visit-map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visit-map-link:hover .visit-map-overlay {
    opacity: 1;
}

.visit-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #FDFBF7;
    color: #1B4332;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s ease;
}

.visit-map-link:hover .visit-map-btn {
    transform: scale(1.05);
}

/* --- Contact --- */
.contact {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    background: #F5EDE0;
    overflow: hidden;
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

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

.contact-content .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #112a1f;
    opacity: 0.75;
    margin-bottom: 36px;
}

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

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

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

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1B4332;
}

.form-input {
    padding: 14px 16px;
    background: #FDFBF7;
    border: 2px solid rgba(27, 67, 50, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #0c1e16;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(27, 67, 50, 0.35);
}

.form-input:focus {
    border-color: #1B4332;
    box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.1);
}

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

.form-note {
    font-size: 0.8rem;
    color: #112a1f;
    opacity: 0.5;
    margin-top: 12px;
    text-align: center;
}

/* Contact Success */
.contact-success {
    text-align: center;
    padding: 48px 24px;
}

.contact-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4332;
}

.contact-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0c1e16;
    margin-bottom: 8px;
}

.contact-success-text {
    font-size: 1rem;
    color: #112a1f;
    opacity: 0.7;
    margin-bottom: 24px;
}

.contact-success-btn {
    margin: 0 auto;
}

.contact-visual {
    position: relative;
}

.contact-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(27, 67, 50, 0.12);
    aspect-ratio: 480/600;
}

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

.contact-geo {
    position: absolute;
    bottom: -20px;
    left: -30px;
}

.contact-dot-grid {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #1B4332 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.12;
    transform: rotate(15deg);
}

/* --- CTA --- */
.cta {
    padding: 100px 24px;
    background: #1B4332;
    position: relative;
    overflow: hidden;
}

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

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

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

.cta-shape--1 {
    width: 300px;
    height: 300px;
    background: rgba(253, 251, 247, 0.03);
    top: -80px;
    left: -80px;
}

.cta-shape--2 {
    width: 200px;
    height: 200px;
    background: rgba(224, 122, 95, 0.08);
    bottom: -60px;
    right: -40px;
}

.cta-shape--3 {
    width: 100px;
    height: 100px;
    background: rgba(212, 163, 115, 0.1);
    top: 30%;
    right: 15%;
    border-radius: 20px;
    transform: rotate(45deg);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #FDFBF7;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(253, 251, 247, 0.7);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* --- Footer --- */
.footer {
    background: #0c1e16;
    color: rgba(253, 251, 247, 0.7);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FDFBF7;
    margin-bottom: 12px;
}

.footer-logo-icon {
    color: #D4A373;
    width: 32px;
    height: 32px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 48px;
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #D4A373;
    margin-bottom: 16px;
}

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

.footer-col-list a {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    opacity: 0.7;
}

.footer-col-list a:hover {
    color: #FDFBF7;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 247, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-loc {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .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 */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .marquee-track {
        animation: none;
    }
}
