/* =========================================================
   ISLAND SPICE — style.css
   Nassau, Bahamas | Bahamian Restaurant
   ========================================================= */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --salmon:       hsl(16, 76%, 61%);   /* #e76f51 */
  --forest:       hsl(150, 40%, 15%);  /* #1b4332 */
  --forest-mid:   hsl(150, 35%, 22%);  /* slightly lighter forest */
  --forest-light: hsl(150, 30%, 28%);
  --snow:         hsl(0, 0%, 98%);     /* #fafafa */
  --near-black:   hsl(0, 0%, 5%);      /* #0d0d0d */
  --blood-red:    hsl(355, 87%, 44%);  /* #c1121f */
  --cream:        hsl(40, 30%, 96%);
  --cream-mid:    hsl(38, 25%, 92%);

  /* Text */
  --text-primary:   var(--near-black);
  --text-secondary: hsl(0, 0%, 30%);
  --text-tertiary:  hsl(0, 0%, 50%);
  --text-on-dark:   hsl(0, 0%, 95%);
  --text-on-dark-2: hsl(0, 0%, 70%);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5rem;
  --text-hero: clamp(4rem, 10vw, 8.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Shadows */
  --shadow-xs: 0 1px 2px hsl(0 0% 0% / 0.06);
  --shadow-sm: 0 2px 8px hsl(0 0% 0% / 0.08);
  --shadow-md: 0 4px 20px hsl(0 0% 0% / 0.12);
  --shadow-lg: 0 8px 40px hsl(0 0% 0% / 0.16);
  --shadow-xl: 0 20px 60px hsl(0 0% 0% / 0.22);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-fast:   0.15s ease;
  --ease-normal: 0.25s ease;
  --ease-slow:   0.5s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--snow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  border: 1.5px dashed hsl(38, 20%, 78%);
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, hsl(16, 76%, 61%, 0.04) 50%, transparent 70%);
}
.placeholder-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 var(--sp-4);
}
.map-note {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: var(--sp-1);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal          { transform: translateY(28px); }
.reveal-left     { transform: translateX(-40px); }
.reveal-right    { transform: translateX(40px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.reveal-group .reveal:nth-child(1) { transition-delay: 0.0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-full);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), background var(--ease-normal), color var(--ease-normal);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0);    box-shadow: var(--shadow-xs); }

.btn-primary {
  background: var(--salmon);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: hsl(16, 80%, 55%); }

.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid hsl(0, 0%, 100%, 0.45);
}
.btn-ghost:hover { background: hsl(0, 0%, 100%, 0.12); border-color: white; }

.btn-whatsapp {
  background: hsl(142, 70%, 35%);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { background: hsl(142, 72%, 30%); }

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

.btn-large {
  padding: var(--sp-4) var(--sp-12);
  font-size: var(--text-base);
}

/* ===== SECTION LABELS & HEADINGS ===== */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: var(--sp-4);
  display: block;
}
.section-label.light { color: hsl(16, 76%, 75%); }

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-5xl);
  line-height: 1.05;
  color: var(--near-black);
  margin-bottom: var(--sp-6);
}
.section-heading.light { color: var(--snow); }

.section-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: 1.65;
}
.section-sub.light { color: var(--text-on-dark-2); }

.section-header {
  text-align: center;
  padding: var(--sp-20) var(--sp-8) var(--sp-12);
}

