/* ============================================
   Ben Paca Mexican Grill — Styles
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald-950: #022c22;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50:  #ecfdf5;
  --cream:       #faf8f4;
  --cream-dark:  #f3efe8;
  --cream-mid:   #ede8df;
  --neutral-900: #111827;
  --neutral-800: #1f2937;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --white:       #ffffff;
  --font-sans:   'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--neutral-800);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--neutral-900);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--neutral-600);
  max-width: 560px;
  line-height: 1.7;
}

.accent {
  color: var(--emerald-600);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-600);
  color: var(--white);
  border-color: var(--emerald-600);
}
.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--emerald-800);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--emerald-50);
  border-color: var(--emerald-50);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--emerald-800);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--emerald-600);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--neutral-900);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--neutral-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--emerald-700);
  background: var(--emerald-50);
}

.btn-nav {
  background: var(--emerald-600);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  margin-left: 8px;
}
.btn-nav:hover {
  background: var(--emerald-700) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #022c22 0%, #065f46 35%, #047857 65%, #059669 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: #34d399;
  top: -150px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #10b981;
  bottom: -100px;
  left: 10%;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: #6ee7b7;
  top: 40%;
  left: 30%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
}

.hero-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .accent {
  color: #6ee7b7;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

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

.hero-actions .btn-secondary {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.hero-actions .btn-secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--emerald-800);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.hero-visual {
  position: relative;
}

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

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 520/620;
}

.hero-img-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,.15);
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.6); }
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--neutral-200);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 40px 32px;
  border-right: 1px solid var(--neutral-200);
  transition: var(--transition);
}
.feature-card:last-child {
  border-right: none;
}
.feature-card:hover {
  background: var(--emerald-50);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--emerald-600);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .9rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-sub {
  margin: 0 auto;
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.cat-btn {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--neutral-600);
  background: var(--white);
  border: 2px solid var(--neutral-200);
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.cat-btn:hover {
  border-color: var(--emerald-500);
  color: var(--emerald-700);
}
.cat-btn.active {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
  transition: var(--transition);
}
.menu-item:hover {
  border-color: var(--emerald-300, #a7f3d0);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.menu-item-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 6px;
}

.menu-item-info p {
  font-size: .85rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  font-size: .85rem;
  color: var(--neutral-500);
  font-style: italic;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-imgs {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  aspect-ratio: 480/560;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-secondary img {
  width: 100%;
  aspect-ratio: 320/280;
  object-fit: cover;
}

.about-img-accent-box {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--emerald-600);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.accent-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.accent-label {
  font-size: .8rem;
  font-weight: 600;
  opacity: .85;
  margin-top: 4px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content > p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--neutral-200);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--emerald-600);
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  color: var(--neutral-500);
  font-weight: 500;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 0 0 100px;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

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

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 100px 0;
  background: var(--white);
}

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

.location-address,
.location-phone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--neutral-700);
  margin-bottom: 24px;
  line-height: 1.6;
}
.location-address svg,
.location-phone svg {
  color: var(--emerald-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-phone a {
  color: var(--emerald-700);
  font-weight: 600;
}
.location-phone a:hover {
  color: var(--emerald-900);
  text-decoration: underline;
}

.location-hours {
  margin-bottom: 32px;
}
.location-hours h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 16px;
}
.location-hours ul li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-100);
  font-size: .9rem;
  color: var(--neutral-700);
}
.location-hours ul li span:last-child {
  font-weight: 600;
  color: var(--neutral-900);
}

.location-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560/480;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

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

.contact-info .section-title {
  margin-bottom: 20px;
}
.contact-info > p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--neutral-700);
}
.contact-item svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}
.contact-item a {
  color: var(--emerald-700);
  font-weight: 600;
}
.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--neutral-900);
  background: var(--cream);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5,150,105,.1);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-sm);
  color: var(--emerald-800);
  font-weight: 600;
  font-size: .9rem;
}
.form-success svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #022c22 0%, #065f46 50%, #047857 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(16,185,129,.2);
  border-radius: 50%;
  filter: blur(80px);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-eyebrow {
  color: rgba(255,255,255,.6);
}

.cta-title {
  color: var(--white);
}
.cta-title .accent {
  color: #6ee7b7;
}

.cta-inner > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo {
  margin-bottom: 20px;
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--emerald-400, #34d399);
}

.footer-links ul li span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,.5);
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--emerald-500);
}
.footer-contact a {
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--emerald-400, #34d399);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--emerald-400, #34d399);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card {
    border-right: none;
    border-bottom: 1px solid var(--neutral-200);
  }
  .feature-card:nth-child(2),
  .feature-card:nth-child(4) {
    border-right: none;
  }
  .about-img-secondary {
    right: -20px;
    bottom: -20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list a {
    padding: 14px 16px;
    font-size: 1rem;
  }
  .btn-nav {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0 80px;
  }
  .hero-sub {
    margin: 0 auto 36px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-img-wrap img {
    aspect-ratio: 400/480;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    border-right: none;
    border-bottom: 1px solid var(--neutral-200);
  }
  .feature-card:last-child {
    border-bottom: none;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-imgs {
    max-width: 480px;
    margin: 0 auto;
  }
  .about-img-secondary {
    right: 0;
    bottom: -20px;
  }
  .about-img-accent-box {
    left: -12px;
    top: -12px;
  }
  .about-stats {
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map {
    aspect-ratio: 16/9;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .menu-categories {
    gap: 6px;
  }
  .cat-btn {
    padding: 8px 16px;
    font-size: .82rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
