/* ==========================================================================
   Trattoria Bresciana - Stylesheet
   Design system & custom aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Color Palette */
  --color-bg-paper: #FDFBF7;
  --color-dark: #201a16;
  --color-dark-surface: #252b21;
  --color-terracotta: #8E3A24;
  --color-terracotta-dark: #6f2d1c;
  --color-terracotta-light: #a4472d;
  --color-olive: #525B44;
  --color-text-main: #1F1F1F;
  --color-text-muted: rgba(31, 31, 31, 0.7);
  --color-accent-cream: #e2c5a9;
  --color-accent-gold: #e9caae;
  --color-border-light: rgba(255, 255, 255, 0.15);
  
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

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

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

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

/* ----------------- Typography & Utilities ----------------- */
.font-display {
  font-family: var(--font-display);
}

.paper-grain {
  background-color: #FDFBF7;
  background-image: radial-gradient(rgba(142, 58, 36, 0.06) 0.7px, transparent 0.7px);
  background-size: 6px 6px;
}

.deckle {
  border-radius: 4% 2% 5% / 3% 5% 2% 4%;
  object-fit: cover;
}

.eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-terracotta);
}

.section-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.95;
  color: var(--color-terracotta);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 4.5rem;
    line-height: 1;
  }
}

.ink-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ink-button:hover {
  background-color: var(--color-terracotta-dark) !important;
  transform: translateY(-1px);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ----------------- Header / Navigation ----------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-border-light);
  background-color: rgba(32, 26, 22, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
}

.header-inner {
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  transition: opacity 0.2s;
}

.logo em {
  font-style: italic;
  color: var(--color-accent-gold);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.desktop-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Switcher */
.lang-toggle {
  position: relative;
  display: flex;
  height: 36px;
  width: 74px;
  align-items: center;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0 4px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  user-select: none;
}

.lang-pill {
  position: absolute;
  height: 28px;
  width: 32px;
  border-radius: 9999px;
  background-color: var(--color-bg-paper);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
}

.lang-toggle.en-active .lang-pill {
  transform: translateX(32px);
}

.lang-toggle span.label {
  position: relative;
  z-index: 2;
  width: 32px;
  text-align: center;
  transition: color 0.25s;
}

.lang-toggle span.label-it {
  color: var(--color-terracotta);
}

.lang-toggle span.label-en {
  color: #ffffff;
}

.lang-toggle.en-active span.label-it {
  color: #ffffff;
}

.lang-toggle.en-active span.label-en {
  color: var(--color-terracotta);
}

.header-reserve-btn {
  display: none;
  border-radius: 9999px;
  background-color: var(--color-terracotta);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  transition: background-color 0.2s;
}

.header-reserve-btn:hover {
  background-color: var(--color-terracotta-light);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #ffffff;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  grid-template-columns: 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--color-dark);
  padding: 1.5rem;
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

@media (min-width: 640px) {
  .header-reserve-btn {
    display: block;
  }
}

/* ----------------- Hero Section ----------------- */
.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background-color: var(--color-dark);
  color: #ffffff;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 100vh;
  }
}

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

@media (min-width: 1024px) {
  .hero-bg-wrapper {
    left: 48%;
  }
}

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

@media (min-width: 1024px) {
  .hero-bg-img {
    opacity: 0.9;
  }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #201a16 0%, rgba(32, 26, 22, 0.7) 55%, transparent 100%);
}

@media (max-width: 1023px) {
  .hero-gradient-overlay {
    background: linear-gradient(to bottom, rgba(32, 26, 22, 0.85) 0%, rgba(32, 26, 22, 0.95) 100%);
  }
}

.hero-content-wrapper {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  padding-top: var(--header-height);
}

@media (min-width: 1024px) {
  .hero-content-wrapper {
    min-height: 100vh;
  }
}

.hero-content {
  max-width: 42rem;
  padding: 6rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--color-accent-cream);
}

