/* ============================================================
   NISARG HOTEL — Kesnand, Pune
   Premium dark charcoal & brass lounge identity.
   Display: Marcellus | Body: Karla | Utility: JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Karla:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --charcoal: #0B1512;
  --charcoal-deep: #060C09;
  --panel: #142720;
  --panel-2: #1C3628;
  --panel-border: rgba(226,182,94,0.16);

  --moss-dark: #F3ECDD;
  --moss: #DCCFB2;
  --moss-soft: rgba(243,236,221,0.68);
  --limestone: #F3ECDD;
  --limestone-dim: #E6DABF;

  --brass: #C99A3E;
  --brass-light: #EFC978;
  --brass-dim: #9C7328;
  --pine: #2F6B44;
  --pine-light: #4C8B62;
  --pine-dark: #16341F;
  --brick: #C1512D;
  --brick-dark: #9C3F22;
  --emerald: #4CAF50;
  --ink: #F3ECDD;
  --paper: #241D17;

  --font-display: 'Marcellus', serif;
  --font-body: 'Karla', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 8px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 32px rgba(0,0,0,0.38);
  --shadow-deep: 0 26px 60px rgba(0,0,0,0.58);
  --shadow-glow: 0 0 0 1px rgba(226,182,94,0.14), 0 20px 50px rgba(0,0,0,0.5);
  --gold-hairline: linear-gradient(90deg, transparent, rgba(226,182,94,0.6), transparent);
  --ease: cubic-bezier(.19,1,.22,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(226,182,94,0.32); color: var(--limestone); }

body {
  font-family: var(--font-body);
  background-color: var(--charcoal);
  background-image:
    radial-gradient(circle at 8% 6%, rgba(226,182,94,0.14), transparent 42%),
    radial-gradient(circle at 92% 14%, rgba(47,107,68,0.18), transparent 46%),
    radial-gradient(circle at 50% 100%, rgba(226,182,94,0.07), transparent 55%),
    radial-gradient(circle at 1px 1px, rgba(226,182,94,0.05) 1px, transparent 0);
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  background-size: auto, auto, auto, 26px 26px;
  background-attachment: fixed, fixed, fixed, scroll;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.14; color: var(--limestone); letter-spacing: 0.005em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, var(--brass-light), transparent); display: inline-block; }

/* ---------- Leaf-vine divider ---------- */
.vine-divider { width: 100%; height: 34px; margin: 4px 0; opacity: 0.85; }
.vine-divider path { stroke: rgba(226,182,94,0.35); }
.vine-divider circle, .vine-divider ellipse { fill: var(--brass-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.22) 45%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateX(120%); }

.btn-primary { background: linear-gradient(160deg, var(--pine-light), var(--pine-dark)); color: var(--limestone); box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(47,107,68,0.4); }
.btn-outline { background: rgba(226,182,94,0.04); color: var(--limestone); border: 1.5px solid rgba(226,182,94,0.5); }
.btn-outline:hover { background: var(--brass); color: var(--charcoal-deep); border-color: var(--brass); transform: translateY(-3px); }
.btn-brass { background: linear-gradient(160deg, var(--brass-light), var(--brass)); color: var(--charcoal-deep); box-shadow: 0 10px 26px rgba(201,154,62,0.28); }
.btn-brass:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201,154,62,0.4); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(11,21,18,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(226,182,94,0.12);
  transition: box-shadow 0.35s ease, background 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(0,0,0,0.5); background: rgba(12,10,8,0.92); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding 0.35s ease;
}
.site-header.scrolled .nav { padding: 13px 28px; }
.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--limestone);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.22em; color: var(--brass-light); margin-top: 5px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--limestone); position: relative; padding: 4px 0; transition: color 0.25s ease; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--brass-light), var(--brass));
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--brass-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: var(--limestone); border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(82vw, 360px); height: 100vh;
  background: linear-gradient(165deg, var(--charcoal-deep), #0A130F);
  border-left: 1px solid rgba(226,182,94,0.18);
  z-index: 900;
  transition: right 0.4s var(--ease);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 28px;
  box-shadow: -30px 0 60px rgba(0,0,0,0.5);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--limestone); font-family: var(--font-display); font-size: 1.35rem; transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
