:root {
  --burgundy: #6B1D2A;
  --burgundy-dark: #4A131C;
  --cream: #FDF6EC;
  --cream-light: #FFFBF5;
  --gold: #C8A45C;
  --gold-light: #E8D5A8;
  --gold-dark: #A8883C;
  --charcoal: #1A1410;
  --charcoal-light: #2A2420;
  --sage: #8BA888;
  --sage-light: #B5CCB3;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(20, 16, 14, 0.863);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.315);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 68px;
  width: auto;
  transition: var(--transition);
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 226, 206, 0.877);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

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

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a.active-page {
  color: var(--gold-light);
}

.nav-links a.active-page::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 10px 28px !important;
  border-radius: 24px;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: var(--transition) !important;
}

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

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: scale(1.08);
  color: var(--charcoal) !important;
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.3);
}

.nav-cta.active-page {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100vw;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.82), rgba(107, 29, 42, 0.5));
  z-index: 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(253, 246, 236, 0.5);
  margin-top: 16px;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-video {
  background: var(--charcoal) !important;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  --bs-btn-bg: var(--gold);
  --bs-btn-color: var(--charcoal);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold-light);
  --bs-btn-hover-color: var(--charcoal);
  --bs-btn-hover-border-color: var(--gold-light);
  --bs-btn-active-bg: var(--gold-dark);
  --bs-btn-active-color: var(--charcoal);
  --bs-btn-active-border-color: var(--gold-dark);
  --bs-btn-focus-shadow-rgb: 200, 164, 92;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 164, 92, 0.4);
}

.btn-outline {
  --bs-btn-color: var(--cream);
  --bs-btn-border-color: rgba(253, 246, 236, 0.25);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-color: var(--gold);
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-color: var(--gold-light);
  --bs-btn-active-border-color: var(--gold-light);
  --bs-btn-focus-shadow-rgb: 200, 164, 92;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(253, 246, 236, 0.25);
}

.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 164, 92, 0.15);
}

.btn-gold-outline {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-color: var(--charcoal);
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-active-bg: var(--gold-dark);
  --bs-btn-active-color: var(--charcoal);
  --bs-btn-active-border-color: var(--gold-dark);
  --bs-btn-focus-shadow-rgb: 200, 164, 92;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-gold-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 164, 92, 0.25);
}

.btn-dark {
  --bs-btn-bg: var(--charcoal);
  --bs-btn-color: var(--cream);
  --bs-btn-border-color: var(--charcoal);
  --bs-btn-hover-bg: var(--charcoal-light);
  --bs-btn-hover-color: var(--cream);
  --bs-btn-hover-border-color: var(--charcoal-light);
  --bs-btn-active-bg: var(--charcoal);
  --bs-btn-active-color: var(--cream);
  --bs-btn-active-border-color: var(--charcoal);
  --bs-btn-focus-shadow-rgb: 26, 20, 16;
  background: var(--charcoal);
  color: var(--cream);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== SECTION COMMON ===== */
section {
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--gold);
}

.section-label--no-line::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: rgba(26, 20, 16, 0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== REVEAL ===== */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

/* ===== TAGLINE BAR ===== */
.tagline-bar {
  background: var(--burgundy);
  padding: 18px 0;
  overflow: hidden;
}

.tagline-track {
  display: flex;
  gap: 48px;
  animation: scrollTagline 24s linear infinite;
  width: fit-content;
}

.tagline-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(253, 246, 236, 0.6);
  white-space: nowrap;
  letter-spacing: 1px;
}

.tagline-track span em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

@keyframes scrollTagline {
  0% {
    transform: translateX(0);
  }

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107, 29, 42, 0.3) 0%, transparent 70%);
  z-index: 1;
}

.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 92, 0.3);
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge i {
  font-size: 0.6rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(253, 246, 236, 0.7);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 450px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.hero-video {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--charcoal) 0%, transparent 50%);
}

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

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

  to {
    transform: scale(1.15);
  }
}

/* ===== SATISFIED CLIENTS ===== */
.clients-section {
  padding: 100px 0;
  background: #f8f5ef;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 92, 0.25), transparent);
}

.clients-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 92, 0.25), transparent);
}

.clients-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  position: relative;
}

.clients-title-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(107, 29, 42, 0.4);
  margin-bottom: 40px;
}

.client-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding: 8px 0;
}

.client-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.client-track-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  margin: 0 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 4px;
}

.client-logo:hover {
  transform: scale(1.08);
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(26, 20, 16, 0.12);
}

