/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #C9A84C;
  --primary-light: #E8D5A3;
  --primary-dark: #B8942E;
  --bg-cream: #FFFBF0;
  --bg-warm: #FEFCF8;
  --bg-beige: #F5F0EB;
  --text-primary: #5D4037;
  --text-secondary: #8D6E63;
  --text-light: #A1887F;
  --accent-coral: #E8A87C;
  --accent-sage: #9CB4A8;
  --border-light: #E8DDD0;
  --shadow-sm: 0 2px 8px rgba(93,64,55,0.06);
  --shadow-md: 0 4px 20px rgba(93,64,55,0.08);
  --shadow-lg: 0 8px 40px rgba(93,64,55,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--bg-cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; outline: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; color: var(--text-primary); }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== TOP BAR ===== */
.top-bar { background: var(--primary); color: #fff; padding: 8px 0; font-size: 14px; font-weight: 400; letter-spacing: 0.3px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #fff; opacity: 0.9; }
.top-bar a:hover { opacity: 1; }
.top-bar-info { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.top-bar-info span { display: flex; align-items: center; gap: 6px; }
.top-bar-social { display: flex; gap: 12px; }
.top-bar-social a { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.15); font-size: 13px; transition: var(--transition); }
.top-bar-social a:hover { background: rgba(255,255,255,0.3); transform: translateY(-1px); }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 1000; background: var(--bg-warm); box-shadow: var(--shadow-sm); transition: var(--transition); }
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container { display: flex; justify-content: space-between; align-items: center; height: var(--header-height); }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; font-family: var(--font-heading); font-weight: 700; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-text h1 { font-size: 22px; color: var(--primary); font-weight: 700; letter-spacing: 0.5px; line-height: 1.2; }
.logo-text span { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

/* ===== NAVIGATION ===== */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--text-primary); border-radius: var(--radius-sm); position: relative; transition: var(--transition); letter-spacing: 0.3px; }
.nav a:hover, .nav a.active { color: var(--primary); background: rgba(201,168,76,0.08); }
.nav a::after { content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px; height: 2px; background: var(--primary); transform: scaleX(0); transition: var(--transition); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--primary) !important; color: #fff !important; padding: 10px 24px !important; border-radius: var(--radius-sm) !important; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,0.3); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.hamburger span { width: 26px; height: 2.5px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-beige) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.12); color: var(--primary-dark); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px; text-transform: uppercase; }
.hero-badge::before { content: '★'; font-size: 16px; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); line-height: 1.15; margin-bottom: 20px; color: var(--text-primary); }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 18px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; max-width: 540px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; transition: var(--transition); letter-spacing: 0.3px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.3); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* Hero Image */
.hero-image { position: relative; }
.hero-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; height: 550px; object-fit: cover; transition: var(--transition); }
.hero-image-wrap:hover img { transform: scale(1.03); }
.hero-badge-float { position: absolute; bottom: -20px; left: -20px; background: #fff; padding: 16px 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; animation: float 3s ease-in-out infinite; }
.hero-badge-float-icon { width: 44px; height: 44px; background: var(--accent-sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; }
.hero-badge-float-text { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.hero-badge-float-text strong { display: block; font-size: 18px; color: var(--primary); }
.hero-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border-light); }
.hero-stat h3 { font-size: 28px; color: var(--primary); font-family: var(--font-body); font-weight: 700; }
.hero-stat p { font-size: 13px; color: var(--text-secondary); margin-bottom: 0; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Hero Decorative */
.hero-deco { position: absolute; width: 500px; height: 500px; border: 2px solid var(--primary-light); border-radius: 50%; top: -100px; right: -100px; opacity: 0.3; z-index: 0; }
.hero-deco-2 { position: absolute; width: 300px; height: 300px; border: 2px solid var(--primary-light); border-radius: 50%; bottom: -50px; left: -50px; opacity: 0.2; z-index: 0; }

/* ===== SECTIONS COMMON ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-beige); }
.section-warm { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(30px, 3.5vw, 42px); margin-bottom: 16px; color: var(--text-primary); }
.section-header h2 span { color: var(--primary); }
.section-header p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }
.section-divider { width: 60px; height: 3px; background: var(--primary); margin: 16px auto 0; border-radius: 2px; }

/* ===== ABOUT PREVIEW (Home) ===== */
.about-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-preview-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-preview-image img { width: 100%; height: 500px; object-fit: cover; }
.about-preview-image .exp-badge { position: absolute; bottom: 20px; right: 20px; background: var(--primary); color: #fff; padding: 16px 24px; border-radius: var(--radius-md); text-align: center; }
.about-preview-image .exp-badge h3 { font-size: 32px; color: #fff; font-family: var(--font-body); }
.about-preview-image .exp-badge p { font-size: 12px; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.about-preview-content h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 20px; }
.about-preview-content p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-primary); }
.feature-list li::before { content: '✓'; width: 24px; height: 24px; background: rgba(201,168,76,0.15); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }

/* ===== SPECIALTIES / MENU PREVIEW ===== */
.specialties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.specialty-card { background: var(--bg-warm); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-light); }
.specialty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.specialty-card img { width: 100%; height: 240px; object-fit: cover; }
.specialty-card-body { padding: 24px; }
.specialty-card-body h3 { font-size: 20px; margin-bottom: 8px; }
.specialty-card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.specialty-card-body .price { font-size: 20px; font-weight: 700; color: var(--primary); font-family: var(--font-body); }
.specialty-card-body .price span { font-size: 13px; font-weight: 400; color: var(--text-light); }
.specialty-tag { display: inline-block; padding: 4px 12px; background: rgba(201,168,76,0.1); color: var(--primary-dark); font-size: 11px; font-weight: 600; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 40px 24px; background: var(--bg-warm); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-light); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon { width: 64px; height: 64px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; transition: var(--transition); }
.why-card:hover .why-icon { background: var(--primary); color: #fff; }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--bg-warm); padding: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--primary); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author h4 { font-size: 15px; font-family: var(--font-body); font-weight: 600; }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 80px 0; text-align: center; color: #fff; }
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 42px); color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline { border-color: #fff; color: #fff; }
.cta-banner .btn-outline:hover { background: #fff; color: var(--primary); }
.cta-banner .btn-white { background: #fff; color: var(--primary); }
.cta-banner .btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-beige); padding: 80px 0 0; border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .logo-text h2 { font-size: 22px; color: var(--primary); }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin: 16px 0 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer h3 { font-size: 18px; margin-bottom: 20px; color: var(--text-primary); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.footer-contact li span:first-child { color: var(--primary); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 24px 0; border-top: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--text-light); }
.footer-bottom a { color: var(--primary); }

/* ===== PAGE HEADER (Inner Pages) ===== */
.page-header { padding: 60px 0; background: linear-gradient(135deg, var(--bg-cream), var(--bg-beige)); text-align: center; }
.page-header h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; }
.page-header p { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.breadcrumbs { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { color: var(--text-light); }

/* ===== ABOUT PAGE ===== */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story-content h2 { font-size: clamp(28px, 3vw, 36px); margin-bottom: 20px; }
.about-story-content p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; }
.about-story-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-story-image img { width: 100%; height: 500px; object-fit: cover; }
.about-story-image .badge-img { position: absolute; bottom: 20px; left: 20px; background: var(--bg-warm); padding: 16px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.about-story-image .badge-img h3 { color: var(--primary); font-size: 24px; font-family: var(--font-body); }
.about-story-image .badge-img p { font-size: 12px; color: var(--text-secondary); margin: 0; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { text-align: center; padding: 40px 24px; background: var(--bg-warm); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 70px; height: 70px; margin: 0 auto 16px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: var(--transition); }
.value-card:hover .value-icon { background: var(--primary); color: #fff; }
.value-card h3 { font-size: 20px; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--bg-warm); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 18px; margin-bottom: 4px; }
.team-card-body span { font-size: 13px; color: var(--primary); font-weight: 500; }

/* ===== MENU PAGE ===== */
.menu-filter { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.menu-filter button { padding: 10px 24px; border-radius: 50px; border: 2px solid var(--border-light); font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.menu-filter button:hover, .menu-filter button.active { border-color: var(--primary); background: var(--primary); color: #fff; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.menu-item { display: flex; gap: 20px; background: var(--bg-warm); padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-item img { width: 100px; height: 100px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.menu-item-info { flex: 1; }
.menu-item-info h3 { font-size: 17px; margin-bottom: 4px; }
.menu-item-info p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.menu-item-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.menu-item-footer .price { font-size: 18px; font-weight: 700; color: var(--primary); font-family: var(--font-body); }
.menu-badge { display: inline-block; padding: 2px 10px; background: rgba(201,168,76,0.1); color: var(--primary-dark); font-size: 10px; font-weight: 600; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== GALLERY PAGE ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(201,168,76,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card { background: var(--bg-warm); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.contact-info-card h2 { font-size: 28px; margin-bottom: 8px; }
.contact-info-card > p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-details { display: grid; gap: 24px; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; flex-shrink: 0; }
.contact-detail h3 { font-size: 16px; margin-bottom: 4px; font-family: var(--font-body); }
.contact-detail p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.contact-form-wrap { background: var(--bg-warm); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.contact-form-wrap h2 { font-size: 28px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; border: 2px solid var(--border-light); border-radius: var(--radius-sm); background: var(--bg-cream); font-size: 14px; color: var(--text-primary); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); background: var(--bg-warm); box-shadow: 0 0 0 4px rgba(201,168,76,0.08); }
.form-group textarea { height: 130px; resize: vertical; }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 400px; display: block; }

/* ===== BLOG PAGE ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--bg-warm); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 12px; color: var(--text-light); margin-bottom: 8px; display: flex; gap: 16px; }
.blog-card-body h3 { font-size: 19px; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--text-primary); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.blog-card-body .read-more { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.blog-card-body .read-more:hover { gap: 10px; }

/* ===== RESERVATIONS PAGE ===== */
.reservation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.reservation-form-wrap { background: var(--bg-warm); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.reservation-form-wrap h2 { font-size: 28px; margin-bottom: 24px; }
.reservation-info-wrap { background: var(--bg-warm); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.reservation-info-wrap h2 { font-size: 28px; margin-bottom: 16px; }
.reservation-info-wrap p { color: var(--text-secondary); margin-bottom: 24px; }
.reservation-highlights { display: grid; gap: 16px; }
.reservation-highlight { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--bg-cream); border-radius: var(--radius-sm); }
.reservation-highlight span { font-size: 22px; }

/* ===== PRIVACY PAGE ===== */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { font-size: 24px; margin: 32px 0 16px; }
.privacy-content p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; margin-bottom: 12px; }
.privacy-content ul li { list-style: disc; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-warm); border: 1px solid var(--border-light); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text-primary); transition: var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-question span { transition: var(--transition); font-size: 18px; }
.faq-item.active .faq-question span { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: var(--transition); }
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 300px; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); background: var(--primary-dark); }

/* ===== ANIMATIONS ===== */
.animate { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.animate.visible { opacity: 1; transform: translateY(0); }

/* ===== SUCCESS MESSAGE ===== */
.success-msg { display: none; padding: 16px 24px; background: rgba(156,180,168,0.15); border: 1px solid var(--accent-sage); border-radius: var(--radius-sm); color: var(--text-primary); margin-top: 16px; font-size: 14px; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 60px 0 40px; }
  .hero-image { grid-row: 1; }
  .hero-image-wrap img { height: 350px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { gap: 24px; }
  .hero-stat h3 { font-size: 22px; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-image img { height: 350px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-image img { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
  .reservation-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav { position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--bg-warm); flex-direction: column; padding: 20px; gap: 4px; box-shadow: var(--shadow-md); transform: translateY(-120%); opacity: 0; transition: var(--transition); z-index: 999; }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a { width: 100%; padding: 14px 16px; }
  .nav a::after { display: none; }
  .top-bar .container { justify-content: center; }
  .top-bar-info { gap: 12px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-list { grid-template-columns: 1fr; }
  .hero-badge-float { position: static; margin-top: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 40px 0; }
  .contact-info-card, .contact-form-wrap, .reservation-form-wrap, .reservation-info-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .logo-text h1 { font-size: 18px; }
  .header .container { height: 64px; }
  :root { --header-height: 64px; }
  .top-bar-info span { font-size: 11px; }
}