/* =============================
   HEADER / NAV
   ============================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--ease-slow), box-shadow var(--ease-slow);
}
.site-header.scrolled {
  background: hsl(150, 40%, 13%, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  padding: var(--sp-6) var(--sp-8);
  max-width: 1400px;
  margin: 0 auto;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: hsl(0, 0%, 90%);
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--salmon);
  transition: width var(--ease-normal);
}
.nav-link:hover { color: white; }
.nav-link:hover::after { width: 100%; }

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  text-align: center;
  transition: opacity var(--ease-fast);
}
.logo-wrap:hover { opacity: 0.85; }
.logo-symbol {
  color: var(--salmon);
  font-size: 0.7rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: white;
  white-space: nowrap;
}
.nav-cta {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--salmon);
  padding: var(--sp-2) var(--sp-6);
  border-radius: var(--radius-full);
  transition: transform var(--ease-fast), background var(--ease-normal);
}
.nav-cta:hover { background: hsl(16, 80%, 55%); transform: translateY(-1px); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: transform var(--ease-fast), opacity var(--ease-fast);
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: hsl(150, 40%, 10%, 0.98);
  backdrop-filter: blur(16px);
}
.mobile-drawer .nav-link { font-size: var(--text-base); color: white; }
.mobile-drawer .nav-cta  { font-size: var(--text-base); }
.mobile-drawer.open { display: flex; }

/* =============================
   HERO
   ============================= */
.hero {
  min-height: 100vh;
  background: var(--forest);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Animated abstract shapes */
.hero-shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.12;
}
.shape-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--salmon) 0%, transparent 70%);
  top: -20%;
  right: -15%;
  animation: floatA 14s ease-in-out infinite;
}
.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(40, 80%, 60%) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  animation: floatB 18s ease-in-out infinite;
}
.shape-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, hsl(16, 76%, 55%) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  opacity: 0.08;
  animation: floatA 22s ease-in-out infinite reverse;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-30px, 20px) scale(1.05); }
  66%       { transform: translate(20px, -30px) scale(0.97); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(40px, -20px) scale(1.08); }
  70%       { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--sp-8);
  max-width: 1200px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: var(--sp-6);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 0.95;
  color: var(--snow);
  margin-bottom: var(--sp-8);
}
.hero-headline em {
  font-style: italic;
  color: var(--salmon);
}
.hero-sub {
  font-size: var(--text-xl);
  color: var(--text-on-dark-2);
  font-weight: 300;
  margin-bottom: var(--sp-10);
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--salmon), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Hero entrance animation */
.hero-eyebrow.reveal   { transition-delay: 0.1s; }
.hero-headline.reveal  { transition-delay: 0.25s; }
.hero-sub.reveal       { transition-delay: 0.4s; }
.hero-actions.reveal   { transition-delay: 0.55s; }

/* =============================
   MARQUEE STRIP
   ============================= */
.marquee-strip {
  background: var(--salmon);
  overflow: hidden;
  padding: var(--sp-4) 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  font-style: italic;
  color: white;
}
.marquee-track .dot {
  font-size: 0.5rem;
  color: hsl(0, 0%, 100%, 0.5);
  font-style: normal;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================
   ABOUT
   ============================= */
.about {
  padding: var(--sp-32) var(--sp-8);
  background: var(--snow);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(16, 76%, 61%, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.about-text { max-width: 540px; }
.about-text .section-label { margin-bottom: var(--sp-3); }
.about-text .section-heading { font-size: var(--text-4xl); margin-bottom: var(--sp-6); }
.about-body {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: var(--sp-6);
}
.about-image-col {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 340px 180px;
  gap: var(--sp-4);
}
.about-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  min-height: 300px;
}
.about-stat-card {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: var(--forest);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--salmon);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--text-on-dark-2);
  margin-top: var(--sp-2);
  text-align: center;
  line-height: 1.4;
}
.about-img-sm {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  border-radius: var(--radius-lg);
}

/* =============================
   MENU SECTION
   ============================= */
.menu-section {
  background: var(--forest);
  padding-bottom: var(--sp-24);
  position: relative;
  overflow: hidden;
}
.menu-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsl(150, 40%, 28%, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

/* Tab Nav */
.tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding: 0 var(--sp-8) var(--sp-12);
}
.tab-btn {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  border: 1.5px solid hsl(0, 0%, 100%, 0.2);
  color: var(--text-on-dark-2);
  background: transparent;
  transition: background var(--ease-normal), color var(--ease-normal), border-color var(--ease-normal), transform var(--ease-fast);
}
.tab-btn:hover {
  background: hsl(0, 0%, 100%, 0.08);
  color: white;
  border-color: hsl(0, 0%, 100%, 0.35);
  transform: translateY(-1px);
}
.tab-btn.active {
  background: var(--salmon);
  color: white;
  border-color: var(--salmon);
}