@media (max-width: 1024px) {
  .client-logo {
    width: 150px;
    height: 70px;
    margin: 0 16px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 56px 0 64px;
  }

  .clients-title-sub {
    margin-bottom: 32px;
  }

  .client-logo {
    width: 120px;
    height: 60px;
    margin: 0 12px;
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 44px 0 52px;
  }

  .client-logo {
    width: 100px;
    height: 50px;
    margin: 0 10px;
  }
}

/* ===== CUISINES ===== */
.cuisines {
  padding: 100px 0;
  background: var(--cream);
}

.cuisines .section-label,
.cuisines .section-title,
.cuisines .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cuisines .section-label::before {
  display: none;
}

.cuisines .section-desc {
  margin-bottom: 56px;
}

.cuisine-card {
  position: relative;
  height: 240px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cuisine-card.featured {
  grid-column: span 2;
  height: 240px;
}

.cuisine-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.cuisine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.75), rgba(107, 29, 42, 0.55));
  z-index: 1;
  transition: var(--transition);
}

.cuisine-card:hover .cuisine-overlay {
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.85), rgba(107, 29, 42, 0.7));
}

.cuisine-card h3 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}

.cuisine-card p {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-size: 0.8rem;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.cuisine-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOME ABOUT PREVIEW ===== */
.home-about-preview {
  padding: 100px 0;
  background: var(--cream-light);
}

.hap-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(26, 20, 16, 0.7);
  margin-bottom: 32px;
}

.hap-visual {
  position: relative;
  overflow: hidden;
}

.hap-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1536 / 896;
  object-fit: contain;
  border-radius: 4px;
}

.hap-visual::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.5;
}

.hap-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 18px 24px;
  text-align: center;
  border-radius: 4px;
}

.hap-exp-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.hap-exp-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== STATS ROW ===== */
.stats-row {
  background: var(--charcoal);
}

.stat-item {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid rgba(253, 246, 236, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(253, 246, 236, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.testimonials .section-label,
.testimonials .section-title,
.testimonials .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testimonials .section-label::before {
  display: none;
}

.testimonials .section-desc {
  margin-bottom: 48px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--cream-light);
  border: 1px solid rgba(200, 164, 92, 0.12);
  border-radius: 8px;
  padding: 36px 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(200, 164, 92, 0.15);
  transform: translateY(-5px);
}

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

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
}

.testimonial-author span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(26, 20, 16, 0.4);
  margin-top: 2px;
}

/* ===== HOME CTA ===== */
.home-cta {
  padding: 100px 0;
  background: var(--burgundy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  max-width: 100vw;
  background: radial-gradient(circle, rgba(200, 164, 92, 0.08), transparent);
  border-radius: 50%;
}

.home-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.home-cta p {
  font-size: 1.05rem;
  color: rgba(253, 246, 236, 0.55);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: #0D0A07;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(200, 164, 92, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 60px;
  width: auto;
}

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

.footer-links a {
  font-size: 0.78rem;
  color: rgba(253, 246, 236, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(253, 246, 236, 0.06);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(253, 246, 236, 0.25);
}

.footer-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(253, 246, 236, 0.06);
  flex-wrap: wrap;
}

.footer-brands span {
  font-size: 0.7rem;
  color: rgba(253, 246, 236, 0.25);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-brands a {
  font-size: 0.82rem;
  color: rgba(200, 164, 92, 0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-brands a img {
  height: 44px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-brands a:hover img {
  opacity: 1;
}

/* ===== ABOUT IMAGE GRID (lithosphere-style) ===== */
.about-grid-section {
  padding: 100px 0;
  background: var(--cream-light);
  overflow: hidden;
}

.about-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-grid-row+.about-grid-row {
  border-top: 1px solid rgba(200, 164, 92, 0.1);
}

.about-grid-img {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.about-grid-content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 36px;
}

.about-grid-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-grid-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-grid-desc {
  font-size: 0.88rem;
  color: rgba(26, 20, 16, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}

.about-grid-reverse .about-grid-content {
  order: -1;
}

@media (max-width: 900px) {

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

  .about-grid-reverse .about-grid-content {
    order: 0;
  }

  .about-grid-img {
    min-height: 240px;
  }

  .about-grid-content {
    padding: 36px 24px;
  }

  .about-grid-title {
    font-size: 1.5rem;
  }
}

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 100px 0;
  background: var(--cream-light);
}

.about-story img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.about-story p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(26, 20, 16, 0.7);
  margin-bottom: 20px;
}

.founders {
  padding: 100px 0;
  background: var(--cream);
}

.founders .section-label,
.founders .section-title,
.founders .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.founders .section-label::before {
  display: none;
}

.founders .section-desc {
  margin-bottom: 48px;
  max-width: 600px;
}

.founder-card {
  background: var(--cream-light);
  border: 1px solid rgba(200, 164, 92, 0.12);
  border-radius: 8px;
  padding: 40px 36px;
  text-align: center;
  transition: var(--transition);
}

.founder-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 56px rgba(200, 164, 92, 0.18);
  transform: translateY(-6px);
}

.founder-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--gold);
  font-family: var(--font-display);
}

.founder-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.founder-card .role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.founder-card p {
  font-size: 0.9rem;
  color: rgba(26, 20, 16, 0.6);
  line-height: 1.7;
}

.founder-card .social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin: 16px 4px 0;
  transition: var(--transition);
}

