/* ============================================================
   The Flava Trap — Brand CSS
   Colors: Deep Island Teal #173F3D | Coconut Cream #FFF7E8
           Golden Dumpling #D8C768 | Scotch Bonnet Orange #E46F2E
           Rice & Peas Beige #F5E8CF | Charcoal Pepper #222222
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Playfair+Display:wght@700;900&family=Montserrat:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap");

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

:root {
  --teal: #173f3d;
  --teal-lt: #1e5451;
  --cream: #fff7e8;
  --gold: #d8c768;
  --gold-w: #e8b447;
  --orange: #e46f2e;
  --brown: #6e4a2e;
  --green: #5d8a58;
  --dark: #222222;
  --beige: #f5e8cf;
  --shadow: 0 20px 60px rgba(23, 63, 61, 0.18);
  --shadow-sm: 0 6px 24px rgba(23, 63, 61, 0.12);
  --radius: 16px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0.55, 0.45, 1);
}

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

body {
  font-family: "Lato", sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}

/* ── Typography ────────────────────────────────────────────── */
.font-brand {
  font-family: "Pacifico", cursive;
}
.font-display {
  font-family: "Playfair Display", serif;
}
.font-sans {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-w);
  display: inline-block;
  margin-bottom: 1rem;
}

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

/* ── Utility ───────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-orange {
  color: var(--orange);
}
.text-cream {
  color: var(--cream);
}
.text-teal {
  color: var(--teal);
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn:hover::after {
  transform: scaleX(1);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--orange);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(228, 111, 46, 0.4);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(228, 111, 46, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--teal);
}

.btn-gold {
  background: var(--gold);
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(216, 199, 104, 0.4);
}
.btn-gold:hover {
  background: var(--gold-w);
  box-shadow: 0 12px 36px rgba(232, 180, 71, 0.5);
}

.btn-teal {
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(23, 63, 61, 0.3);
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    padding 0.4s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.4s;
}

.navbar.scrolled {
  background: var(--teal);
  padding: 0.9rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img {
  height: 92px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: height 0.4s var(--ease);
}
.navbar.scrolled .nav-logo img {
  height: 82px;
}

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

.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(255, 247, 232, 0.9);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--teal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--cream);
  font-weight: 700;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/jerk-chicken-grill-smoke.jpg");
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23, 63, 61, 0.88) 0%,
    rgba(23, 63, 61, 0.72) 50%,
    rgba(110, 74, 46, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 2rem 6rem;
  max-width: 720px;
  margin-left: max(2rem, calc((100vw - 1240px) / 2 + 2rem));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(216, 199, 104, 0.15);
  border: 1px solid rgba(216, 199, 104, 0.4);
  color: var(--gold);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.3s forwards;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 0.5s forwards;
}

.hero h1 .highlight {
  color: var(--gold);
  font-family: "Pacifico", cursive;
  font-size: 0.85em;
  display: block;
}

.hero-sub {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 247, 232, 0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 0.75s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 0.95s forwards;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 1.2s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat strong {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 247, 232, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Floating food images */
.hero-float {
  position: absolute;
  right: max(2rem, calc((100vw - 1240px) / 2 + 2rem));
  bottom: 8%;
  width: clamp(280px, 32vw, 460px);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.hero-float-2 {
  position: absolute;
  right: max(2rem, calc((100vw - 1240px) / 2 + 18rem));
  top: 15%;
  width: clamp(120px, 14vw, 200px);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
  animation: float 8s ease-in-out 2s infinite;
  z-index: 2;
  opacity: 0.9;
}

.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 247, 232, 0.6);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease) 2s both;
}

.scroll-hint-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── Feature Strip ──────────────────────────────────────────── */
.feature-strip {
  background: var(--teal);
  padding: 1.4rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.feature-strip::before,
.feature-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.feature-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--teal), transparent);
}
.feature-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--teal), transparent);
}

.feature-track {
  display: flex;
  gap: 3rem;
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.feature-item i {
  color: var(--gold);
  font-size: 1rem;
}

.feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-w);
  opacity: 0.5;
}

