/* ===== CSS Custom Properties ===== */
:root {
    --color-terracotta-50: #fef7f4;
    --color-terracotta-100: #fdecd4;
    --color-terracotta-200: #fad3a8;
    --color-terracotta-300: #f5b074;
    --color-terracotta-400: #ee8540;
    --color-terracotta-500: #e06020;
    --color-terracotta-600: #c44415;
    --color-terracotta-700: #a13210;
    --color-terracotta-800: #822a10;
    --color-terracotta-900: #6a2410;
    
    --color-sand-50: #fefdfb;
    --color-sand-100: #fdf6e8;
    --color-sand-200: #faedce;
    --color-sand-300: #f4d9a0;
    --color-sand-400: #eabf6a;
    --color-sand-500: #dfaa4a;
    --color-sand-600: #c88a2e;
    --color-sand-700: #a66b1f;
    --color-sand-800: #87541c;
    --color-sand-900: #704519;
    
    --color-cream: #fffbf5;
    --color-warm-white: #fefaf5;
    --color-dark: #2c1810;
    --color-dark-soft: #4a3228;
    --color-text: #3d2518;
    --color-text-light: #7a5c4e;
    --color-text-muted: #9a7d70;
    
    --color-border: #f0dcc8;
    --color-border-light: #f8ece0;
    
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06), 0 1px 2px rgba(44, 24, 16, 0.04);
    --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.08), 0 2px 4px rgba(44, 24, 16, 0.04);
    --shadow-lg: 0 12px 32px rgba(44, 24, 16, 0.10), 0 4px 12px rgba(44, 24, 16, 0.05);
    --shadow-xl: 0 20px 48px rgba(44, 24, 16, 0.12), 0 8px 16px rgba(44, 24, 16, 0.06);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 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.65;
    color: var(--color-text);
    background-color: var(--color-cream);
    -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;
}

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

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-terracotta-600);
    background: var(--color-terracotta-100);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.btn-primary {
    background: var(--color-terracotta-600);
    color: #fff;
    box-shadow: 0 4px 16px rgba(196, 68, 21, 0.3);
}

.btn-primary:hover {
    background: var(--color-terracotta-700);
    box-shadow: 0 6px 24px rgba(196, 68, 21, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
    backdrop-filter: blur(8px);
    border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
    background: #fff;
    border-color: var(--color-terracotta-300);
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--color-terracotta-600);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 245, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 251, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-dark);
    line-height: 1.2;
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-terracotta-100);
    border-radius: var(--radius-sm);
    color: var(--color-terracotta-600);
}

.logo-accent {
    color: var(--color-terracotta-600);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 8px 16px;
    border-radius: 100px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-terracotta-600);
    background: var(--color-terracotta-50);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-terracotta-600);
    background: var(--color-terracotta-100);
    padding: 8px 18px;
    border-radius: 100px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-terracotta-200);
    color: var(--color-terracotta-700);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before {
    position: absolute;
    top: -6px;
}

.hamburger::after {
    position: absolute;
    bottom: -6px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-sand-100) 0%, var(--color-terracotta-50) 50%, var(--color-sand-200) 100%);
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--color-terracotta-600) 1px, transparent 0);
    background-size: 32px 32px;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-terracotta-700);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid var(--color-terracotta-100);
}

.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 20px;
}

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

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 36px;
}

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

/* Hero Cards */
.hero-cards {
    position: relative;
    height: 520px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.hero-card--main {
    width: 320px;
    height: 400px;
    top: 20px;
    right: 0;
}

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

.hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.85) 0%, rgba(44, 24, 16, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #fff;
}

.hero-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-sand-300);
    margin-bottom: 8px;
}

.hero-card-overlay h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.hero-card-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-card--float {
    display: flex;
    align-items: center;
    padding: 16px 22px;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card--sand {
    background: var(--color-sand-200);
    color: var(--color-dark);
    top: 0;
    left: -20px;
    z-index: 2;
}

.hero-card--terracotta {
    background: var(--color-terracotta-600);
    color: #fff;
    bottom: 120px;
    left: -30px;
    z-index: 3;
}

.hero-card--cream {
    background: #fff;
    color: var(--color-dark);
    bottom: 30px;
    right: -10px;
    z-index: 2;
}

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

.float-stat-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1;
}

.float-stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--color-cream);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 100px 0;
    background: var(--color-cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

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

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

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

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

.menu-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 100px;
}

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

.menu-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 14px;
}

.menu-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-terracotta-700);
    background: var(--color-terracotta-100);
    padding: 4px 12px;
    border-radius: 100px;
}

.menu-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--color-sand-100);
    border: 1px solid var(--color-sand-200);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.menu-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-terracotta-500);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--color-warm-white);
}

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

.about-images {
    position: relative;
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-warm-white);
}

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

.about-img-accent {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 72px;
    height: 72px;
    background: var(--color-terracotta-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

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

.value-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===== Community Section ===== */
.community-section {
    padding: 100px 0;
    background: var(--color-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-terracotta-100) 0%, var(--color-sand-200) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta-600);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== Visit Section ===== */
.visit-section {
    padding: 100px 0;
    background: var(--color-warm-white);
}

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

.visit-info .section-title {
    text-align: left;
}

.visit-description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
    text-decoration: none;
}

.contact-card:hover {
    border-color: var(--color-terracotta-300);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

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

.contact-card-content {
    flex: 1;
}

.contact-card-content strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-card-content span {
    font-size: 0.95rem;
    color: var(--color-dark);
    font-weight: 500;
    line-height: 1.5;
}

.contact-card-arrow {
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.contact-card:hover .contact-card-arrow {
    color: var(--color-terracotta-600);
    transform: translateX(4px);
}

.visit-map {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.map-placeholder {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-sand-100) 0%, var(--color-terracotta-50) 100%);
}

.map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--color-terracotta-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.map-placeholder h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.map-placeholder p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-map {
    display: inline-flex;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--color-terracotta-700);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 28px 28px;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 36px;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

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

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

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-terracotta-300);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

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

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-terracotta-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p {
    margin: 0;
}

/* ===== Scroll Reveal ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: no-preference) {
    [data-reveal].revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Not revealed by default for progressive enhancement */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-cards {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-values {
        max-width: 480px;
        margin: 36px auto 0;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visit-info .section-title {
        text-align: center;
    }
    
    .visit-description {
        text-align: center;
    }
    
    .contact-cards {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 251, 245, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-cards {
        height: 360px;
    }
    
    .hero-card--main {
        width: 260px;
        height: 320px;
    }
    
    .hero-card--sand {
        left: 0;
    }
    
    .hero-card--terracotta {
        left: -10px;
    }
    
    .hero-card--cream {
        right: 0;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 48px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }
    
    .about-img-accent {
        top: -10px;
        right: 10px;
        width: 56px;
        height: 56px;
    }
    
    .about-img-accent svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-cards {
        height: 320px;
    }
    
    .hero-card--main {
        width: 220px;
        height: 280px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-section,
    .about-section,
    .community-section,
    .visit-section {
        padding: 72px 0;
    }
    
    .cta-section {
        padding: 72px 0;
    }
}
