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

:root {
    --emerald-900: #064E3B;
    --emerald-800: #065F46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10B981;
    --cream-50: #FFF8F0;
    --cream-100: #FFF1E0;
    --cream-200: #FDE8C8;
    --cream-300: #F5D5A0;
    --stone-50: #FAFAF9;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --stone-300: #D6D3D1;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --stone-800: #292524;
    --stone-900: #1C1917;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream-50);
    color: var(--stone-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream-50);
    transition: color 0.3s;
}

.nav.scrolled .nav-logo {
    color: var(--emerald-900);
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--cream-50);
    color: var(--emerald-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.5px;
}

.nav.scrolled .nav-logo-mark {
    background: var(--emerald-900);
    color: var(--cream-50);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.3px;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 248, 240, 0.8);
    transition: color 0.3s;
    letter-spacing: 0.01em;
}

.nav.scrolled .nav-links a {
    color: var(--stone-600);
}

.nav-links a:hover {
    color: var(--cream-50);
}

.nav.scrolled .nav-links a:hover {
    color: var(--emerald-700);
}

.nav-cta {
    background: var(--cream-50);
    color: var(--emerald-900) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--emerald-900) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--cream-50);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav.scrolled .nav-toggle-bar {
    background: var(--emerald-900);
}

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

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #044733 0%, #064E3B 25%, #07694D 50%, #087F5B 75%, #059669 100%);
    padding: 120px 24px 80px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(16, 185, 129, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(4, 120, 87, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(6, 78, 59, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='80' cy='0' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='0' cy='80' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='80' cy='80' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding-right: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 248, 240, 0.12);
    border: 1px solid rgba(255, 248, 240, 0.2);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--cream-200);
    letter-spacing: 0.04em;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald-400, #34D399);
    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: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--cream-50);
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 248, 240, 0.75);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hero-image img {
    width: 420px;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

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

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream-50);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 248, 240, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 248, 240, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 248, 240, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--cream-50);
    color: var(--emerald-900);
}

.btn-primary:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--cream-50);
    border: 1.5px solid rgba(255, 248, 240, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 248, 240, 0.1);
    border-color: rgba(255, 248, 240, 0.6);
    transform: translateY(-2px);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--emerald-900);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 248, 240, 0.08);
    border-bottom: 1px solid rgba(255, 248, 240, 0.08);
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 248, 240, 0.5);
    white-space: nowrap;
    padding: 0 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.marquee-item:last-child {
    padding-right: 0;
}

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

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--stone-900);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.section-headline em {
    font-style: italic;
    color: var(--emerald-700);
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--cream-50);
}

.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-lg);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(6, 78, 59, 0.12);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(6, 78, 59, 0.15);
    border: 4px solid var(--cream-50);
}

.about-img-secondary img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -24px;
    left: -24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--emerald-700);
}

.about-accent svg {
    opacity: 0.3;
}

.about-accent span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-800);
}

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

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--stone-600);
    margin-bottom: 20px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--stone-200);
}

.about-signature-img {
    border-radius: var(--radius-sm);
    opacity: 0.7;
}

.about-signature-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--emerald-800);
}

/* ===== MENU ===== */
.menu {
    padding: 120px 0;
    background: var(--stone-50);
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.menu-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--stone-600);
}

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

.menu-card {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(6, 78, 59, 0.1);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.menu-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-900);
    color: var(--cream-50);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.menu-card-content {
    padding: 28px;
}

.menu-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.menu-card-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--stone-600);
    margin-bottom: 16px;
}

.menu-card-detail {
    font-size: 13px;
    font-weight: 500;
    color: var(--emerald-700);
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(6, 78, 59, 0.06);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--emerald-800);
}

.menu-note svg {
    flex-shrink: 0;
    color: var(--emerald-700);
}

/* ===== PROCESS ===== */
.process {
    padding: 120px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 10% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 90% 30%, rgba(4, 120, 87, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
}

.process .section-label {
    color: var(--cream-200);
}

.process .section-headline {
    color: var(--cream-50);
}

.process .section-headline em {
    color: var(--cream-200);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: left;
}

.process-step-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 248, 240, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.process-step p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 248, 240, 0.6);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0 80px;
    background: var(--cream-50);
}

.gallery-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item--large img {
    height: 420px;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(2) img {
    height: 200px;
}

.gallery-item:nth-child(3) {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(3) img {
    height: 200px;
}

.gallery-item:nth-child(4) {
    grid-column: 6 / 13;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(4) img {
    height: 200px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 3 / 4;
}

.gallery-item--wide img {
    height: 280px;
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 0;
    background: var(--stone-50);
}

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

.visit-content {
    padding-right: 20px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

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

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 78, 59, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.visit-detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit-detail-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone-600);
}

.visit-detail-value {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--stone-800);
    line-height: 1.5;
}

.visit-detail-link {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--emerald-700);
    transition: color 0.3s;
}

.visit-detail-link:hover {
    color: var(--emerald-900);
}

.visit-map {
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(6, 78, 59, 0.1);
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    background: var(--cream-50);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--stone-600);
    margin-top: 20px;
}

.cta-form-wrapper {
    background: var(--stone-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--stone-200);
}

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

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

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--stone-700);
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--stone-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--stone-800);
    background: var(--cream-50);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder {
    color: var(--stone-300);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 40px 20px;
}

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

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stone-900);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--stone-600);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--stone-900);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--emerald-700);
    color: var(--cream-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 13px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--cream-50);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cream-50);
}

.footer-links li:not(a) {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        padding-right: 32px;
    }

    .hero-image img {
        width: 340px;
        height: 440px;
    }

    .about-grid {
        gap: 56px;
    }

    .about-img-secondary {
        right: -20px;
        bottom: -24px;
    }

    .about-img-secondary img {
        width: 280px;
        height: 210px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .gallery-item--large img {
        height: 320px;
    }

    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(4) img {
        height: 160px;
    }

    .gallery-item--wide img {
        height: 220px;
    }

    .visit-grid {
        gap: 48px;
    }

    .cta-inner {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--emerald-900);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.2);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 248, 240, 0.8) !important;
        font-size: 16px;
    }

    .nav-links a:hover {
        color: var(--cream-50) !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: 100px 24px 100px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 48px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 280px;
        height: 360px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-img-main img {
        height: 400px;
    }

    .about-img-secondary {
        right: 0;
        bottom: -20px;
    }

    .about-img-secondary img {
        width: 220px;
        height: 165px;
    }

    .about-accent {
        top: -16px;
        left: -16px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large {
        grid-column: 1 / -1;
    }

    .gallery-item--large img {
        height: 260px;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
    }

    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(4) img {
        height: 180px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
    }

    .gallery-item--wide img {
        height: 200px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-content {
        padding-right: 0;
    }

    .visit-map {
        height: 320px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 20px 80px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-headline {
        font-size: 1.75rem;
    }

    .about, .menu, .process, .gallery, .visit, .cta {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }
}
