/* ============================================
   Isla De Café — Styles
   Emerald Green + Cream · Vibrant Modern
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
    --emerald: #0D6E3F;
    --emerald-dark: #094D2B;
    --emerald-light: #11A85E;
    --emerald-pale: #E8F5ED;
    --cream: #FDF6E3;
    --cream-dark: #F5E6C8;
    --cream-light: #FFFCF5;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --warm-gray: #6B6560;
    --warm-gray-light: #9E9790;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(13, 110, 63, 0.08);
    --shadow-md: 0 8px 30px rgba(13, 110, 63, 0.12);
    --shadow-lg: 0 20px 60px rgba(13, 110, 63, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream-light);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
    font-weight: 700;
}

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

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

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

/* ---------- Geometric Background Shapes ---------- */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--emerald);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--emerald-light);
    bottom: 10%;
    left: -100px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid var(--emerald);
    top: 50%;
    right: -80px;
    transform: rotate(15deg);
    opacity: 0.04;
}

.geo-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--emerald) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    bottom: 30%;
    left: 5%;
    opacity: 0.08;
}

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

.btn-primary {
    background: var(--emerald);
    color: var(--cream);
    box-shadow: 0 4px 15px rgba(13, 110, 63, 0.3);
}

.btn-primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 63, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--cream);
    transform: translateY(-2px);
}

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

/* ---------- Eyebrow / Section Labels ---------- */
.eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: middle;
}

.about-eyebrow,
.space-eyebrow,
.visit-eyebrow,
.menu-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald);
}

/* ---------- Section Titles ---------- */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--charcoal);
    margin-bottom: 24px;
}

.title-accent {
    color: var(--emerald);
    font-style: italic;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 246, 227, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
    transition: var(--transition);
}

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

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

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: var(--transition);
}

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

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

.nav-cta {
    padding: 10px 22px;
    background: var(--emerald);
    color: var(--cream) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

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

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

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 50%, var(--emerald-pale) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

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

/* Hero Content */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--emerald);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-light);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.headline-accent {
    color: var(--emerald);
    font-style: italic;
    display: block;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 36px;
}

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

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

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--warm-gray);
    box-shadow: var(--shadow-sm);
}

.pill svg {
    color: var(--emerald);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

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

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

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

.hero-img-main {
    width: 340px;
    height: 460px;
    top: 20px;
    right: 40px;
    z-index: 2;
}

.hero-img-float {
    width: 240px;
    height: 180px;
    bottom: 60px;
    left: 0;
    z-index: 3;
    border-radius: var(--radius-md);
    border: 4px solid var(--white);
}

.hero-img-accent {
    width: 200px;
    height: 140px;
    top: 0;
    left: 60px;
    z-index: 1;
    border-radius: var(--radius-md);
    opacity: 0.9;
}

.geo-accent {
    position: absolute;
    pointer-events: none;
}

.geo-accent-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--emerald);
    opacity: 0.15;
    bottom: 20px;
    right: 0;
}

.geo-accent-dots {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--emerald) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
    top: 30px;
    right: 20px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-gray-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--emerald), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- About Section ---------- */
.about {
    padding: 120px 24px;
    background: var(--cream-light);
    position: relative;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.about-text {
    max-width: 520px;
}

.about-text .section-title {
    margin-bottom: 28px;
}

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

.about-visual {
    position: relative;
}

.about-img-grid {
    position: relative;
    height: 600px;
}

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

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

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

.about-img-1 {
    position: absolute;
    width: 280px;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    position: absolute;
    width: 260px;
    height: 200px;
    bottom: 60px;
    right: 0;
    z-index: 3;
    border: 4px solid var(--cream-light);
}

.about-stat {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald);
    color: var(--cream);
    padding: 20px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 4;
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
}

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

