/* BFFC Landing — light-first premium franchise homepage */
:root {
  --lp-bg: #faf6ef;
  --lp-surface: #ffffff;
  --lp-surface-2: #f3ece2;
  --lp-border: rgba(28, 22, 14, 0.08);
  --lp-gold: #a67c1a;
  --lp-gold-bright: #d4a24a;
  --lp-gold-dim: rgba(166, 124, 26, 0.14);
  --lp-text: #14110c;
  --lp-muted: rgba(20, 17, 12, 0.62);
  --lp-shadow: 0 20px 50px rgba(40, 28, 10, 0.08);
  --lp-shadow-lg: 0 28px 70px rgba(40, 28, 10, 0.12);
  --lp-radius: 16px;
  --lp-radius-lg: 24px;
  --lp-max: 1180px;
  --lp-section-y: clamp(56px, 7vw, 80px);
  --lp-nav-h: 72px;
}

html[data-theme="dark"] {
  --lp-bg: #0c0b09;
  --lp-surface: #141210;
  --lp-surface-2: #1c1914;
  --lp-border: rgba(255, 255, 255, 0.1);
  --lp-gold: #e8c547;
  --lp-gold-bright: #f2d56a;
  --lp-gold-dim: rgba(232, 197, 71, 0.15);
  --lp-text: #f5f2eb;
  --lp-muted: rgba(245, 242, 235, 0.68);
  --lp-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  --lp-shadow-lg: 0 32px 56px rgba(0, 0, 0, 0.35);
}

