/* ==========================================================
   REN XIN VEGETARIAN - MODERN AESTHETIC STYLESHEET
   Nature-inspired, warm, organic design
   Mobile-first, fully responsive, no offset issues
   ========================================================== */

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

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

:root {
    --forest: #2D5016;
    --forest-deep: #1a3009;
    --forest-light: #3d6b1f;
    --sage: #7A9471;
    --sage-light: #a8c19f;
    --sage-soft: #e8f0e5;
    --gold: #D4A574;
    --gold-light: #E8C89B;
    --gold-soft: #F5E6D3;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --brown: #3E2723;
    --brown-light: #5D4037;
    --white: #ffffff;
    --off-white: #FFFEF9;
    --gray-50: #fafaf9;
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --gray-400: #a8a29e;
    --gray-600: #57534e;
    --gray-800: #292524;
    --text: #3E2723;
    --text-light: #6D5D56;
    --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.06);
    --shadow-md: 0 8px 24px rgba(62, 39, 35, 0.08);
    --shadow-lg: 0 20px 50px rgba(62, 39, 35, 0.12);
    --shadow-green: 0 10px 30px rgba(45, 80, 22, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--forest);
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Typography Helpers ---------- */
.section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
    position: relative;
    padding-left: 44px;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 2px;
    background: var(--sage);
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(1.875rem, 4vw + 1rem, 3.25rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 680px;
    line-height: 1.75;
}

.section-header {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 780px;
}
.section-header .section-eyebrow { padding-left: 0; }
.section-header .section-eyebrow::before { display: none; }
.section-header .section-subtitle { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--forest);
    color: var(--white);
    box-shadow: var(--shadow-green);
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--forest);
    border-color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: var(--forest);
}
.btn-gold:hover {
    background: var(--forest);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}
.btn-ghost {
    color: var(--forest);
    padding: 10px 0;
    font-weight: 600;
}
.btn-ghost::after {
    content: '→';
    margin-left: 6px;
    transition: var(--transition);
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { margin-left: 14px; }

/* ==========================================================
   TOP BAR
   ========================================================== */
.topbar {
    background: var(--forest-deep);
    color: rgba(255,255,255,0.85);
    font-size: 0.825rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.topbar-left svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.topbar-right {
    display: flex;
    gap: 10px;
}
.topbar-right a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: var(--transition);
}
.topbar-right a:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-2px);
}
.topbar-right svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
    .topbar { font-size: 0.75rem; }
    .topbar-left { gap: 14px; }
}
@media (max-width: 480px) {
    .topbar-left span:last-child { display: none; }
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(45,80,22,0.06);
    transition: var(--transition);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--forest);
    letter-spacing: -0.01em;
}
.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid var(--sage-light);
    border-radius: 50%;
    opacity: 0.5;
}
.logo small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    position: relative;
}
.nav-links a:hover { color: var(--forest); background: var(--sage-soft); }
.nav-links a.active {
    color: var(--forest);
    background: var(--sage-soft);
}
.nav-links a.active::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.nav-cta {
    padding: 10px 22px !important;
    background: var(--forest) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
}
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--forest) !important;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--forest);
    color: var(--white);
    align-items: center;
    justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
    .menu-toggle { display: inline-flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 90px 24px 40px;
        gap: 6px;
        box-shadow: -10px 0 30px rgba(45,80,22,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        padding: 14px 18px;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
    }
    .nav-cta {
        margin-top: 16px;
        text-align: center;
    }
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--forest);
        color: var(--white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 60%, var(--forest-light) 100%);
    color: var(--white);
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212,165,116,0.15) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(122,148,113,0.2) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: clamp(2.25rem, 4.5vw + 1rem, 4rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-content h1 .accent {
    color: var(--gold);
    font-style: italic;
    display: inline-block;
}
.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 500px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .num {
    font-family: 'Lora', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat .label {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    max-width: 520px;
    margin-left: auto;
}
.hero-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(212,165,116,0.2) 100%);
}
.hero-float-card {
    position: absolute;
    background: var(--white);
    color: var(--forest);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-float-card.top {
    top: 20px;
    left: -30px;
}
.hero-float-card.bottom {
    bottom: 30px;
    right: -30px;
}
.hero-float-card .ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--sage-soft);
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-float-card .ico svg { width: 22px; height: 22px; }
.hero-float-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Lora', serif;
}
.hero-float-card span {
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (max-width: 960px) {
    .hero { padding: 60px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
    .hero-float-card.top { left: 0; }
    .hero-float-card.bottom { right: 0; }
}
@media (max-width: 480px) {
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero-float-card { padding: 12px 14px; }
    .hero-float-card .ico { width: 36px; height: 36px; }
    .hero-float-card strong { font-size: 0.9rem; }
    .hero-float-card span { font-size: 0.7rem; }
}

/* ==========================================================
   PAGE HERO (for inner pages - unique design)
   ========================================================== */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--forest-deep), var(--forest));
    color: var(--white);
    padding: 90px 0 120px;
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(212,165,116,0.18) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(122,148,113,0.15) 0%, transparent 50%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
    margin-bottom: 18px;
}
.page-hero h1 .accent { color: var(--gold); font-style: italic; }
.page-hero p {
    max-width: 640px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* Page hero - About (variant 1: leaf pattern) */
.page-hero.about::before {
    background-image:
        repeating-linear-gradient(45deg, rgba(122,148,113,0.08) 0 40px, transparent 40px 80px),
        radial-gradient(circle at 80% 20%, rgba(212,165,116,0.18) 0%, transparent 40%);
}

/* Page hero - Menu (variant 2: organic shapes) */
.page-hero.menu::before {
    background-image:
        radial-gradient(ellipse at top, rgba(212,165,116,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(122,148,113,0.18) 0%, transparent 50%);
}

/* Page hero - Services (variant 3: bamboo stripes) */
.page-hero.services::before {
    background-image:
        repeating-linear-gradient(90deg, rgba(122,148,113,0.05) 0 2px, transparent 2px 30px),
        radial-gradient(circle at 20% 80%, rgba(212,165,116,0.2) 0%, transparent 40%);
}

/* Page hero - Contact (variant 4: zen circles) */
.page-hero.contact::before {
    background-image:
        radial-gradient(circle at 30% 70%, rgba(212,165,116,0.15) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(122,148,113,0.15) 0%, transparent 30%);
}

/* ==========================================================
   ABOUT SECTION (HOME)
   ========================================================== */
.section { padding: 90px 0; }
.section-alt { background: var(--cream); }
.section-forest { background: var(--forest); color: var(--white); }
.section-forest h2, .section-forest h3 { color: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}
.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border: 3px solid var(--sage);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--forest);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    font-family: 'Lora', serif;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}
.about-badge strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 4px;
}
.about-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-light); margin-bottom: 18px; }

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
.vm-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--sage);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}
.vm-card:hover {
    border-color: var(--sage);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.vm-card:hover::before { transform: scaleY(1); }
.vm-card .ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--sage-soft);
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.vm-card .ico svg { width: 22px; height: 22px; }
.vm-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.vm-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 960px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 520px) {
    .vm-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   FEATURES / WHY CHOOSE US
   ========================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sage-soft), #fff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--forest);
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--sage), var(--sage-light));
    transform: rotate(-5deg) scale(1.05);
}
.feature-icon svg { width: 32px; height: 32px; }

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.35;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================================
   MENU SECTION
   ========================================================== */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.menu-cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--gray-200);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.menu-cat-btn:hover,
