@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&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

:root {
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-pale: #F5ECD7;
  --pistachio: #6B8F4E;
  --pistachio-light: #E8F0E0;
  --cream: #FFFBF5;
  --cream-dark: #F5EDE0;
  --dark: #1A1A1A;
  --dark-mid: #2C2C2C;
  --rose: #C9A09A;
  --rose-light: #F2E4E1;
  --white: #FFFFFF;
  --text: #2C2420;
  --text-mid: #6B5E54;
  --text-light: #9B8E84;
  --border: #E8DDD0;
  --shadow-sm: 0 2px 8px rgba(26,26,26,0.06);
  --shadow: 0 4px 20px rgba(26,26,26,0.08);
  --shadow-lg: 0 12px 40px rgba(26,26,26,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--cream); color: var(--text); font-weight: 300; line-height: 1.75; font-size: 15px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.25; }

/* ══════════ NAVIGATION ══════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); background: transparent; box-shadow: none; }
.nav.scrolled { background: rgba(255,251,245,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 4px 32px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav-logo { grid-column: 2; text-align: center; position: relative; }
.nav-logo img { height: 92px; transition: var(--transition); position: relative; z-index: 2; }
.nav.scrolled .nav-logo img { height: 74px; }

.nav-links { grid-column: 3; display: flex; gap: 22px; align-items: center; justify-content: flex-end; width: 100%; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); transition: var(--transition); position: relative; }
.nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: var(--transition); }
.nav-links a:not(.nav-cta):hover::after, .nav-links a:not(.nav-cta).active::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav.scrolled .nav-links a.active { color: var(--gold); }

/* Nav contact button — liquid glass gold */
.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 12px !important;
  letter-spacing: 1.5px;
  color: var(--white) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
  background: linear-gradient(180deg, rgba(255,220,80,0.22) 0%, rgba(190,145,30,0.18) 50%, rgba(148,108,10,0.28) 100%);
  border: 1.5px solid rgba(212,168,67,0.65);
  box-shadow:
    inset 0 1.5px 0 rgba(255,240,150,0.55),
    inset 0 -1px 0 rgba(90,55,0,0.35),
    0 0 0 1px rgba(184,134,11,0.18),
    0 2px 10px rgba(145,113,0,0.18);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: box-shadow 0.28s cubic-bezier(.1,.4,.2,1), transform 0.28s cubic-bezier(.1,.4,.2,1), background 0.28s ease;
}
/* Top glass shine on nav-cta */
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: 50px 50px 80% 80%;
  background: linear-gradient(180deg, rgba(255,250,200,0.45) 0%, rgba(255,250,200,0) 100%);
  pointer-events: none;
}
/* Shimmer sweep on nav-cta */
.nav-cta::after {
  content: '';
  position: absolute;
  top: -60%; left: -80%;
  width: 45%; height: 220%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.26) 50%, transparent 70%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: inset 0 1.5px 0 rgba(255,240,150,0.6), inset 0 -1px 0 rgba(90,55,0,0.35), 0 0 0 1px rgba(184,134,11,0.25), 0 4px 16px rgba(145,113,0,0.32); background: linear-gradient(180deg, rgba(255,220,80,0.32) 0%, rgba(190,145,30,0.26) 50%, rgba(148,108,10,0.38) 100%); }
.nav-cta:hover::after { left: 130%; }
.nav.scrolled .nav-cta { border-color: rgba(184,134,11,0.55); }
.hamburger { grid-column: 1; display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; width: fit-content; }
.hamburger span { width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }
.nav.scrolled .hamburger span { background: var(--text); }

/* ══════════ HERO ══════════ */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 40%, rgba(0,0,0,0.58) 80%, rgba(0,0,0,0.72) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 24px; max-width: 700px; }
.hero-logo { width: 120px; margin: 0 auto 24px; filter: brightness(10); }
.hero-badge { display: inline-block; padding: 6px 24px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; color: var(--gold-light); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.5); }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1.1rem; font-weight: 300; opacity: 0.95; margin-bottom: 36px; line-height: 1.8; text-shadow: 0 1px 16px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.45); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════ BUTTONS ══════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); cursor: pointer; border: none; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-2px); }