body.landing {
  background:
    radial-gradient(ellipse 90% 55% at 0% -10%, rgba(212, 162, 74, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(180, 130, 70, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(166, 124, 26, 0.06), transparent),
    var(--lp-bg);
}

html[data-theme="dark"] body.landing {
  background:
    radial-gradient(900px 500px at 10% -10%, #2b1a0f, transparent),
    radial-gradient(700px 500px at 90% 20%, #1f140c, transparent),
    var(--lp-bg);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing {
  font-family: Poppins, system-ui, sans-serif;
  color: var(--lp-text);
  overflow-x: hidden;
  line-height: 1.55;
}

.lp-container {
  width: min(var(--lp-max), 100% - 48px);
  margin-inline: auto;
}

/* ---- Nav ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--lp-nav-h);
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--lp-border);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-nav.scrolled {
  box-shadow: 0 10px 40px rgba(40, 28, 10, 0.08);
  border-bottom-color: transparent;
  background: rgba(255, 253, 248, 0.94);
}
html[data-theme="dark"] .site-nav {
  background: rgba(12, 11, 9, 0.82);
}
html[data-theme="dark"] .site-nav.scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}
.site-nav .nav-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px 22px;
  list-style: none;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--lp-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--lp-gold);
}
.nav-links a.nav-cta {
  color: #0c0b09 !important;
}
.nav-links a.nav-cta::after {
  display: none;
}
.nav-links a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 197, 71, 0.35);
}
.nav-links a.nav-cta {
  padding: 8px 18px;
  background: var(--lp-gold);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
}
html[data-theme="dark"] .nav-links a.nav-cta {
  color: #0c0b09 !important;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 12px;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: calc(var(--lp-nav-h) + 48px) 24px 56px;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 245, 236, 0.7) 45%, rgba(243, 232, 214, 0.85) 100%),
    radial-gradient(ellipse 80% 70% at 85% 15%, rgba(212, 162, 74, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 5% 90%, rgba(180, 120, 50, 0.12), transparent 50%);
  z-index: 0;
}
html[data-theme="dark"] .hero-bg {
  background:
    linear-gradient(135deg, rgba(12, 11, 9, 0.92) 0%, rgba(12, 11, 9, 0.75) 50%, rgba(20, 16, 12, 0.88) 100%),
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(232, 197, 71, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(180, 100, 50, 0.08), transparent);
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: lpOrbDrift 18s ease-in-out infinite alternate;
}
.hero-bg::before {
  width: 420px;
  height: 420px;
  top: -10%;
  right: 5%;
  background: rgba(232, 197, 71, 0.18);
}
.hero-bg::after {
  width: 320px;
  height: 320px;
  bottom: 0;
  left: -5%;
  background: rgba(200, 120, 60, 0.12);
  animation-delay: -6s;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--lp-max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--lp-gold-dim);
  border-radius: 999px;
  background: var(--lp-gold-dim);
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--lp-gold);
}
.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--lp-muted);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--lp-radius-lg);
  padding: 28px 26px;
  box-shadow: var(--lp-shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
html[data-theme="dark"] .hero-card {
  background: var(--lp-surface);
  backdrop-filter: blur(20px);
  border-color: var(--lp-border);
}
.hero-card:hover {
  border-color: rgba(166, 124, 26, 0.35);
  box-shadow: 0 36px 64px rgba(40, 28, 10, 0.14);
}
body.landing-ready .hero-card {
  animation: lpFloat 7s ease-in-out 1.1s infinite;
}
.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--lp-muted);
  margin-bottom: 8px;
}
.hero-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.hero-card p {
  font-size: 0.88rem;
  color: var(--lp-muted);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--lp-border);
}
.hero-metrics div {
  text-align: center;
}
.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
  color: var(--lp-gold);
}
.hero-metrics span {
  font-size: 0.68rem;
  color: var(--lp-muted);
  line-height: 1.3;
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 20px 24px;
}
.trust-strip .lp-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp-muted);
  transition: transform 0.35s ease, color 0.35s ease;
}
.trust-item.show:hover {
  transform: translateY(-3px);
  color: var(--lp-text);
}
.trust-item i {
  color: var(--lp-gold);
  font-size: 1rem;
  transition: transform 0.35s ease;
}
.trust-item.show:hover i {
  transform: scale(1.15);
}

/* ---- Sections ---- */
.lp-section {
  padding: var(--lp-section-y) 24px;
}
.lp-section--alt {
  background: var(--lp-surface);
}
.lp-section--dark {
  background: var(--lp-surface-2);
  color: #f5f0e6;
}
.lp-section--dark .lp-head h2 {
  color: #faf6ef;
}
.lp-section--dark .lp-head p {
  color: rgba(250, 246, 239, 0.82);
}
.lp-head {
  max-width: 640px;
  margin-bottom: 36px;
}
.lp-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.lp-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 10px;
}
.lp-head p {
  color: var(--lp-muted);
  font-size: 0.95rem;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.about-copy p {
  color: var(--lp-muted);
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lp-border);
  font-size: 0.9rem;
  font-weight: 500;
  transition: padding-left 0.35s ease, border-color 0.35s ease;
}
.feature-list li.show:hover {
  padding-left: 8px;
  border-bottom-color: rgba(232, 197, 71, 0.25);
}
.feature-list li i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lp-gold-dim);
  color: var(--lp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* Mission bento */
.mission-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mission-tile {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 22px 20px;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.lp-section--dark .mission-tile {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}
.lp-section--dark .mission-tile p {
  color: rgba(250, 246, 239, 0.92);
}
.mission-tile.show:hover {
  border-color: var(--lp-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.mission-tile i {
  transition: transform 0.35s ease;
}
.mission-tile.show:hover i {
  transform: scale(1.12) rotate(-4deg);
}
.mission-tile.wide {
  grid-column: span 2;
}
.mission-tile i {
  font-size: 1.25rem;
  color: var(--lp-gold);
  margin-bottom: 12px;
}
.mission-tile p {
  font-size: 0.86rem;
  color: var(--lp-muted);
  line-height: 1.55;
}

/* Menu bento */
.menu-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.menu-tile {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.menu-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lp-gold-dim), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.menu-tile.show:hover {
  border-color: var(--lp-gold);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}
.menu-tile.show:hover::before {
  opacity: 1;
}
.menu-tile > * {
  position: relative;
  z-index: 1;
}
.menu-tile.span-2 {
  grid-column: span 2;
}
.menu-tile .count {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(166, 124, 26, 0.72);
  line-height: 1;
}
html[data-theme="dark"] .menu-tile .count {
  color: rgba(232, 197, 71, 0.6);
}
.menu-tile i {
  color: var(--lp-gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.menu-tile h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.menu-tile p {
  font-size: 0.78rem;
  color: var(--lp-muted);
}

/* Pricing */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
.package-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.package-card.show:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
}
.package-card.featured {
  border-color: var(--lp-gold);
  box-shadow: 0 0 0 1px var(--lp-gold-dim), 0 20px 40px rgba(0, 0, 0, 0.2);
}
.package-card.featured.show {
  animation: lpGlowPulse 4s ease-in-out infinite;
}
.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--lp-gold);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}
html[data-theme="dark"] .package-badge {
  color: #0c0b09;
}
.package-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lp-gold);
  margin-bottom: 4px;
}
.package-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(20, 17, 12, 0.72);
}
html[data-theme="dark"] .package-price small {
  color: rgba(245, 242, 235, 0.68);
}
.package-list {
  list-style: none;
  margin: 20px 0 24px;
  flex: 1;
}
.package-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--lp-border);
  font-size: 0.86rem;
  color: rgba(20, 17, 12, 0.84);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
html[data-theme="dark"] .package-list li {
  color: rgba(245, 242, 235, 0.78);
}
.package-list li::before {
  content: "✓";
  color: var(--lp-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Carousel (outlets + gallery) */
.lp-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.lp-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}
.lp-slide {
  flex: 0 0 min(340px, 85vw);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lp-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.lp-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.lp-slide:hover img {
  transform: scale(1.05);
}
.lp-slide-body {
  padding: 18px 20px;
}
.lp-slide-body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.lp-slide-body p {
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.45;
}
.lp-slide-status {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--lp-gold);
  color: var(--lp-gold);
}
.lp-slide-map {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--lp-gold);
  text-decoration: none;
}
.lp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--lp-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 1.2rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.lp-carousel-btn:hover {
  background: var(--lp-gold);
  border-color: var(--lp-gold);
  color: #0c0b09;
  transform: translateY(-50%) scale(1.08);
}
html[data-theme="dark"] .lp-carousel-btn {
  background: var(--lp-surface-2);
}
.lp-carousel-btn.prev { left: 8px; }
.lp-carousel-btn.next { right: 8px; }

/* Founder block */
.founder-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.founder-photo {
  width: 100%;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.founder-quote p {
  color: var(--lp-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.founder-sign {
  margin-top: 20px;
  font-weight: 600;
  color: var(--lp-gold);
}
.founder-sign span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--lp-muted);
  margin-top: 4px;
}
.founder-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.founder-mini {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px 22px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.founder-mini.show:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 197, 71, 0.3);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}
.founder-mini .tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 10px;
  display: inline-block;
}
.founder-mini h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
}
.founder-mini p {
  font-size: 0.86rem;
  color: var(--lp-muted);
  margin-bottom: 10px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}
