/* ============================================
   Chicken Palace Restaurant & Cevicheria
   Classic & Elegant — Burgundy + Blush
   ============================================ */

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

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

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: #2C1A1D;
  background-color: #FDF8F5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

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

.section-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B2E3F;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: #2C1A1D;
  margin-bottom: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background-color: #6B1D2A;
  color: #FDF8F5;
  border: 2px solid #6B1D2A;
}

.btn-primary:hover {
  background-color: #531520;
  border-color: #531520;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 29, 42, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #FDF8F5;
  border: 2px solid rgba(253, 248, 245, 0.5);
}

.btn-secondary:hover {
  background-color: rgba(253, 248, 245, 0.1);
  border-color: #FDF8F5;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #6B1D2A;
  border: 2px solid #6B1D2A;
}

.btn-outline:hover {
  background-color: #6B1D2A;
  color: #FDF8F5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 29, 42, 0.2);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 29, 42, 0.08);
  transition: all 0.4s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(44, 26, 29, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: #6B1D2A;
  color: #FDF8F5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2C1A1D;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2C1A1D;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #6B1D2A;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #6B1D2A;
}

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

.nav-cta {
  background: #6B1D2A;
  color: #FDF8F5 !important;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

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

.nav-cta:hover {
  background: #531520;
  color: #FDF8F5 !important;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background: #2C1A1D;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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);
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 26, 29, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-overlay-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #FDF8F5;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.nav-overlay-link:hover {
  color: #D4A0A0;
}

.nav-overlay-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4A0A0;
  border: 1px solid rgba(212, 160, 160, 0.3);
  padding: 12px 24px;
  border-radius: 4px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #2C1A1D 0%, #4A1520 50%, #6B1D2A 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 160, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(253, 248, 245, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-left {
  color: #FDF8F5;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4A0A0;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: #FDF8F5;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: #D4A0A0;
}

.hero-subtitle {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(253, 248, 245, 0.75);
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 248, 245, 0.6);
}

.hero-trust-item svg {
  color: #D4A0A0;
}

/* Hero Right */
.hero-right {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.hero-image-accent {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 160, 160, 0.2);
  border-radius: 4px;
  pointer-events: none;
}

.hero-image-secondary {
  position: absolute;
  bottom: -40px;
  left: -60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(253, 248, 245, 0.1);
}

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

.hero-image-secondary-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(44, 26, 29, 0.85));
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FDF8F5;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-dot {
  width: 6px;
  height: 6px;
  background: #D4A0A0;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253, 248, 245, 0.4);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- About ---------- */
.about {
  padding: 120px 0;
  background: #FDF8F5;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(44, 26, 29, 0.12);
}

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

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(44, 26, 29, 0.15);
  border: 4px solid #FDF8F5;
}

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

.about-img-float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #6B1D2A;
  color: #FDF8F5;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #4A3538;
  margin-bottom: 20px;
}

.about-signature {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(107, 29, 42, 0.15);
}

.signature-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #6B1D2A;
  line-height: 1.6;
}

/* ---------- Menu ---------- */
.menu {
  padding: 120px 0;
  background: #FAF0EC;
}

.menu-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.menu-intro {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A3538;
}

/* Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.menu-tab {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A3538;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(107, 29, 42, 0.2);
  transition: all 0.3s ease;
}

.menu-tab:hover {
  border-color: #6B1D2A;
  color: #6B1D2A;
}

.menu-tab.active {
  background: #6B1D2A;
  border-color: #6B1D2A;
  color: #FDF8F5;
}

/* Panels */
.menu-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.menu-item {
  background: #FDF8F5;
  border-radius: 8px;
  padding: 28px 32px;
  border: 1px solid rgba(107, 29, 42, 0.08);
  transition: all 0.3s ease;
}

.menu-item:hover {
  box-shadow: 0 8px 24px rgba(107, 29, 42, 0.08);
  transform: translateY(-2px);
}

.menu-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.menu-item-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2C1A1D;
}

.menu-item-tag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B1D2A;
  background: rgba(107, 29, 42, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.menu-item-desc {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #6B5054;
}

.menu-footer {
  text-align: center;
  margin-top: 48px;
}

.menu-footer p {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  color: #6B5054;
  margin-bottom: 20px;
}

.menu-footer .btn {
  margin: 0 auto;
}

/* ---------- Specialties ---------- */
.specialties {
  padding: 120px 0;
  background: #2C1A1D;
  position: relative;
  overflow: hidden;
}

.specialties::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(212, 160, 160, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(253, 248, 245, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.specialties-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.specialties-header .section-eyebrow {
  color: #D4A0A0;
}

.specialties-header .section-title {
  color: #FDF8F5;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.specialty-card {
  background: rgba(253, 248, 245, 0.04);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(253, 248, 245, 0.08);
  transition: all 0.4s ease;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 160, 160, 0.2);
}

.specialty-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.specialty-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.specialty-card:hover .specialty-card-img img {
  transform: scale(1.05);
}

.specialty-card-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(107, 29, 42, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #D4A0A0;
}

.specialty-card-content {
  padding: 28px;
}

.specialty-card-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #FDF8F5;
  margin-bottom: 12px;
}

.specialty-card-content p {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(253, 248, 245, 0.6);
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 120px 0;
  background: #FDF8F5;
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(44, 26, 29, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ---------- Visit ---------- */
.visit {
  padding: 120px 0;
  background: #FAF0EC;
}

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

.visit-info {
  padding: 20px 0;
}

.visit-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A3538;
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.visit-detail {
  display: flex;
  gap: 16px;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(107, 29, 42, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B1D2A;
  flex-shrink: 0;
}

.visit-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visit-detail-text strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B1D2A;
}

.visit-detail-text span,
.visit-detail-text a {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  color: #4A3538;
  line-height: 1.6;
}

.visit-detail-text a:hover {
  color: #6B1D2A;
  text-decoration: underline;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.visit-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(44, 26, 29, 0.1);
  min-height: 480px;
}

/* ---------- Footer ---------- */
.footer {
  background: #1E1215;
  color: #FDF8F5;
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(253, 248, 245, 0.08);
}

.footer-logo-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  background: #6B1D2A;
  color: #FDF8F5;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A0A0;
  margin-bottom: 16px;
}

.footer-desc {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(253, 248, 245, 0.5);
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A0A0;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  color: rgba(253, 248, 245, 0.55);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FDF8F5;
}

.footer-contact p {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  color: rgba(253, 248, 245, 0.55);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: #D4A0A0;
  text-decoration: underline;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.8rem;
  color: rgba(253, 248, 245, 0.35);
}

.footer-bottom a {
  color: rgba(253, 248, 245, 0.35);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #D4A0A0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .hero-image-secondary {
    left: -30px;
    bottom: -24px;
  }

  .about-grid {
    gap: 60px;
  }

  .specialties-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

  .hero-image-secondary {
    left: -16px;
    bottom: -16px;
  }

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

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-img-float {
    right: -20px;
    bottom: -24px;
  }

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

  .specialties-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .visit-map {
    min-height: 320px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 80px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .about, .menu, .specialties, .gallery, .visit {
    padding: 80px 0;
  }

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

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .menu-item {
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-image-secondary {
    display: none;
  }

  .about-img-float {
    right: 0;
    bottom: -20px;
  }

  .visit-actions {
    flex-direction: column;
  }

  .visit-actions .btn-large {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