/* ══════════ LIQUID GLASS GOLD BUTTON ══════════ */
/* Wrapper is structural only — no heavy colour, just lift/press */
.gldbtn {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(.1,.4,.2,1);
}
.gldbtn:hover { transform: translateY(-2px); }
.gldbtn:active { transform: translateY(1px) scale(0.985); }
.gldbtn-block { display: block; width: 100%; }
.gldbtn-block .btn-glass-gold { width: 100%; justify-content: center; }

/* Button — same language as the nav Contact pill the user approved */
.btn-glass-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;

  /* Near-transparent glass — almost nothing but blur */
  background: rgba(255, 215, 70, 0.10);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  /* Thin gold border — the only real colour */
  border: 1.5px solid rgba(212, 168, 67, 0.55);

  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);

  /* Glass rim: bright top edge, faint bottom edge */
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 180, 0.55),
    inset 0 -0.5px 0 rgba(140, 100, 0, 0.2),
    0 2px 18px rgba(180, 130, 0, 0.08);

  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.gldbtn:hover .btn-glass-gold {
  background: rgba(255, 215, 70, 0.18);
  border-color: rgba(212, 168, 67, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 180, 0.65),
    inset 0 -0.5px 0 rgba(140, 100, 0, 0.2),
    0 6px 28px rgba(180, 130, 0, 0.18);
}

/* Top-half glass highlight — the subtle inner sheen */
.btn-glass-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 46%;
  border-radius: 50px 50px 60% 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, transparent 100%);
  pointer-events: none;
}

/* Shimmer sweep on hover */
.btn-glass-gold::after {
  content: '';
  position: absolute;
  top: -60%; left: -85%;
  width: 42%; height: 220%;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.22) 50%, transparent 75%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.gldbtn:hover .btn-glass-gold::after { left: 130%; }
.btn-glass-gold:focus-visible { outline: 2px solid rgba(212,168,67,0.5); outline-offset: 3px; }

/* On cream/white section backgrounds the 10% tint disappears — boost visibility */
.section .btn-glass-gold {
  background: rgba(184, 134, 11, 0.16);
  border-color: rgba(184, 134, 11, 0.68);
  color: #2A1600;
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 180, 0.6),
    inset 0 -0.5px 0 rgba(100, 70, 0, 0.25),
    0 2px 14px rgba(184, 134, 11, 0.1);
}
.section .gldbtn:hover .btn-glass-gold {
  background: rgba(184, 134, 11, 0.26);
  border-color: rgba(184, 134, 11, 0.88);
  color: #2A1600;
}

/* ══════════ SECTIONS ══════════ */
.section { padding: 100px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-mid); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ══════════ FEATURES STRIP ══════════ */
.features-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-item { padding: 48px 32px; text-align: center; border-right: 1px solid var(--border); }
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.9rem; color: var(--text-mid); }