.menu-cat-btn.active {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.menu-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
}
.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage);
}
.menu-item-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-soft), var(--cream));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--forest);
    font-size: 2rem;
}
.menu-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.menu-item .price {
    font-family: 'Lora', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}
.menu-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}
.menu-item-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--forest);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage);
}
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--forest);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--forest);
    transform: rotate(-8deg);
}
.service-icon svg { width: 34px; height: 34px; }

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--forest);
    letter-spacing: 0.02em;
}
.service-card:hover .learn-more { color: var(--gold); }
.service-card .learn-more::after { content: '→'; transition: var(--transition); }
.service-card:hover .learn-more::after { transform: translateX(4px); }

/* ==========================================================
   GALLERY / ATMOSPHERE
   ========================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,80,22,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--sage-light));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-author strong {
    display: block;
    color: var(--forest);
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
    padding: 64px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    margin: 60px 0;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    border-radius: 50%;
}
.cta-banner h2 {
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.cta-banner p {
    margin-bottom: 28px;
    font-size: 1.05rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn {
    position: relative;
    z-index: 2;
}

@media (max-width: 560px) {
    .cta-banner { padding: 48px 24px; }
}

/* ==========================================================
   CONTACT PAGE (unique design)
   ========================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.contact-info-card {
    background: linear-gradient(145deg, var(--forest), var(--forest-light));
    color: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(212,165,116,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.contact-info-card h2 {
    color: var(--white);
    font-size: 1.85rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.contact-info-card > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}
.contact-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-item .ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212,165,116,0.2);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item .ico svg { width: 20px; height: 20px; }
.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-item span, .contact-item a {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
}
.contact-item a:hover { color: var(--gold); }

.contact-form-card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.contact-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.contact-form-card > p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--gray-50);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(122,148,113,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
    background: #e8f0e5;
    border: 1px solid #a8c19f;
    color: var(--forest);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}
.form-success.show { display: block; }

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

/* Map embed */
.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    margin-top: 48px;
    aspect-ratio: 16 / 7;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==========================================================
   INFO CARDS (about page)
   ========================================================== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.info-card .ico {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-soft), var(--cream));
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.info-card .ico svg { width: 32px; height: 32px; }
.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    background: var(--forest-deep);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--gold), var(--sage));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 56px;
}
.footer .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    margin-bottom: 20px;
    max-width: 320px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-3px);
}
.footer-socials svg { width: 18px; height: 18px; }

.footer h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    position: relative;
    padding-left: 0;
    transition: var(--transition);
}
.footer-links a::before {
    content: '→';
    display: inline-block;
    margin-right: 0;
    width: 0;
    overflow: hidden;
    color: var(--gold);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { width: 18px; margin-right: 4px; }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}
.footer-contact-item .ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212,165,116,0.15);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-item .ico svg { width: 16px; height: 16px; }
.footer-contact-item span, .footer-contact-item a {
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer { padding: 60px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.animate-in { animation: fadeInUp 0.7s ease both; }
.hero-float-card.top { animation: float 4s ease-in-out infinite; }
.hero-float-card.bottom { animation: float 4s ease-in-out infinite 2s; }

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   UTILITIES / RESPONSIVE SECTION SPACING
   ========================================================== */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .page-hero { padding: 70px 0 90px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .hero { padding: 50px 0 70px; }
}

/* Prevent horizontal overflow on all devices */
body, html { overflow-x: hidden; max-width: 100%; }

/* Selection */
::selection { background: var(--sage); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
    background: var(--forest);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