/* Tab Panels */
.tab-panel {
  display: none;
  padding: 0 var(--sp-8);
  max-width: 1300px;
  margin: 0 auto;
}
.tab-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-6);
}
.sides-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.menu-card {
  background: hsl(150, 35%, 18%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid hsl(150, 35%, 24%);
  transition: transform var(--ease-normal), box-shadow var(--ease-normal), border-color var(--ease-normal);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(150, 35%, 32%);
}
.menu-img {
  height: 180px;
  border-radius: 0;
  background: hsl(150, 30%, 15%);
  transition: transform var(--ease-slow);
  overflow: hidden;
}
.menu-card:hover .menu-img {
  transform: scale(1.04);
}
.menu-info {
  padding: var(--sp-6);
}
.menu-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.menu-name-row h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--snow);
  line-height: 1.2;
}
.menu-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--salmon);
  white-space: nowrap;
}
.menu-info p {
  font-size: var(--text-sm);
  color: var(--text-on-dark-2);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: var(--sp-4);
}
.menu-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--salmon);
  background: hsl(16, 76%, 61%, 0.12);
  border: 1px solid hsl(16, 76%, 61%, 0.25);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}

/* =============================
   PRICING
   ============================= */
.pricing-section {
  background: var(--cream);
  padding: var(--sp-32) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.pricing-section::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsl(16, 76%, 61%, 0.08) 0%, transparent 70%);
}
.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.pricing-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0 auto var(--sp-12);
  line-height: 1.7;
}
.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  border: 1.5px solid hsl(38, 20%, 88%);
  position: relative;
  transition: transform var(--ease-normal), box-shadow var(--ease-normal);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  background: var(--forest);
  border-color: var(--forest);
}
.price-from {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--sp-2);
}
.price-card.featured .price-from { color: var(--text-on-dark-2); }
.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--near-black);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.price-card.featured .price-amount { color: var(--salmon); }
.price-category {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
}
.price-card.featured .price-category { color: var(--text-on-dark-2); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--salmon);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* =============================
   GALLERY
   ============================= */
.gallery-section {
  background: var(--snow);
  padding-bottom: var(--sp-24);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: var(--sp-3);
  padding: 0 var(--sp-8);
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-md); }
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials-section {
  background: var(--forest);
  padding-bottom: var(--sp-24);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, hsl(16, 76%, 61%, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  padding: 0 var(--sp-8);
  max-width: 1280px;
  margin: 0 auto;
}
.testimonial-card {
  background: hsl(150, 38%, 18%);
  border: 1px solid hsl(150, 35%, 25%);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: transform var(--ease-normal), box-shadow var(--ease-normal);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stars {
  color: var(--salmon);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-on-dark-2);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.author-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  overflow: hidden;
}
.author-avatar span { font-size: var(--text-xs); color: var(--text-tertiary); }
.author-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--snow);
}
.author-title {
  font-size: var(--text-xs);
  color: var(--text-on-dark-2);
  margin-top: 2px;
}

/* =============================
   LOCATION
   ============================= */
