:root {
  --red: #c82016;
  --deep-red: #8f160f;
  --orange: #f36b21;
  --gold: #f5b942;
  --black: #100b08;
  --charcoal: #1d1714;
  --cream: #fff7ec;
  --muted: #76685f;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(16, 11, 8, 0.14);
  --radius: 8px;
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header and navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(16, 11, 8, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border: 2px solid rgba(245, 185, 66, 0.7);
  border-radius: 50%;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  place-items: center;
  overflow: hidden;
  padding: 128px 16px 76px;
  background:
    linear-gradient(90deg, rgba(16, 11, 8, 0.94), rgba(16, 11, 8, 0.58), rgba(16, 11, 8, 0.2)),
    url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 44vw;
  min-width: 320px;
  height: 44vw;
  min-height: 320px;
  content: "";
  background: radial-gradient(circle, rgba(245, 185, 66, 0.18), transparent 62%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin-top: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(200, 32, 22, 0.28);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

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

.btn-whatsapp {
  background: #1fa855;
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #2a1c17;
}

/* Quick action cards */
.quick-actions {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 32px));
  margin: -44px auto 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-card {
  min-height: 92px;
  padding: 22px;
  border-right: 1px solid #f0dfcf;
  transition: background 0.2s ease, transform 0.2s ease;
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card:hover {
  background: #fff1df;
}

.quick-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.quick-card strong {
  display: block;
  margin-top: 4px;
  color: var(--black);
  font-size: 1.08rem;
}

.quick-card.whatsapp strong {
  color: #168242;
}

/* Shared sections */
.section {
  padding: 94px 0;
}

section[id] {
  scroll-margin-top: 88px;
}

/* About */
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.about-copy h2,
.section-heading h2,
.contact-info h2 {
  margin-top: 8px;
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.about-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.contact-list {
  margin-top: 18px;
  color: var(--muted);
}

.about-panel {
  position: relative;
}

.about-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 160px;
  padding: 16px;
  background: rgba(16, 11, 8, 0.88);
  border: 1px solid rgba(245, 185, 66, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

/* Featured video */
.video-section {
  background: linear-gradient(180deg, #fff7ec 0%, #ffffff 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}

.video-copy h2 {
  margin-top: 8px;
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.video-copy p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.video-card {
  overflow: hidden;
  padding: 14px;
  background: var(--black);
  border: 1px solid rgba(245, 185, 66, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 11, 8, 0.84), rgba(143, 22, 15, 0.6)),
    url("https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?auto=format&fit=crop&w=1200&q=80") center/cover;
  border-radius: var(--radius);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  text-align: center;
}

.play-button {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(16, 11, 8, 0.32);
}

.play-button::after {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--white);
  content: "";
}

.video-placeholder p {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-placeholder strong {
  display: block;
  margin-top: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 4px 2px;
  color: var(--white);
}

.video-caption span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-caption strong {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  text-align: right;
}

/* YouTube reels slider */
.reels-section {
  background:
    linear-gradient(135deg, rgba(16, 11, 8, 0.96), rgba(143, 22, 15, 0.86)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.reels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: stretch;
}

.reels-copy h2 {
  margin-top: 8px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.reels-copy p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.reels-slider {
  position: relative;
  display: block;
}

.reels-window {
  width: 100%;
  overflow: visible;
}

.reels-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reel-slide {
  min-width: 0;
  opacity: 1;
  transform: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.reel-slide.active {
  opacity: 1;
  transform: none;
}

.reel-phone {
  height: 100%;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(245, 185, 66, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
}

.reel-video {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 16;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 11, 8, 0.22), rgba(16, 11, 8, 0.88)),
    url("https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?auto=format&fit=crop&w=900&q=80") center/cover;
}

.reel-slide:nth-child(2) .reel-video {
  background:
    linear-gradient(180deg, rgba(16, 11, 8, 0.22), rgba(16, 11, 8, 0.88)),
    url("https://images.unsplash.com/photo-1615141982883-c7ad0e69fd62?auto=format&fit=crop&w=900&q=80") center/cover;
}

.reel-slide:nth-child(3) .reel-video {
  background:
    linear-gradient(180deg, rgba(16, 11, 8, 0.22), rgba(16, 11, 8, 0.88)),
    url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=900&q=80") center/cover;
}

.reel-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 28px 22px;
  color: var(--white);
  text-align: center;
}

.reel-placeholder p {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reel-placeholder strong {
  display: block;
  max-width: 230px;
  margin-top: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.04;
}

.reel-meta {
  display: grid;
  gap: 5px;
  padding: 14px 16px 16px;
}

.reel-meta span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reel-meta strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.reel-control {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.45rem;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reel-control:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.reel-dots {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.reel-dots button {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reel-dots button.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* Menu */
.menu-section {
  background: var(--white);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.tab-button {
  min-height: 42px;
  padding: 10px 16px;
  background: #fff4e5;
  border: 1px solid #efd6bb;
  border-radius: var(--radius);
  color: var(--charcoal);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tab-button:hover,
.tab-button.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

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

.menu-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: #fffaf3;
  border: 1px solid #f1dfcb;
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 11, 8, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.menu-card h3 {
  color: var(--black);
  font-size: 1.18rem;
}

.menu-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.price-row strong {
  color: var(--deep-red);
  font-size: 1.24rem;
}

.spice-tag {
  padding: 6px 10px;
  background: #ffe5c8;
  border-radius: 999px;
  color: var(--deep-red);
  font-size: 0.76rem;
  font-weight: 800;
}

/* Offers */
.offers {
  background:
    linear-gradient(rgba(16, 11, 8, 0.9), rgba(16, 11, 8, 0.9)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.offers .section-heading h2 {
  color: var(--white);
}

.offers-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offer-card {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
  border-color: rgba(245, 185, 66, 0.7);
  transform: translateY(-5px);
}

.offer-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  background: var(--gold);
  border-radius: 999px;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
}

.offer-card h3 {
  font-size: 1.4rem;
}

.offer-card p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.offer-card strong {
  color: var(--gold);
  font-size: 1.55rem;
}

/* Gallery */
.gallery {
  background: #fff4e7;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius);
  box-shadow: 0 14px 26px rgba(16, 11, 8, 0.1);
}

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

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

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  background: rgba(16, 11, 8, 0.78);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
}

/* Reviews */
.reviews {
  background: var(--white);
}

.review-card {
  min-height: 240px;
  padding: 26px;
  background: #fffaf3;
  border: 1px solid #f0dec9;
  border-radius: var(--radius);
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.review-card p {
  margin: 16px 0;
  color: var(--muted);
}

.review-card strong {
  color: var(--black);
}

/* Contact */
.contact {
  background: linear-gradient(180deg, #fff7ec 0%, #ffe8cf 100%);
}

.contact-list p {
  padding: 18px 0;
  border-bottom: 1px solid rgba(143, 22, 15, 0.14);
}

.contact-list span {
  display: block;
  color: var(--black);
  font-weight: 900;
}

.contact-list a {
  color: var(--deep-red);
  font-weight: 800;
}

.map-placeholder {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #f4eadf;
  border: 1px solid rgba(143, 22, 15, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 410px;
  border: 0;
}

.map-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 12px 16px;
  background: rgba(16, 11, 8, 0.92);
  border: 1px solid rgba(245, 185, 66, 0.42);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(16, 11, 8, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 28px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive layout */
@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: rgba(16, 11, 8, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu li:last-child {
    border-bottom: 0;
  }

  .nav-menu a {
    display: block;
    padding: 15px 18px;
  }

  .about-grid,
  .video-grid,
  .reels-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

}

@media (max-width: 900px) {
  .reels-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .navbar {
    width: min(100% - 24px, 1180px);
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.26rem;
  }

  .brand small {
    max-width: 150px;
    line-height: 1.2;
  }

  .nav-menu {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 88vh;
    padding: 110px 0 74px;
    background-position: center;
  }

  .hero h1 {
    max-width: 360px;
  }

  .hero-actions,
  .video-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .quick-card {
    border-right: 0;
    border-bottom: 1px solid #f0dfcf;
  }

  .quick-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .menu-grid,
  .offers-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .tab-button {
    flex: 0 0 auto;
  }

  .about-badge {
    right: 12px;
    bottom: 12px;
  }

  .video-card {
    padding: 10px;
  }

  .video-caption {
    display: block;
  }

  .video-caption strong {
    display: block;
    margin-top: 5px;
    text-align: left;
  }

  .reels-slider {
    display: block;
  }

  .reels-window {
    max-width: none;
  }

  .reels-track {
    grid-template-columns: 1fr;
  }

  .reel-placeholder {
    padding: 22px 16px;
  }

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

  .map-placeholder iframe {
    height: 320px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