.hero-badge-line {
  display: inline-block;
  height: 1px;
  width: 2.5rem;
  background-color: var(--color-accent-cream);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  line-height: 0.92;
  font-weight: 400;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 96px;
  }
}

.hero-subtitle {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  border-radius: 9999px;
  background-color: var(--color-terracotta);
  padding: 1rem 1.75rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem 1.75rem;
  font-weight: 600;
  color: #ffffff;
  transition: background-color 0.2s;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* ----------------- Story Section ----------------- */
.story-section {
  overflow: hidden;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .story-section {
    padding: 9rem 0;
  }
}

.story-grid {
  display: grid;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.story-images {
  position: relative;
}

.story-main-img {
  height: 420px;
  width: 100%;
}

@media (min-width: 640px) {
  .story-main-img {
    height: 600px;
  }
}

.story-sub-img-wrap {
  position: absolute;
  bottom: -2.5rem;
  right: -0.75rem;
  width: 40%;
  transform: rotate(3deg);
  border: 10px solid var(--color-bg-paper);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: var(--color-bg-paper);
}

@media (min-width: 640px) {
  .story-sub-img-wrap {
    right: -2rem;
  }
}

.story-sub-img {
  height: 12rem;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .story-sub-img {
    height: 16rem;
  }
}

.story-text-content {
  padding-top: 2.5rem;
}

@media (min-width: 1024px) {
  .story-text-content {
    padding-top: 0;
  }
}

.story-desc {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--color-text-muted);
}

.story-location-tag {
  margin-top: 2.5rem;
  border-left: 2px solid var(--color-terracotta);
  padding-left: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-terracotta);
}

/* ----------------- Menu Section ----------------- */
.menu-section {
  background-color: var(--color-olive);
  padding: 6rem 0;
  color: var(--color-bg-paper);
}

@media (min-width: 1024px) {
  .menu-section {
    padding: 8rem 0;
  }
}

.menu-header-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .menu-header-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-header-grid .eyebrow {
  color: var(--color-accent-gold) !important;
}

.menu-header-grid .section-title {
  color: var(--color-bg-paper) !important;
}

.menu-intro-wrap {
  max-width: 36rem;
  align-self: end;
}

.menu-intro-text {
  font-size: 1.125rem;
  line-height: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.menu-price-range {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent-gold);
}

.menu-cards-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
  .menu-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background-color: var(--color-dark-surface);
}

.menu-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-img {
  transform: scale(1.05);
  opacity: 0.7;
}

.menu-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 65%);
}

.menu-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem;
  z-index: 2;
}

.signature-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  background-color: var(--color-terracotta);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.25;
}

.menu-card-footer {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.full-menu-link {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.2s;
}

.full-menu-link:hover {
  opacity: 0.8;
}

/* ----------------- Experience Section ----------------- */
.experience-section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .experience-section {
    padding: 9rem 0;
  }
}

.experience-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.experience-text-wrap {
  order: 2;
}

@media (min-width: 1024px) {
  .experience-text-wrap {
    order: 1;
  }
}

.experience-img {
  order: 1;
  height: 520px;
  width: 100%;
}

@media (min-width: 1024px) {
  .experience-img {
    order: 2;
  }
}

.experience-desc {
  margin-top: 1.75rem;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: rgba(0, 0, 0, 0.65);
}

.scores-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  text-align: center;
}

.score-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-terracotta);
}

.score-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
}

/* ----------------- Reviews Section ----------------- */
.reviews-section {
  background-color: var(--color-terracotta);
  padding: 6rem 0;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .reviews-section {
    padding: 8rem 0;
  }
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.reviews-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
}