/* ══════════ MENU GRID ══════════ */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.menu-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img { position: relative; height: 260px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--white); padding: 4px 14px; border-radius: 50px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.menu-card-body { padding: 24px 28px; }
.menu-card-body h3 { font-size: 1.3rem; margin-bottom: 6px; }
.menu-card-body .card-subtitle { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.menu-card-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ══════════ SERVICES ══════════ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 280px; overflow: hidden; flex-shrink: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card-body p { font-size: 0.92rem; color: var(--text-mid); flex: 1; margin-bottom: 20px; }
.service-card-body .btn { align-self: flex-start; margin-top: auto; }

/* ══════════ ABOUT SPLIT ══════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-text .section-badge { text-align: left; }
.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 1rem; }
.about-text .signature { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; color: var(--gold); margin-top: 24px; }

/* ══════════ TESTIMONIALS ══════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ══════════ CONTACT ══════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail p { color: var(--text-mid); font-size: 0.95rem; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 0.95rem; background: var(--cream); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,11,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ══════════ FOOTER ══════════ */
.footer { background: var(--cream); color: var(--text); padding: 72px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 280px; color: var(--text-mid); }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.9rem; padding: 4px 0; transition: var(--transition); color: var(--text-mid); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--text-light); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); color: var(--text); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ══════════ CTA BANNER ══════════ */
.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, #2A2015 100%); padding: 80px 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at 30% 50%, rgba(184,134,11,0.08) 0%, transparent 50%); }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.1rem; opacity: 0.7; margin-bottom: 32px; position: relative; }

/* ══════════ PAGE HERO (inner pages) ══════════ */
.page-hero { height: 50vh; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; background: var(--dark); color: var(--white); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(184,134,11,0.12) 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 12px; }
.page-hero p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--gold-light); }

/* ══════════ ANIMATIONS ══════════ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════ RESPONSIVE — TABLET (≤960px) ══════════ */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; position: absolute; top: 0; left: 0; right: 0; height: 100vh; background: rgba(255,251,245,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-inner { display: flex; align-items: center; padding: 0 20px; }
  .nav-inner::after { content: ''; flex: 0 0 40px; display: block; order: 3; }
  .nav-logo { order: 2; flex: 1; text-align: center; }
  .nav-logo img { height: 78px; display: block; margin: 0 auto; }
  .nav.scrolled .nav-logo img { height: 64px; }
  .hamburger { order: 1; flex: 0 0 40px; display: flex; z-index: 1001; }
  .nav-links a { color: var(--text) !important; font-size: 18px; letter-spacing: 2px; }
  .nav-links a.nav-cta {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 36px; border-radius: 50px; font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; overflow: hidden;
    background: rgba(184, 134, 11, 0.16) !important;
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1.5px solid rgba(184, 134, 11, 0.68) !important;
    color: #2A1600 !important;
    text-shadow: none !important;
    box-shadow: inset 0 1px 0 rgba(255,245,180,0.6), inset 0 -0.5px 0 rgba(100,70,0,0.25), 0 2px 14px rgba(184,134,11,0.1);
  }
  .nav-links.open ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .nav-links.open ~ .hamburger span:nth-child(2) { opacity: 0; width: 0; }
  .nav-links.open ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
  .features-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: auto; max-height: 420px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { min-height: 320px; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

/* ══════════ RESPONSIVE — MOBILE (≤640px) ══════════ */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .wrap { padding: 0 18px; }
  .hero { height: 100vh; height: 100lvh; min-height: 100vh; min-height: 100lvh; }
  .hero-bg img { object-position: center 35%; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .gldbtn { display: block; width: 100%; max-width: 300px; }
  .hero-buttons .btn-glass-gold { width: 100%; justify-content: center; }
  .hero-buttons .btn-outline { width: 100%; max-width: 300px; justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .contact-form { padding: 22px 16px; }
  .page-hero { min-height: 260px; }
  .page-hero h1 { font-size: 2rem; }
  .section-header { margin-bottom: 40px; }
  .cta-banner { padding: 60px 0; }
  .about-img img { max-height: 320px; }
  .menu-card-img { height: 220px; }
  .service-card-img { height: 220px; }
}

/* ══════════ RESPONSIVE — SMALL (≤400px) ══════════ */
@media (max-width: 400px) {
  .btn-glass-gold { padding: 13px 26px; font-size: 11px; letter-spacing: 1.5px; }
  .btn-outline { padding: 13px 26px; font-size: 11px; }
  .btn-dark { padding: 13px 26px; font-size: 11px; }
  .nav-inner { padding: 12px 16px; }
  .hero h1 { font-size: 1.8rem; }
}