.location-section {
  background: var(--snow);
  padding: var(--sp-32) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.location-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(150, 40%, 15%, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.location-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-20);
  align-items: center;
}
.location-info .section-heading {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-8);
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.detail-icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}
.detail-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--sp-1);
}
.detail-value {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}
.detail-link {
  font-size: var(--text-base);
  color: var(--forest);
  font-weight: 500;
  transition: color var(--ease-fast);
}
.detail-link:hover { color: var(--salmon); }
.cta-group {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.map-placeholder {
  height: 480px;
  border-radius: var(--radius-xl);
  width: 100%;
}

/* =============================
   FOOTER
   ============================= */
.site-footer {
  background: var(--near-black);
  padding: var(--sp-20) var(--sp-8) 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid hsl(0, 0%, 100%, 0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer-logo .logo-symbol { font-size: 0.6rem; }
.footer-logo span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: white;
}
.footer-tagline {
  font-size: var(--text-sm);
  color: var(--text-on-dark-2);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.footer-socials {
  display: flex;
  gap: var(--sp-4);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid hsl(0, 0%, 100%, 0.15);
  color: var(--text-on-dark-2);
  transition: border-color var(--ease-fast), color var(--ease-fast), transform var(--ease-fast);
}
.social-link:hover { border-color: var(--salmon); color: var(--salmon); transform: translateY(-2px); }

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(0, 0%, 60%);
  margin-bottom: var(--sp-5);
}
.footer-link {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-on-dark-2);
  margin-bottom: var(--sp-3);
  transition: color var(--ease-fast);
}
.footer-link:hover { color: var(--salmon); }
.footer-text {
  font-size: var(--text-sm);
  color: var(--text-on-dark-2);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}
.footer-note { margin-top: var(--sp-2); font-size: var(--text-xs); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: hsl(0, 0%, 35%);
}
.footer-credit .footer-link {
  display: inline;
  font-size: var(--text-xs);
  color: hsl(0, 0%, 35%);
}
.footer-credit .footer-link:hover { color: var(--salmon); }

/* =============================
   FLOATING WHATSAPP BUTTON
   ============================= */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: hsl(142, 70%, 35%);
  color: white;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), background var(--ease-normal);
  animation: floatPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px hsl(142, 70%, 35%, 0.5);
  background: hsl(142, 72%, 30%);
}
.whatsapp-label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: var(--shadow-xl), 0 0 0 0 hsl(142, 70%, 35%, 0.3); }
  50%       { box-shadow: var(--shadow-xl), 0 0 0 10px hsl(142, 70%, 35%, 0); }
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1100px) {
  .about-inner        { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about-text         { max-width: 100%; }
  .about-image-col    { grid-template-rows: 280px 140px; }
  .pricing-highlights { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .location-inner     { grid-template-columns: 1fr; }
  .map-placeholder    { height: 340px; }
}

@media (max-width: 768px) {
  :root {
    --text-hero: clamp(3rem, 14vw, 5.5rem);
  }
  .header-inner { padding: var(--sp-4) var(--sp-6); }
  .nav-left, .nav-right, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; margin-left: auto; }
  .logo-wrap { margin: 0 auto 0 0; }

  .section-heading { font-size: var(--text-4xl); }
  .hero-sub { font-size: var(--text-base); }
  .hero-actions { flex-direction: column; align-items: center; }

  .about { padding: var(--sp-16) var(--sp-6); }
  .about-image-col { display: none; }

  .menu-grid { grid-template-columns: 1fr; }
  .pricing-highlights { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; height: 260px; }
  .gallery-item.wide  { grid-column: span 2; height: 200px; }
  .gallery-item       { height: 180px; }

  .testimonials-grid  { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .tab-nav            { gap: var(--sp-2); }
  .tab-btn            { font-size: var(--text-xs); padding: var(--sp-2) var(--sp-4); }

  .whatsapp-label { display: none; }
  .whatsapp-float { padding: var(--sp-4); border-radius: var(--radius-full); }

  /* Disable parallax on mobile */
  .parallax-section { background-attachment: scroll; }
}

@media (max-width: 500px) {
  .section-header { padding: var(--sp-12) var(--sp-4) var(--sp-8); }
  .menu-section, .gallery-grid, .testimonials-grid, .pricing-section,
  .location-section, .about { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .tab-nav { padding: 0 var(--sp-4) var(--sp-8); }
  .tab-panel { padding: 0 var(--sp-4); }
  .btn-large { padding: var(--sp-4) var(--sp-8); font-size: var(--text-sm); }
  .pricing-highlights { grid-template-columns: 1fr 1fr; }
  .price-amount { font-size: var(--text-4xl); }
}