.mobile-menu a:hover { color: var(--brass-light); transform: translateX(4px); }
.mobile-menu .close-mobile { align-self: flex-end; background: none; border: none; color: var(--limestone); font-size: 1.7rem; cursor: pointer; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(2px); z-index: 800; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 85% 15%, rgba(226,182,94,0.14), transparent 45%),
    linear-gradient(160deg, rgba(11,21,18,0.92) 0%, rgba(11,21,18,0.82) 55%, rgba(6,12,9,0.95) 100%);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(226,182,94,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
  background: linear-gradient(to bottom, transparent, var(--charcoal));
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-tag {
  font-family: var(--font-mono); color: var(--brass-light); font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px; display: block;
}
.hero h1 { color: var(--limestone); font-size: clamp(2.6rem, 5.5vw, 4.6rem); margin-bottom: 24px; }
.hero h1 em { color: var(--brass-light); font-style: normal; }
.hero p { color: rgba(243,236,221,0.72); font-size: 1.1rem; max-width: 490px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats .num { font-family: var(--font-mono); font-size: 1.8rem; color: var(--brass-light); font-weight: 600; }
.hero-stats .label { font-size: 0.78rem; color: rgba(243,236,221,0.55); letter-spacing: 0.05em; }

.hero-visual {
  position: relative; height: 540px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-glow); border: 1px solid rgba(226,182,94,0.22);
  animation: floatSlow 7s ease-in-out infinite;
}
@keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s var(--ease); }
.hero-visual:hover img { transform: scale(1.08); }
.hero-visual .badge {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(6,12,9,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(226,182,94,0.4); padding: 14px 20px; border-radius: var(--radius);
  color: var(--limestone); font-family: var(--font-mono); font-size: 0.8rem;
}

/* ---------- Section shared ---------- */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 3.6vw, 2.9rem); }
.section-head p { margin-top: 16px; color: rgba(243,236,221,0.68); font-size: 1.03rem; }

.section-dark {
  background:
    radial-gradient(circle at 12% 8%, rgba(226,182,94,0.09), transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(47,107,68,0.13), transparent 45%),
    var(--charcoal-deep);
  color: var(--limestone);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--limestone); }
.section-dark .section-head p { color: rgba(243,236,221,0.7); }

section:not(.hero)::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(90%, 900px); height: 1px; background: var(--gold-hairline); opacity: 0.7;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-deep); height: 470px; }
.about-img::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(226,182,94,0.35); pointer-events: none; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-img:hover img { transform: scale(1.05); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }
.feature-card {
  background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--panel-border); border-top: 2px solid rgba(226,182,94,0.5);
  border-radius: var(--radius); padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); border-color: rgba(226,182,94,0.4); }
.feature-card .icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.feature-card h4 { font-size: 1rem; margin-bottom: 6px; color: var(--limestone); }
.feature-card p { font-size: 0.88rem; color: rgba(243,236,221,0.65); }

/* ---------- Menu ---------- */
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
.menu-tab {
  font-family: var(--font-mono); font-size: 0.8rem; padding: 11px 22px; border-radius: 30px;
  border: 1.5px solid rgba(226,182,94,0.4); background: rgba(226,182,94,0.03); color: var(--limestone);
  cursor: pointer; transition: 0.3s var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.menu-tab.active, .menu-tab:hover { background: linear-gradient(160deg, var(--brass-light), var(--brass)); color: var(--charcoal-deep); border-color: var(--brass); transform: translateY(-2px); }
.tab-icon { font-size: 1rem; line-height: 1; }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leaf-card {
  position: relative; background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
  border-radius: 18px 6px 18px 6px; padding: 28px 24px 24px;
  border: 1px solid var(--panel-border); box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}
.leaf-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 50px; height: 50px;
  background: radial-gradient(circle at 0 0, rgba(226,182,94,0.16), transparent 70%);
  border-radius: 18px 0 0 0;
}
.leaf-cat-icon { position: absolute; top: 18px; right: 18px; font-size: 1.2rem; opacity: 0.85; }
.leaf-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); border-color: rgba(226,182,94,0.4); }
.leaf-card .row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; padding-right: 28px; }
.leaf-card h4 { font-size: 1.1rem; color: var(--limestone); }
.leaf-card .price { font-family: var(--font-mono); color: var(--brass-light); font-weight: 600; white-space: nowrap; }
.leaf-card p { font-size: 0.87rem; color: rgba(243,236,221,0.6); }
.veg-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 7px; }
.veg-dot.veg { background: var(--emerald); border: 1.5px solid var(--emerald); box-shadow: 0 0 0 2px rgba(76,175,80,0.18); }
.veg-dot.nonveg { background: var(--brick); border: 1.5px solid var(--brick); box-shadow: 0 0 0 2px rgba(193,81,45,0.18); }
.menu-empty { text-align: center; color: rgba(243,236,221,0.6); font-family: var(--font-mono); padding: 44px 0; grid-column: 1 / -1; }
.menu-footnote { text-align: center; margin-top: 44px; font-size: 0.85rem; color: rgba(243,236,221,0.55); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 16px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-grid a { overflow: hidden; border-radius: 12px; display: block; border: 1px solid var(--panel-border); position: relative; }
.gallery-grid a::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 40%); opacity:0; transition: opacity 0.3s ease; }
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a:hover img { transform: scale(1.1); }
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-column: span 2; }

