/* ============================================
   Myla Mexican Bistro — Editorial Style
   Palette: Terracotta + Sand
   ============================================ */

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

:root {
  --terracotta: #C4572A;
  --terracotta-dark: #A34520;
  --terracotta-light: #D4734A;
  --sand: #F5E6D3;
  --sand-light: #FAF3EB;
  --sand-dark: #E8D5C0;
  --cream: #FFFBF7;
  --charcoal: #1A1410;
  --charcoal-light: #2D241C;
  --warm-gray: #6B5E54;
  --warm-gray-light: #9A8B7F;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: var(--space-sm) 0;
}

.nav.scrolled {
  background: rgba(255, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand-dark);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--charcoal);
}

.nav-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--terracotta);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.8125rem !important;
  letter-spacing: 0.05em !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--terracotta-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--sand-light);
  padding: 6rem var(--space-md) var(--space-lg);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(196, 87, 42, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(196, 87, 42, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content {
  padding-right: var(--space-md);
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--terracotta);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(26, 20, 16, 0.15);
}

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

.hero-img-main {
  width: 380px;
  height: 500px;
  top: 0;
  right: 0;
}

.hero-img-accent {
  width: 260px;
  height: 200px;
  bottom: 40px;
  left: 0;
  border: 6px solid var(--cream);
}

.hero-accent-badge {
  position: absolute;
  bottom: 0;
  right: 60px;
  background: var(--terracotta);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(196, 87, 42, 0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-gray-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 87, 42, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.9375rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.philosophy-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.philosophy-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.label-line {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: start;
}

.philosophy-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
}

.philosophy-text p:first-of-type {
  font-size: 1.1875rem;
  color: var(--charcoal);
  font-weight: 400;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.stat-item {
  padding: var(--space-md);
  background: var(--sand-light);
  border-radius: 4px;
  border-left: 3px solid var(--terracotta);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--warm-gray);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: var(--space-2xl) 0;
  background: var(--sand-light);
}

.menu .container {
  max-width: 1280px;
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.menu-header .section-headline {
  margin-bottom: var(--space-sm);
}

.menu-intro {
  font-size: 1.0625rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.menu-cat-btn {
  background: transparent;
  border: 1.5px solid var(--sand-dark);
  color: var(--warm-gray);
  padding: 0.625rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-cat-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.menu-cat-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.menu-grid {
  display: block;
}

.menu-category {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: var(--space-md);
}

.menu-category.active {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-sm);
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 20, 16, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 20, 16, 0.1);
}

.menu-item-visual {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.menu-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.7), transparent);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-item-info {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-item-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.menu-item-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196, 87, 42, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

.menu-item-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--warm-gray);
}

.menu-note {
  text-align: center;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--white);
  border-radius: 4px;
}

.menu-note p {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  font-style: italic;
  font-family: var(--font-serif);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--space-2xl) 0;
  background: var(--cream);
  overflow: hidden;
}

.about .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image-col {
  position: relative;
  height: 600px;
}

.about-image-main {
  width: 75%;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(26, 20, 16, 0.12);
  position: relative;
  z-index: 1;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  overflow: hidden;
  border-radius: 4px;
  border: 6px solid var(--cream);
  box-shadow: 0 15px 40px rgba(26, 20, 16, 0.12);
  z-index: 2;
}

.about-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: var(--space-md) 0;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
}

.about-content p:first-of-type {
  font-size: 1.1875rem;
  color: var(--charcoal);
}

.about-signature {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--sand-dark);
}

.signature-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--terracotta);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--space-2xl) 0;
  background: var(--sand-light);
}

.gallery .container {
  max-width: 1280px;
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(26, 20, 16, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 250px;
}

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

.gallery-item-wide {
  grid-column: span 6;
}

.gallery-item {
  grid-column: span 3;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(196, 87, 42, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 70% 30%, rgba(196, 87, 42, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.cta-eyebrow {
  color: var(--terracotta-light);
}

.cta-headline {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-text {
  font-size: 1.125rem;
  color: var(--warm-gray-light);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.contact .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info .section-headline {
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-bottom: 0.25rem;
}

.contact-value {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-value a {
  color: var(--charcoal);
  transition: color var(--transition);
}

.contact-value a:hover {
  color: var(--terracotta);
}

/* Form */
.contact-form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(26, 20, 16, 0.06);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--terracotta);
  background: var(--white);
}

.form-input::placeholder {
  color: var(--warm-gray-light);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(196, 87, 42, 0.08);
  border-radius: 4px;
  color: var(--terracotta-dark);
  font-weight: 500;
  margin-top: var(--space-sm);
}

.form-success.show {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--terracotta);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}

.footer-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--terracotta);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sand);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--warm-gray-light);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--warm-gray-light);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--terracotta-light);
}

.footer-contact p {
  font-size: 0.9375rem;
  color: var(--warm-gray-light);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--sand);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--warm-gray);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image-stack {
    height: 480px;
  }

  .hero-img-main {
    width: 300px;
    height: 400px;
  }

  .hero-img-accent {
    width: 200px;
    height: 160px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image-col {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--space-md) var(--space-md);
    gap: var(--space-sm);
    box-shadow: -10px 0 40px rgba(26, 20, 16, 0.15);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 7rem var(--space-sm) var(--space-lg);
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero-image-stack {
    height: 380px;
  }

  .hero-img-main {
    width: 220px;
    height: 300px;
  }

  .hero-img-accent {
    width: 150px;
    height: 120px;
    bottom: 20px;
  }

  .hero-accent-badge {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    right: 30px;
  }

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

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

  .gallery-item-wide {
    grid-column: span 12;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item img {
    min-height: 200px;
  }

  .philosophy-stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    padding: var(--space-md);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-image-stack {
    height: 320px;
  }

  .hero-img-main {
    width: 180px;
    height: 250px;
  }

  .hero-img-accent {
    width: 130px;
    height: 100px;
  }

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

  .menu-item-visual {
    min-height: 160px;
  }

  .philosophy-stats {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide,
  .gallery-item {
    grid-column: span 12;
  }

  .about-image-col {
    height: 350px;
  }

  .about-image-main {
    height: 300px;
  }

  .about-image-float {
    width: 60%;
    height: 200px;
  }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.5);
  z-index: 998;
}

.nav-overlay.show {
  display: block;
}