/* ── About ──────────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 199, 104, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

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

.about-label {
  color: var(--brown);
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--teal);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about h2 em {
  font-style: italic;
  color: var(--brown);
}

.about p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-teal {
  background: var(--teal);
  color: var(--cream);
}
.badge-gold {
  background: var(--gold);
  color: var(--teal);
}
.badge-beige {
  background: var(--beige);
  color: var(--brown);
  border: 1px solid rgba(110, 74, 46, 0.2);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap .main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-card-float {
  position: absolute;
  bottom: -2rem;
  left: -2.5rem;
  background: var(--teal);
  color: var(--cream);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: "Montserrat", sans-serif;
}

.about-card-float strong {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  display: block;
}

.about-card-float span {
  font-size: 0.78rem;
  opacity: 0.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-accent {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pacifico", cursive;
  font-size: 1.2rem;
  color: var(--teal);
  box-shadow: 0 8px 24px rgba(216, 199, 104, 0.5);
  text-align: center;
  line-height: 1.2;
  padding: 1rem;
}

/* ── Menu Section ───────────────────────────────────────────── */
.menu-section {
  padding: 7rem 0;
  background: var(--beige);
  overflow: hidden;
}

.menu-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.menu-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--teal);
  color: var(--cream);
}

.menu-scroll-wrap {
  position: relative;
  padding: 0 2rem;
}

.menu-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 0.5rem 2.5rem;
  scrollbar-width: none;
  cursor: grab;
}
.menu-track:active {
  cursor: grabbing;
}
.menu-track::-webkit-scrollbar {
  display: none;
}

.menu-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  position: relative;
}

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

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.menu-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.menu-card-spice {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 2px;
}
.menu-card-spice i {
  font-size: 0.75rem;
  color: var(--orange);
}
.menu-card-spice i.empty {
  color: rgba(228, 111, 46, 0.25);
}

.menu-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.menu-card-body h3 {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.menu-card-body p {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--teal);
}

.menu-price sub {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 700;
}

.menu-order-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition:
    background 0.3s,
    transform 0.3s;
}
.menu-order-btn:hover {
  background: var(--orange);
  transform: rotate(90deg) scale(1.15);
}

/* ── Catering ───────────────────────────────────────────────── */
.catering {
  background: var(--teal);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.catering::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.catering-content .section-label {
  color: var(--gold-w);
}

.catering-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.catering-content > p {
  color: rgba(255, 247, 232, 0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.catering-events {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(216, 199, 104, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
}

.catering-packages {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.package-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(216, 199, 104, 0.15);
  transition:
    background 0.3s,
    border-color 0.3s;
  cursor: pointer;
}

.package-row:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(216, 199, 104, 0.35);
}

.package-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
}

.package-detail {
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 247, 232, 0.55);
  margin-top: 0.15rem;
}

.package-badge {
  background: var(--gold);
  color: var(--teal);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.catering-image-wrap {
  position: relative;
}

.catering-image-wrap .main-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.catering-float-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.catering-float-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.catering-float-card .stars {
  color: var(--gold-w);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.catering-float-card small {
  color: #777;
  font-size: 0.72rem;
}

/* ── Schedule ───────────────────────────────────────────────── */
.schedule {
  padding: 7rem 0;
  background: var(--cream);
}

.schedule-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.schedule-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.schedule-card {
  background: var(--teal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.schedule-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.schedule-card-top {
  padding: 1.6rem 1.8rem 1.2rem;
  position: relative;
}

.schedule-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--teal);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.schedule-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.schedule-card .location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 247, 232, 0.65);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
}

.schedule-card-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.schedule-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.schedule-preorder {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: var(--cream);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sold-out-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 247, 232, 0.6);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: line-through;
}

.schedule-cta {
  text-align: center;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
}

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

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

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.6s var(--ease);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 63, 61, 0.9) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

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

.gallery-overlay span {
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--cream);
  font-size: 1.8rem;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease);
}
.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.3s;
}
.lightbox-close:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

/* ── Reviews ────────────────────────────────────────────────── */
.reviews {
  padding: 7rem 0;
  background: var(--beige);
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
}

.reviews-slider {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 2rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-6px);
}