.contact-benefits h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.contact-benefits ul {
  list-style: none;
  margin-bottom: 20px;
}
.contact-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--lp-muted);
}
.contact-benefits li i {
  color: var(--lp-gold);
  margin-top: 3px;
}
.contact-form {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 28px 26px;
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  color: var(--lp-muted);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: inherit;
  font-size: 0.92rem;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--lp-gold);
  color: #fff;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}
.btn-primary:hover::after {
  left: 140%;
}
.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(232, 197, 71, 0.4);
}
.btn-outline:hover {
  box-shadow: 0 8px 24px rgba(232, 197, 71, 0.15);
}
html[data-theme="dark"] .btn-primary {
  color: #0c0b09;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--lp-gold);
  color: var(--lp-gold);
}
.btn-block {
  width: 100%;
}

/* Footer */
.site-footer {
  padding: 40px 24px 32px;
  border-top: 1px solid var(--lp-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--lp-muted);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-text);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  border-color: var(--lp-gold);
  color: var(--lp-gold);
}
.footer-link {
  color: var(--lp-gold);
  text-decoration: none;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: lpWhatsAppPulse 2.8s ease-in-out infinite;
}
.whatsapp:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* Section divider accent */
.lp-section--alt,
.lp-section--dark {
  position: relative;
}
.lp-section--alt::before,
.lp-section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp-gold), transparent);
  opacity: 0.5;
}

