/* ========================================
   Casa da Cachaca — Design System
   Estilo: Rustico / Tradicional
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #2C1810;
  --bg-darker: #1A0E08;
  --accent: #D4820A;
  --accent-light: #E9A73E;
  --accent-dark: #A66508;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD2;
  --text-light: #F5F0E8;
  --text-dark: #2C1810;
  --text-muted: #8B7355;
  --border: #5C3D2E;
  --border-light: #D4C4B0;
  --card-bg: rgba(44, 24, 16, 0.6);
  --overlay: rgba(26, 14, 8, 0.7);
  --whatsapp: #25D366;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.3);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-light); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(26, 14, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 130, 10, 0.15);
  transition: background var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.navbar-logo span { color: var(--cream); }
.navbar-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar-links a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 4px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.navbar-links a:hover::after { width: 100%; }
.navbar-links a:hover { color: var(--accent); }

.btn-nav {
  background: var(--accent);
  color: var(--bg-dark) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.btn-nav:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  color: var(--bg-dark) !important;
}

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

/* --- HERO --- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--bg-darker);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 14, 8, 0.6) 0%,
    rgba(26, 14, 8, 0.4) 50%,
    rgba(44, 24, 16, 0.8) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 130, 10, 0.2);
  border: 1px solid rgba(212, 130, 10, 0.4);
  color: var(--accent-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-subtitle {
  color: rgba(245, 240, 232, 0.85);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
}

.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 130, 10, 0.35);
  color: var(--bg-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 240, 232, 0.3);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.btn-ifood {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn-ifood:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 130, 10, 0.35);
  color: var(--bg-dark);
}

.btn-nav-ifood {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
}
.btn-nav-ifood:hover {
  background: var(--accent-light) !important;
  color: var(--bg-dark) !important;
}

.cta-float a.ifood-float {
  background: #EA1D2C;
  box-shadow: 0 4px 20px rgba(234, 29, 44, 0.4);
}
.cta-float a.ifood-float:hover {
  background: #c5111e;
  box-shadow: 0 6px 28px rgba(234, 29, 44, 0.5);
  color: #fff;
}

/* --- SECTIONS --- */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section-alt {
  background: var(--cream-dark);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.section-dark .section-label { color: var(--accent-light); }

.section-header h2 {
  margin-bottom: 1rem;
}
.section-dark .section-header h2 { color: var(--cream); }

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-dark .section-desc { color: rgba(245, 240, 232, 0.7); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto;
  border-radius: 2px;
}

/* --- CARDS --- */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-dark {
  background: rgba(92, 61, 46, 0.2);
  border: 1px solid rgba(212, 130, 10, 0.1);
}
.card-dark:hover {
  border-color: rgba(212, 130, 10, 0.3);
}

.card-body { padding: 1.5rem; }

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* --- GRID SYSTEMS --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

/* --- FEATURES / DIFERENCIAIS --- */
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 130, 10, 0.1);
  border-radius: 50%;
  font-size: 1.75rem;
}

.section-dark .feature-icon {
  background: rgba(212, 130, 10, 0.15);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.section-dark .feature-card p {
  color: rgba(245, 240, 232, 0.65);
}

/* --- MENU / CARDAPIO --- */
.menu-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0.5rem;
  background: rgba(44, 24, 16, 0.05);
  border-radius: 50px;
}

.menu-nav-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.menu-nav-btn.active,
.menu-nav-btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

.section-dark .menu-nav {
  background: rgba(245, 240, 232, 0.05);
}
.section-dark .menu-nav-btn {
  color: var(--cream);
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category-title {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(212, 130, 10, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.menu-item:hover {
  background: rgba(212, 130, 10, 0.05);
}
.section-dark .menu-item:hover {
  background: rgba(212, 130, 10, 0.1);
}

.menu-item-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.section-dark .menu-item-desc {
  color: rgba(245, 240, 232, 0.5);
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--border-light);
  margin: 0 0.75rem;
  min-width: 20px;
  align-self: end;
  margin-bottom: 4px;
}
.section-dark .menu-item-dots {
  border-color: rgba(245, 240, 232, 0.15);
}

/* --- UNIDADES --- */
.unit-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.unit-card .map-container {
  aspect-ratio: 16/10;
  background: var(--cream-dark);
}

.unit-card .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.unit-info {
  padding: 1.5rem;
}

.unit-name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.unit-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.unit-detail-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- GALERIA --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* --- DEPOIMENTOS --- */
.testimonial-card {
  padding: 2rem;
  text-align: left;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.section-dark .testimonial-text {
  color: rgba(245, 240, 232, 0.85);
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.section-dark .testimonial-role {
  color: rgba(245, 240, 232, 0.5);
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}
.section-dark .faq-item {
  border-color: rgba(245, 240, 232, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0;
}
.section-dark .faq-question { color: var(--cream); }

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-dark .faq-answer p {
  color: rgba(245, 240, 232, 0.65);
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

.footer h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.4);
}

/* --- CTA FLUTUANTE WHATSAPP --- */
.cta-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}

.cta-float a {
  min-height: 56px;
  min-width: 56px;
  padding: 0 1.25rem;
  border-radius: 50px;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}
.cta-float a:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.cta-float-icon {
  width: 28px;
  height: 28px;
}

.cta-float-text {
  display: block;
}

/* --- BLOG --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--accent); }

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-read-more {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog post page */
.post-header {
  padding: 8rem 0 3rem;
  background: var(--bg-dark);
  text-align: center;
}

.post-header h1 {
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.post-header .blog-meta {
  justify-content: center;
  color: rgba(245, 240, 232, 0.6);
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.post-content h2 {
  margin: 2.5rem 0 1rem;
  color: var(--bg-dark);
}

.post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.post-content li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.post-cta {
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.post-cta h3 { color: var(--cream); margin-bottom: 1rem; }
.post-cta p { color: rgba(245, 240, 232, 0.7); margin-bottom: 1.5rem; }

/* --- CONTACT PAGE --- */
.contact-form {
  max-width: 500px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: #fff;
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

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

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 0.5rem; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-darker);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(212, 130, 10, 0.1);
  }
  .navbar-links.active { right: 0; }
  .hamburger { display: flex; }

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

  .hero-stats { gap: 1.5rem; }
  .hero-stat-number { font-size: 1.5rem; }

  .section { padding: 3.5rem 0; }

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

  .cta-float-text { display: none; }
  .cta-float a {
    width: 56px;
    padding: 0;
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .menu-nav { border-radius: var(--radius-md); }
  .menu-nav-btn { font-size: 0.8rem; padding: 0.5rem 1rem; }
}