.founder-card .social a:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.legacy-section {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.legacy-section .section-title {
  color: var(--cream);
}

.legacy-section .section-desc {
  color: rgba(253, 246, 236, 0.5);
  margin-left: auto;
  margin-right: auto;
}

.legacy-grid {
  margin-top: 56px;
}

.legacy-card {
  background: rgba(253, 246, 236, 0.03);
  border: 1px solid rgba(200, 164, 92, 0.08);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.legacy-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 56px rgba(200, 164, 92, 0.18);
  transform: translateY(-6px);
}

.legacy-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.legacy-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.legacy-card p {
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.5);
  line-height: 1.6;
}



/* ===== GALLERY PAGE ===== */
.gallery-page {
  padding: 100px 0;
  background: var(--cream-light);
}

.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.gallery-filter button {
  padding: 8px 22px;
  border-radius: 20px;
  border: 1.5px solid rgba(200, 164, 92, 0.2);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter button:hover,
.gallery-filter button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 12px;
  overflow: hidden;
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-masonry .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

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

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 100px 0;
  background: var(--cream-light);
}

.contact-card {
  background: var(--cream);
  border: 1px solid rgba(200, 164, 92, 0.12);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(200, 164, 92, 0.18);
}

.contact-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.85rem;
  color: rgba(26, 20, 16, 0.5);
  line-height: 1.6;
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}

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

.contact-page .contact-social-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.contact-page .contact-social-wrap .social-big {
  display: flex;
  gap: 16px;
}

.contact-page .contact-social-wrap .social-big a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid rgba(200, 164, 92, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}

.contact-page .contact-social-wrap .social-big a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.map-placeholder {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 92, 0.1);
  height: 320px;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(253, 246, 236, 0.3);
  gap: 12px;
}

.map-placeholder i {
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.4;
}

.map-placeholder span {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.map-placeholder a {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
}

/* ===== FLOATING CTAs ===== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-btn-whatsapp:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.floating-btn-phone {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.4);
}

.floating-btn-phone:hover {
  box-shadow: 0 6px 28px rgba(200, 164, 92, 0.55);
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--charcoal);
  border-top: 1px solid rgba(200, 164, 92, 0.12);
  padding: 8px 12px;
  gap: 8px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.mobile-cta-btn i {
  font-size: 0.9rem;
}

.mobile-cta-btn-enquiry {
  background: var(--gold);
  color: var(--charcoal);
}

.mobile-cta-btn-call {
  background: rgba(253, 246, 236, 0.08);
  border: 1px solid rgba(200, 164, 92, 0.2);
}

.mobile-cta-btn-whatsapp {
  background: #25D366;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }

  .footer {
    padding-bottom: calc(24px + 70px);
  }

  .floating-actions {
    bottom: 84px;
  }
}

/* ===== HERO ENHANCEMENTS ===== */
.hero-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-float::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: conic-gradient(#C8A45C 0deg 180deg, #000000 180deg 360deg);
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}

@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

.hero-float-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-float-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-float-1 {
  width: 150px;
  height: 150px;
  right: 5%;
  top: 10%;
  animation-delay: 0s;
}

.hero-float-2 {
  width: 110px;
  height: 110px;
  right: 16%;
  bottom: 15%;
  animation-delay: 2.5s;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-orn-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-orn-crown {
  font-size: 1.1rem;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(200, 164, 92, 0.4));
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1s forwards;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(253, 246, 236, 0.55);
  letter-spacing: 0.3px;
}

.hero-trust-item i,
.hero-trust-item .star {
  color: var(--gold);
  font-size: 0.7rem;
}

.hero-trust-item strong {
  color: var(--gold-light);
  font-weight: 600;
}



/* ===== PROCESS TIMELINE ===== */
.process {
  padding: 100px 0;
  background: var(--cream);
}

.process .section-label,
.process .section-title,
.process .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.process .section-label::before {
  display: none;
}

.process .section-desc {
  margin-bottom: 56px;
}

.process-steps {
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 164, 92, 0.2));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  transition: all 0.4s ease;
}