/* ---- Animations ---- */
@keyframes lpFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes lpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes lpOrbDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 6%) scale(1.08); }
}
@keyframes lpGlowPulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--lp-gold-dim), 0 20px 40px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 0 0 1px rgba(232, 197, 71, 0.5), 0 24px 48px rgba(232, 197, 71, 0.12); }
}
@keyframes lpWhatsAppPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

body.landing-ready .anim-hero {
  animation: lpFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
body.landing-ready .anim-hero-d1 { animation-delay: 0.05s; }
body.landing-ready .anim-hero-d2 { animation-delay: 0.15s; }
body.landing-ready .anim-hero-d3 { animation-delay: 0.25s; }
body.landing-ready .anim-hero-d4 { animation-delay: 0.35s; }
body.landing-ready .anim-hero-d5 { animation-delay: 0.45s; }

body.landing-ready .hero h1 em {
  display: inline-block;
  animation: lpShimmerText 3s ease-in-out 1s infinite;
}

@keyframes lpShimmerText {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.lp-head.reveal.show {
  animation: lpHeadIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes lpHeadIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .anim-hero {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none !important;
  }
  .hero-bg::before,
  .hero-bg::after,
  .package-card.featured,
  .whatsapp,
  body.landing-ready .hero-card {
    animation: none !important;
  }
  .lp-track {
    transition: none;
  }
}

/* Legacy IDs for sliders */
.outlet-slider,
.outlet-track,
.outlet-card,
.outlet-nav { /* mapped via HTML classes */ }

/* Responsive */
@media (max-width: 1024px) {
  .mission-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-tile.wide {
    grid-column: span 2;
  }
  .menu-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-tile.span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-layout,
  .contact-grid,
  .founder-block,
  .founder-duo,
  .pricing-row {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    text-align: center;
  }
  .hero-lead,
  .hero-cta {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .founder-photo {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(28, 22, 14, 0.14);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(28, 18, 8, 0.18);
    padding: 12px;
    margin-left: 0;
    align-items: stretch;
    z-index: 1002;
    backdrop-filter: blur(18px);
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #17130d;
    background: rgba(166, 124, 26, 0.08);
    font-size: 0.96rem;
    font-weight: 700;
  }
  .nav-links a:not(.nav-cta)::after {
    display: none;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: #8a6415;
    background: rgba(166, 124, 26, 0.16);
  }
  .nav-links a.nav-cta {
    justify-content: center;
    text-align: center;
    min-height: 48px;
    margin-top: 2px;
    color: #0c0b09 !important;
    background: var(--lp-gold);
  }
  html[data-theme="dark"] .nav-links {
    background: rgba(16, 15, 12, 0.98);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.48);
  }
  html[data-theme="dark"] .nav-links a {
    color: #f7f0df;
    background: rgba(255, 255, 255, 0.08);
  }
  html[data-theme="dark"] .nav-links a:hover,
  html[data-theme="dark"] .nav-links a.active {
    color: var(--lp-gold-bright);
    background: rgba(232, 197, 71, 0.14);
  }
}

@media (max-width: 600px) {
  .mission-bento,
  .menu-bento {
    grid-template-columns: 1fr;
  }
  .mission-tile.wide,
  .menu-tile.span-2 {
    grid-column: span 1;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-cta .btn {
    width: 100%;
  }
}