/* ---------- Reservation ---------- */
#reserve { background: radial-gradient(circle at 88% 12%, rgba(226,182,94,0.08), transparent 42%), var(--charcoal); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; }
.reserve-form {
  background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%); padding: 36px;
  border-radius: var(--radius-lg); border: 1px solid var(--panel-border);
  border-top: 2px solid rgba(226,182,94,0.5); box-shadow: var(--shadow-deep);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-family: var(--font-mono); color: rgba(243,236,221,0.65); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 15px; border-radius: 7px; border: 1.5px solid rgba(226,182,94,0.22);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--charcoal-deep); color: var(--limestone);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(243,236,221,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brass-light); box-shadow: 0 0 0 3px rgba(226,182,94,0.14); }
.reserve-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

.info-list { display: flex; flex-direction: column; gap: 28px; }
.info-item { display: flex; gap: 18px; }
.info-item .ic {
  width: 48px; height: 48px; border-radius: 50%; background: var(--panel-2); color: var(--brass-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(226,182,94,0.18);
}
.info-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--limestone); }
.info-item p, .info-item a { font-size: 0.9rem; color: rgba(243,236,221,0.65); }
.map-embed { border-radius: 14px; overflow: hidden; margin-top: 12px; height: 230px; border: 1px solid var(--panel-border); filter: grayscale(0.35) brightness(0.85) contrast(1.1); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: radial-gradient(circle at 15% 0%, rgba(226,182,94,0.10), transparent 40%), var(--charcoal-deep);
  color: rgba(243,236,221,0.7); padding: 64px 0 26px; border-top: 1px solid rgba(226,182,94,0.2);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-grid h4 { color: var(--limestone); font-size: 1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-grid ul { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a { transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--brass-light); }
.footer-logo { font-family: var(--font-display); font-size: 1.7rem; color: var(--limestone); margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(226,182,94,0.14); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-bottom a { font-family: var(--font-mono); font-size: 0.75rem; opacity: 0.7; transition: opacity 0.2s ease; }
.footer-bottom a:hover { opacity: 1; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 10px 26px rgba(0,0,0,0.5); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.07);} }

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

/* ---------- Founder signature (circular, hero only) ---------- */
.hero-visual-wrap { position: relative; margin-bottom: 20px; }
.founder-signature {
  position: relative; z-index: 3; margin-top: -46px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
}
.founder-signature-photo {
  width: 108px; height: 108px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--brass-light); background: var(--charcoal-deep);
  box-shadow: 0 0 0 6px rgba(11,21,18,0.9), 0 0 0 7px rgba(226,182,94,0.3), var(--shadow-deep);
  transition: transform 0.3s var(--ease);
}
.founder-signature-photo:hover { transform: scale(1.05); }
.founder-signature-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; display: block; }
.founder-signature-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--limestone); line-height: 1.2; margin-top: 2px; }
.founder-signature-role { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .container { padding: 0 24px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 340px; }
  .reserve-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; }
  section { padding: 84px 0; }
  .nav-links { gap: 24px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; margin-bottom: 0; }
  .menu-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 26px; }
  .hero-visual { height: 300px; }
  .hero-visual-wrap { margin-bottom: 8px; }
  .founder-signature { margin-top: -38px; gap: 6px; }
  .founder-signature-photo { width: 84px; height: 84px; }
  .founder-signature-name { font-size: 0.92rem; }
  .founder-signature-role { font-size: 0.58rem; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .nav { padding: 15px 20px; }
  .logo { font-size: 1.3rem; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 11px 16px; font-size: 0.82rem; }
  .reserve-form { padding: 26px 20px; }
  .wa-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 20px; }
}

@media (max-width: 400px) {
  .nav-cta .btn-brass span, .nav-cta .btn-primary span { display: none; }
}