.process-step:hover .process-step-num {
  background: var(--gold);
  color: var(--charcoal);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(200, 164, 92, 0.3);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.82rem;
  color: rgba(26, 20, 16, 0.5);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid rgba(200, 164, 92, 0.12);
  border-radius: 8px;
  padding: 32px;
}

.contact-form-wrap h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: 6px;
}

.contact-form-wrap .form-sub {
  font-size: 0.85rem;
  color: rgba(26, 20, 16, 0.5);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.5);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(200, 164, 92, 0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream-light);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    height: 100dvh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: var(--transition);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero {
    flex-direction: column;
  }

  .hero-left {
    padding: 100px 32px 40px;
  }

  .hero-right {
    min-height: 40vh;
  }

  .hero-overlay {
    background: linear-gradient(0deg, var(--charcoal) 0%, transparent 50%);
  }

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

  .about-grid-img {
    min-height: 240px;
  }

  .about-grid-content {
    padding: 36px 24px;
  }

  .about-grid-title {
    font-size: 1.5rem;
  }

  .about-story img {
    height: 360px;
  }

  .legacy-grid {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-steps::before {
    display: none;
  }

  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 0 20px;
  }

  .nav-logo img {
    height: 54px;
  }

  .nav-logo span {
    font-size: 1rem;
  }

  .hero-left {
    padding: 90px 20px 32px;
  }

  .hero-content {
    text-align: center;
  }

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

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

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .cuisines {
    padding: 80px 0;
  }

  .cuisine-card {
    height: 200px;
  }

  .home-about-preview {
    padding: 80px 0;
  }

  .hap-visual {
    margin-top: 32px;
  }

  .hap-exp-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    display: inline-block;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonial-card {
    flex: 0 0 300px;
    padding: 28px 24px;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .about-story {
    padding: 80px 0;
  }

  .about-story img {
    height: 280px;
    margin-bottom: 24px;
  }

  .founders {
    padding: 80px 0;
  }

  .legacy-section {
    padding: 80px 0;
  }

  .gallery-page {
    padding: 80px 0;
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 8px;
  }

  .gallery-masonry .gallery-item {
    margin-bottom: 8px;
  }

  .contact-page {
    padding: 80px 0;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .process {
    padding: 80px 0;
  }

  .hero-float {
    display: none;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-item {
    padding: 32px 12px;
  }
}

/* ===== VERY SMALL SCREENS (320px – 480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav {
    padding: 0 16px;
  }

  .hero-left {
    padding: 90px 16px 32px;
  }

  .hero-right {
    min-height: 30vh;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .testimonial-card {
    flex: 0 0 calc(100vw - 56px);
    padding: 24px 20px;
  }

  .about-grid-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .about-grid-content {
    padding: 28px 16px;
  }

  .cuisine-grid {
    gap: 8px;
  }

  .cuisine-card {
    height: 180px;
  }

  .about-story img {
    height: 220px;
  }

  .hap-visual {
    margin-top: 24px;
  }

  .page-hero {
    padding: 120px 0 50px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 0.9rem;
    padding: 0 16px;
  }

  .hero-actions .btn {
    padding: 10px 18px;
    font-size: 0.75rem;
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 6px;
  }

  .gallery-masonry .gallery-item {
    margin-bottom: 6px;
  }

  .process-steps {
    max-width: 100%;
  }

  .founder-card {
    padding: 28px 20px;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .mobile-cta-bar {
    padding: 6px 8px;
  }

  .floating-actions {
    right: 12px;
    bottom: 80px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-left {
    padding: 80px 12px 24px;
  }

  .testimonial-card {
    flex: 0 0 calc(100vw - 40px);
    padding: 20px 16px;
  }

  .cuisine-card {
    height: 160px;
  }

  .cuisine-card h3 {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-item {
    padding: 24px 8px;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .mobile-cta-btn {
    font-size: 0.65rem;
    padding: 8px 6px;
  }

  .mobile-cta-btn i {
    font-size: 0.75rem;
  }
}