/* =============================================
   CAFFÈ CONCERTO — Premium Restaurant Website
   style.css — Complete Styling
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --espresso: #2B1B17;
  --espresso-light: #3d2820;
  --cream: #F6F2EB;
  --gold: #C8A96A;
  --gold-light: #e0c88a;
  --gold-dark: #a8894a;
  --beige: #FAF7F2;
  --charcoal: #2C2C2C;
  --text-muted: #6B6B6B;
  --text-light: #9a9078;
  --white: #ffffff;
  --border: rgba(200, 169, 106, 0.2);
  --shadow-sm: 0 2px 12px rgba(43, 27, 23, 0.08);
  --shadow: 0 8px 32px rgba(43, 27, 23, 0.12);
  --shadow-lg: 0 20px 60px rgba(43, 27, 23, 0.18);
  --shadow-gold: 0 8px 32px rgba(200, 169, 106, 0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --nav-height: 80px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--beige);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

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

.section-pad {
  padding: 100px 0;
}

.centered {
  text-align: center;
}

.d-none-sm {
  display: inline;
}

/* ===== SCROLL REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  --delay: 0.15s;
}

.delay-2 {
  --delay: 0.3s;
}

.delay-3 {
  --delay: 0.45s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 169, 106, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  font-size: 1rem;
  padding: 16px 40px;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(200, 169, 106, 0.5);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  padding: 16px 40px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}

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

/* ===== SECTION HEADER ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

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

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header.centered {
  margin-bottom: 60px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(43, 27, 23, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-icon {
  font-size: 1.6rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--gold);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 169, 106, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(43, 27, 23, 0.85) 0%,
      rgba(43, 27, 23, 0.6) 50%,
      rgba(43, 27, 23, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge-row {
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid rgba(200, 169, 106, 0.4);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  padding: 16px 32px;
  gap: 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 20px;
}

.highlight-icon {
  font-size: 1rem;
}

.highlight-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
  transition: color var(--transition);
}

.hero-scroll-cue:hover {
  color: var(--gold);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--white);
}

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

.about-images {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 120px);
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

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

.about-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 24px 0;
  border-radius: 2px;
}

.about-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--beige);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== MENU SECTION ===== */
.menu {
  background: var(--beige);
}

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

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--espresso);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.menu-panels {
  position: relative;
}

.menu-panel {
  display: none;
}

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

.menu-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.menu-panel-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}

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

.menu-panel-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(43, 27, 23, 0.9);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(200, 169, 106, 0.3);
}

.menu-panel-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--espresso);
  margin-bottom: 12px;
}

.menu-cat-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-items li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.menu-items li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
}

.menu-item-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.menu-cta {
  margin-top: 56px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(200, 169, 106, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(43, 27, 23, 0.04) 0%, transparent 60%);
}

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

.feature-card {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--espresso);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--beige);
}

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

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-large {
  aspect-ratio: auto;
  min-height: 400px;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 27, 23, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--espresso);
  overflow: hidden;
}

.testimonials .section-label {
  color: var(--gold);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-title em {
  color: var(--gold-light);
}

.testimonials-slider {
  overflow: hidden;
  margin-bottom: 40px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: calc(100% / 3);
  padding: 0 16px;
  flex-shrink: 0;
}

.testimonial-card>div,
.testimonial-card>blockquote,
.testimonial-card .testimonial-author {
  display: block;
}

.testimonial-card .card-inner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 106, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  height: 100%;
}

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

blockquote {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
}

blockquote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: -20px;
  font-size: 4rem;
  color: rgba(200, 169, 106, 0.15);
  font-family: var(--font-serif);
  line-height: 1;
}

.testimonial-author {
  display: flex !important;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.8rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

/* Wrap inner */
.testimonial-card>* {
  padding: 0;
}

/* Re-wrap testimonial cards */
.testimonials-track .testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 106, 0.12);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  min-width: calc(33.333% - 22px);
  margin: 0 11px;
  flex-shrink: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 169, 106, 0.25);
  color: var(--gold);
  font-size: 1.1rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.rating-summary {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(200, 169, 106, 0.15);
  max-width: 400px;
  margin: 0 auto;
}

.rating-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-stars {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.rating-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 120px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 560px;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 27, 23, 0.92) 0%, rgba(43, 27, 23, 0.8) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-title em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}

.cta-hours-sep {
  color: rgba(255, 255, 255, 0.25);
}

.cta-content .section-label.light {
  color: var(--gold);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--white);
}

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

.contact-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--espresso);
  margin-bottom: 36px;
  line-height: 1.3;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-item a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--gold-dark);
}

.contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--espresso);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.footer-logo .brand-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-logo .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 169, 106, 0.15);
}

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

.footer-links-col li a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-links-col li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(200, 169, 106, 0.5);
}

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

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

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 380px;
  }

  .about-img-main {
    width: calc(100% - 80px);
    height: 340px;
  }

  .about-img-accent {
    width: 140px;
    height: 160px;
  }

  .menu-panel-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-panel-img {
    height: 300px;
  }

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

  .contact-map {
    height: 380px;
  }

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

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 320px;
  }

  .testimonials-track .testimonial-card {
    min-width: calc(100% - 22px);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(43, 27, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0 32px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(200, 169, 106, 0.15);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .nav-cta {
    margin: 16px 24px 0;
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-highlights {
    gap: 8px;
    padding: 12px 20px;
  }

  .highlight-sep {
    display: none;
  }

  .highlight-item {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

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

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

  .d-none-sm {
    display: none;
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: span 1;
    min-height: 260px;
  }

  .gallery-item {
    aspect-ratio: 4/3;
  }

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

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

  .btn-gold,
  .btn-outline-light {
    width: 100%;
    max-width: 320px;
  }

  .contact-btns {
    flex-direction: column;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .about-stats {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }
}