.reviews-score-main {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

@media (min-width: 640px) {
  .reviews-score-main {
    font-size: 3.75rem;
  }
}

.reviews-count {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.reviews-sub-count {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.thefork-btn {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 500;
}

.reviews-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quote-icon {
  color: var(--color-accent-gold);
}

.stars-row {
  margin: 1.25rem 0;
  display: flex;
  gap: 0.25rem;
  color: #ffffff;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.35;
}

.review-author {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ----------------- Moments / Gallery Section ----------------- */
.moments-section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .moments-section {
    padding: 8rem 0;
  }
}

.moments-header {
  margin-bottom: 3rem;
}

.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-terracotta) transparent;
}

@media (min-width: 1024px) {
  .gallery-scroll {
    padding-left: max(2rem, calc((100vw - 80rem) / 2));
    padding-right: max(2rem, calc((100vw - 80rem) / 2));
  }
}

.gallery-scroll::-webkit-scrollbar {
  height: 6px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-terracotta);
  border-radius: 9999px;
}

.gallery-item {
  flex-shrink: 0;
  scroll-snap-align: center;
}

.gallery-item.tall {
  height: 470px;
  width: 340px;
}

.gallery-item.short {
  margin-top: 3rem;
  height: 380px;
  width: 300px;
}

/* ----------------- Location Section ----------------- */
.location-section {
  background-color: var(--color-dark);
  padding: 6rem 0;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .location-section {
    padding: 8rem 0;
  }
}

.location-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-section .eyebrow {
  color: var(--color-accent-gold) !important;
}

.location-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

@media (min-width: 640px) {
  .location-title {
    font-size: 4.5rem;
  }
}

.location-title em {
  font-style: italic;
}

.address-row {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.address-icon {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.status-pill {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.status-pill.open {
  background-color: var(--color-olive);
}

.status-dot {
  height: 10px;
  width: 10px;
  border-radius: 9999px;
  background-color: var(--color-accent-gold);
}

.status-pill.open .status-dot {
  background-color: #86efac;
}

.location-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 28px;
  border: 6px solid var(--color-bg-paper);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.map-iframe {
  width: 100%;
  height: 300px;
  border: none;
}

@media (min-width: 640px) {
  .map-iframe {
    height: 380px;
  }
}

.hours-card {
  border-radius: 28px;
  background-color: var(--color-bg-paper);
  padding: 1.75rem;
  color: var(--color-text-main);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .hours-card {
    padding: 2.5rem;
  }
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.hours-title svg {
  color: var(--color-terracotta);
}

.hours-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9375rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .closed-day {
  color: var(--color-terracotta);
  font-weight: 600;
}

.hours-row .hours-time {
  font-weight: 600;
}

/* ----------------- Final CTA & Footer ----------------- */
.final-cta-section {
  padding: 6rem 1.25rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .final-cta-section {
    padding: 8rem 1.25rem;
  }
}

.final-title {
  margin: 1.25rem auto 0;
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: 3.75rem;
  line-height: 1;
  color: var(--color-terracotta);
}

@media (min-width: 640px) {
  .final-title {
    font-size: 6rem;
  }
}

.final-desc {
  margin: 1.75rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.6);
}

.final-btn {
  margin-top: 2.25rem;
  padding: 1rem 2rem;
  font-weight: 600;
}

.site-footer {
  background-color: var(--color-dark);
  padding: 2.5rem 1.25rem 7rem;
  color: #ffffff;
}

@media (min-width: 640px) {
  .site-footer {
    padding-bottom: 2.5rem;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  border-top: 1px solid var(--color-border-light);
  padding-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
  }
}

/* ----------------- Mobile Floating Bar ----------------- */
.mobile-floating-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 40;
  display: flex;
  gap: 0.5rem;
  border-radius: 16px;
  background-color: var(--color-bg-paper);
  padding: 0.5rem;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .mobile-floating-bar {
    display: none;
  }
}

.mobile-floating-btn-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  border: 1px solid var(--color-terracotta);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-terracotta);
}

.mobile-floating-btn-reserve {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  background-color: var(--color-terracotta);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}