.review-quote {
  font-size: 4rem;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  line-height: 0.8;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.review-text {
  color: rgba(255, 247, 232, 0.85);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-info strong {
  display: block;
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.review-info span {
  color: rgba(255, 247, 232, 0.5);
  font-size: 0.78rem;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.3;
  cursor: pointer;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.review-dot.active {
  opacity: 1;
  transform: scale(1.3);
}

/* ── Contact / Booking ──────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(23, 63, 61, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-content .section-label {
  color: var(--brown);
}

.contact-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.contact-content > p {
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.15rem;
}

.contact-info-item span {
  font-size: 0.88rem;
  color: #5a5a5a;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background 0.3s,
    transform 0.3s;
}
.social-link:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.85rem;
  color: rgba(255, 247, 232, 0.6);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 247, 232, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 247, 232, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
  background: var(--teal);
  color: var(--cream);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 247, 232, 0.45);
  margin-top: 1rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 124px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(1.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

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

.footer-col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col ul a i {
  font-size: 0.75rem;
  color: var(--gold);
}
.footer-col ul a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-credit span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  white-space: nowrap;
}

.supmasol-logo {
  height: 26px;
  width: auto;
  display: block;
  /* Collapse all colour to white, then dim to match the "Site By:" text opacity */
  filter: brightness(0) invert(1) opacity(0.3);
  transition: filter 0.35s ease;
}

.supmasol-logo:hover {
  filter: none;
}

/* ── Wave Dividers ──────────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-18px) rotate(2deg);
  }
  66% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .catering-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-float {
    width: clamp(200px, 40vw, 340px);
    bottom: 4%;
  }
  .hero-float-2 {
    display: none;
  }

  .about-image-wrap .main-img {
    height: 420px;
  }
  .catering-image-wrap .main-img {
    height: 420px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7) {
    grid-column: span 2;
  }
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

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

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

  .hero-content {
    padding: 8rem 2rem 5rem;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-float {
    display: none;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .about-card-float {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1.5rem;
  }
  .about-accent {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .menu-card {
    flex: 0 0 260px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(7) {
    grid-column: span 1;
  }
}

/* ── Cursor (desktop only) ──────────────────────────────────── */
@media (hover: hover) {
  .custom-cursor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
      width 0.2s,
      height 0.2s,
      background 0.2s;
    mix-blend-mode: multiply;
  }

  .custom-cursor-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition:
      transform 0.12s var(--ease),
      width 0.3s,
      height 0.3s,
      border-color 0.3s;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--cream);
  padding: 5rem 0 6rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(23, 63, 61, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 6px 18px rgba(23, 63, 61, 0.05);
}

.faq-item summary {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.8rem;
  color: #5a5a5a;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================================
   Form alerts + honeypot
   ============================================================ */
.form-alert {
  display: block;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-alert[hidden] {
  display: none;
}

.form-alert.success {
  background: rgba(93, 138, 88, 0.12);
  color: var(--green);
  border: 1px solid rgba(93, 138, 88, 0.35);
}

.form-alert.error {
  background: rgba(228, 111, 46, 0.1);
  color: #b3541e;
  border: 1px solid rgba(228, 111, 46, 0.35);
}

/* Honeypot — visually removed but present for bots */
.fk-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ============================================================
   Legal slide-over panels (Privacy Policy / Terms)
   ============================================================ */
.legal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 63, 61, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  z-index: 3000;
}

.legal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.legal-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(600px, 94vw);
  background: var(--cream);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
  transform: translateX(105%);
  visibility: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
  z-index: 3001;
  display: flex;
  flex-direction: column;
}

.legal-panel.open {
  transform: translateX(0);
  visibility: visible;
}

.legal-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 2rem;
  background: var(--teal);
  flex-shrink: 0;
}

.legal-panel-head h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin: 0;
}

.legal-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 247, 232, 0.35);
  background: transparent;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  flex-shrink: 0;
}

.legal-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

.legal-panel-body {
  overflow-y: auto;
  padding: 2rem;
  -webkit-overflow-scrolling: touch;
}

.legal-doc .legal-meta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.legal-doc h4 {
  color: var(--teal);
  font-size: 1rem;
  margin: 1.6rem 0 0.5rem;
}

.legal-doc p {
  color: #4a4a4a;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.legal-doc a {
  color: var(--orange);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .legal-panel-head {
    padding: 1.1rem 1.3rem;
  }
  .legal-panel-body {
    padding: 1.4rem 1.3rem;
  }
}

/* ============================================================
   Cookie / analytics consent banner
   ============================================================ */
.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translate(-50%, 130%);
  width: min(680px, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  background: var(--teal);
  border: 1px solid rgba(255, 247, 232, 0.15);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  z-index: 2900;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.consent-banner.show {
  transform: translate(-50%, 0);
}

.consent-banner[hidden] {
  display: none;
}

.consent-text {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.consent-text i {
  color: var(--gold-w);
  font-size: 1.3rem;
  margin-top: 0.15rem;
}

.consent-text p {
  color: var(--cream);
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 0;
}

.consent-text a {
  color: var(--gold-w);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.consent-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}

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

.consent-accept {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: var(--cream);
}

.consent-accept:hover {
  background: #c85d20;
  border-color: #c85d20;
}

.consent-decline {
  background: transparent;
  border: 2px solid rgba(255, 247, 232, 0.4);
  color: var(--cream);
}

.consent-decline:hover {
  background: rgba(255, 247, 232, 0.12);
}

@media (max-width: 560px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .consent-actions {
    justify-content: flex-end;
  }
}