.feature-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.feature-block h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.feature-block p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* ---------- Menu Section ---------- */
.menu {
    padding: 120px 24px;
    background: var(--emerald);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(253, 246, 227, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(17, 168, 94, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.menu .menu-eyebrow {
    justify-content: center;
    color: var(--cream);
}

.menu .eyebrow-line {
    background: var(--cream);
}

.menu-title {
    color: var(--cream);
    margin-bottom: 16px;
}

.menu-intro {
    font-size: 1.125rem;
    color: rgba(253, 246, 227, 0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(253, 246, 227, 0.65);
    background: transparent;
    border: 1.5px solid rgba(253, 246, 227, 0.25);
    transition: var(--transition);
}

.menu-tab:hover {
    color: var(--cream);
    border-color: rgba(253, 246, 227, 0.5);
}

.menu-tab.active {
    background: var(--cream);
    color: var(--emerald);
    border-color: var(--cream);
}

/* Menu panels */
.menu-content {
    position: relative;
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-panel.active {
    display: block;
}

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

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

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(253, 246, 227, 0.08);
    border: 1px solid rgba(253, 246, 227, 0.12);
    border-radius: var(--radius-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    background: rgba(253, 246, 227, 0.14);
    transform: translateY(-2px);
    border-color: rgba(253, 246, 227, 0.25);
}

.menu-item-info {
    flex: 1;
}

.menu-item-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
}

.menu-item-info p {
    font-size: 0.875rem;
    color: rgba(253, 246, 227, 0.6);
    line-height: 1.5;
}

.menu-item-visual {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.menu-item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Space Section ---------- */
.space {
    padding: 120px 24px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.space-container {
    max-width: 1280px;
    margin: 0 auto;
}

.space-header {
    margin-bottom: 60px;
}

.space .space-eyebrow {
    margin-bottom: 16px;
}

.space-title {
    margin-bottom: 0;
}

.space-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.space-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

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

.space-card:hover img {
    transform: scale(1.08);
}

.space-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.space-card:hover .space-card-overlay {
    opacity: 1;
}

.space-card-overlay p {
    color: var(--cream);
    font-size: 0.9375rem;
    font-weight: 500;
}

.space-card-wide {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.space-card-tall {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
}

.space-card-small {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.space-card-medium {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
}

/* ---------- Visit Section ---------- */
.visit {
    padding: 120px 24px;
    background: var(--cream-light);
    position: relative;
}

.visit-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.visit-info {
    max-width: 520px;
}

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

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

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

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

.visit-detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald);
    margin-bottom: 4px;
}

.visit-detail p,
.visit-detail a {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

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

/* Map */
.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    background: var(--emerald-pale);
    border: 2px dashed var(--emerald);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.map-icon {
    color: var(--emerald);
    margin: 0 auto 16px;
    opacity: 0.6;
}

.map-placeholder p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

/* Form */
.visit-form-wrapper {
    position: sticky;
    top: 100px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-card > p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(13, 110, 63, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

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

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--emerald-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-success p {
    color: var(--warm-gray);
    font-size: 0.9375rem;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 80px 24px 32px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(253, 246, 227, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cream);
    transition: var(--transition);
}

.footer-logo:hover {
    color: var(--cream);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-light);
    margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.9375rem;
    color: rgba(253, 246, 227, 0.6);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover,
.footer-col span:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 246, 227, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(253, 246, 227, 0.4);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s 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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .hero-visual {
        height: 480px;
    }
    
    .hero-img-main {
        width: 280px;
        height: 380px;
    }
    
    .hero-img-float {
        width: 200px;
        height: 150px;
    }
    
    .hero-img-accent {
        width: 170px;
        height: 120px;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .space-gallery {
        grid-template-rows: repeat(2, 240px);
    }
    
    .visit-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
    }
    
    /* Hero */
    .hero {
        padding: 100px 24px 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        height: 360px;
        order: -1;
    }
    
    .hero-img-main {
        width: 200px;
        height: 260px;
        right: 20px;
        top: 10px;
    }
    
    .hero-img-float {
        width: 150px;
        height: 110px;
        bottom: 30px;
        left: 10px;
    }
    
    .hero-img-accent {
        width: 130px;
        height: 90px;
        left: 30px;
        top: 0;
    }
    
    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }
    
    .hero-pills {
        flex-direction: column;
        gap: 8px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* About */
    .about {
        padding: 80px 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-img-grid {
        height: 400px;
    }
    
    .about-img-1 {
        width: 200px;
        height: 280px;
    }
    
    .about-img-2 {
        width: 180px;
        height: 140px;
    }
    
    .features-strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-block {
        padding: 24px;
    }
    
    /* Menu */
    .menu {
        padding: 80px 24px;
    }
    
    .menu-tabs {
        gap: 6px;
    }
    
    .menu-tab {
        padding: 10px 16px;
        font-size: 0.8125rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* Space */
    .space {
        padding: 80px 24px;
    }
    
    .space-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .space-card-wide,
    .space-card-tall,
    .space-card-small,
    .space-card-medium {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 240px;
    }
    
    .space-card-tall {
        height: 300px;
    }
    
    .space-card-overlay {
        opacity: 1;
    }
    
    /* Visit */
    .visit {
        padding: 80px 24px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit-form-wrapper {
        position: static;
    }
    
    .form-card {
        padding: 28px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 24px 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero {
        padding: 90px 20px 60px;
    }
    
    .hero-visual {
        height: 280px;
    }
    
    .hero-img-main {
        width: 160px;
        height: 220px;
    }
    
    .hero-img-float {
        width: 120px;
        height: 90px;
    }
    
    .hero-img-accent {
        width: 110px;
        height: 75px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
        padding: 12px 24px;
    }
    
    .about-img-grid {
        height: 300px;
    }
    
    .about-img-1 {
        width: 160px;
        height: 220px;
    }
    
    .about-img-2 {
        width: 140px;
        height: 110px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .menu-tabs {
        flex-wrap: wrap;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
