:root {
  --bg: #0a0a0a;
  --fg: #e8e4df;
  --accent: #c4944a;
  --accent-dim: #8b6832;
  --accent-fire: #b83c14;
  --surface: #141414;
  --surface-raised: #1c1c1c;
  --muted: #6b6560;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Space Grotesk', -apple-system, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Payment success banner */
.payment-banner {
  background: linear-gradient(135deg, rgba(196, 148, 74, 0.15) 0%, rgba(196, 148, 74, 0.05) 100%);
  border-bottom: 1px solid rgba(196, 148, 74, 0.3);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.payment-banner-icon {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 148, 74, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
}

.nav-dot {
  color: var(--accent-dim);
  opacity: 0.6;
}

.nav-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-link--active {
  color: var(--fg);
}

.nav-link--cta {
  color: #0a0a0a;
  background: var(--accent);
  padding: 0.55rem 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: none;
  transition: all 0.2s;
}

.nav-link--cta:hover {
  background: #d4a45a;
  color: #0a0a0a;
}

/* Nav solidifies on scroll */
.site-nav--scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: rgba(196, 148, 74, 0.15);
}

/* Hamburger — hidden on desktop, visible on mobile */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  margin: 4px 0;
  transition: all 0.25s ease;
}

.nav-hamburger--open .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger--open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger--open .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  opacity: 1;
  color: var(--accent);
}

.mobile-menu-link--cta {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: #0a0a0a;
  padding: 1rem 3rem;
  opacity: 1;
}

.mobile-menu-link--cta:hover,
.mobile-menu-link--cta:active {
  background: #d4a45a;
  color: #0a0a0a;
}

/* Floating Book CTA — bottom right corner after hero */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 80;
  background: var(--accent);
  color: #0a0a0a;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(196, 148, 74, 0.35), 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.floating-cta--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta:hover {
  background: #d4a45a;
}

.floating-cta-dismiss {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(196, 148, 74, 0.3);
  border-radius: 50%;
  color: var(--accent);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.floating-cta:hover .floating-cta-dismiss {
  display: flex;
}

.floating-cta-dismiss:hover {
  background: rgba(30, 20, 10, 0.95);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Atmospheric layers */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atm-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.atm-layer--fire {
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(184, 60, 20, 0.12) 0%, transparent 70%);
  animation: breathe 6s ease-in-out infinite alternate;
}

.atm-layer--ember {
  top: 20%;
  right: 10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(196, 148, 74, 0.05) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite alternate-reverse;
}

.atm-layer--agave {
  bottom: 30%;
  left: 5%;
  width: 30%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(60, 90, 40, 0.06) 0%, transparent 70%);
  animation: breathe 10s ease-in-out infinite alternate;
}

@keyframes breathe {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.atm-layer--ember,
.atm-layer--agave {
  animation-name: breathe-fixed;
}

@keyframes breathe-fixed {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

/* Titles row */
.hero-identity {
  margin-bottom: 2.5rem;
}

.hero-titles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-title-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

.hero-sep {
  color: var(--accent-dim);
  opacity: 0.5;
}

/* Name — the main event */
.hero-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  color: var(--fg);
}

.hero-name-first {
  display: block;
  font-size: clamp(4.5rem, 12vw, 10rem);
  letter-spacing: -0.01em;
}

.hero-name-last {
  display: block;
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 228, 223, 0.65);
  line-height: 1.65;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* DNA markers */
.hero-dna {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.dna-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dna-mark {
  font-size: 0.4rem;
  color: var(--accent-fire);
  opacity: 0.7;
}

.dna-text {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 400;
}

.dna-divider {
  width: 1px;
  height: 18px;
  background: rgba(196, 148, 74, 0.2);
}

/* CTAs */
.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: rgba(232, 228, 223, 0.5);
  border: 1px solid rgba(232, 228, 223, 0.12);
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(232, 228, 223, 0.3);
}

/* Discretion note */
.hero-note {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  opacity: 0.65;
  font-style: italic;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(196, 148, 74, 0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* ============================================================
   THE STORY SECTION
   ============================================================ */

.story {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(196, 148, 74, 0.1);
  border-bottom: 1px solid rgba(196, 148, 74, 0.1);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.story-header {
  max-width: 700px;
  margin-bottom: 5rem;
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.story-title em {
  font-style: italic;
  color: var(--accent);
}

.story-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
}

/* Heritage banner */
.story-heritage {
  margin-bottom: 6rem;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(196, 148, 74, 0.15);
  background: var(--surface-raised);
  position: relative;
  overflow: hidden;
}

.story-heritage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-fire), var(--accent), transparent);
  opacity: 0.4;
}

.heritage-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 1.25rem;
}

.heritage-lineage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.25rem;
}

.hl-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg);
  opacity: 0.9;
}

.hl-sep {
  color: var(--accent-dim);
  opacity: 0.4;
  font-size: 0.9rem;
}

.heritage-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.5rem;
}

.heritage-note--purep {
  margin-top: 0.35rem;
  font-style: italic;
  opacity: 0.75;
}

/* Chapters */
.story-chapters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 6rem;
  border: 1px solid rgba(196, 148, 74, 0.08);
}

.chapter {
  padding: 3.5rem 3.5rem;
  border-bottom: 1px solid rgba(196, 148, 74, 0.08);
  border-right: 1px solid rgba(196, 148, 74, 0.08);
  transition: background 0.3s;
}

.chapter:nth-child(even) {
  border-right: none;
}

.chapter:nth-last-child(-n+2) {
  border-bottom: none;
}

.chapter:hover {
  background: rgba(196, 148, 74, 0.02);
}

.chapter-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.chapter-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-fire);
  opacity: 0.7;
  flex-shrink: 0;
}

.chapter-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
}

.chapter-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.chapter-body p:last-child {
  margin-bottom: 0;
}

.chapter-body em {
  font-style: italic;
  color: rgba(232, 228, 223, 0.75);
}

.chapter-quote {
  font-family: var(--font-display);
  font-size: 1.05rem !important;
  font-style: italic;
  color: var(--fg) !important;
  opacity: 0.85;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 2px solid rgba(196, 148, 74, 0.3);
  margin: 1rem 0 !important;
}

/* Story statement */
.story-statement {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.statement-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 148, 74, 0.25), transparent);
}

.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  text-align: center;
  opacity: 0.75;
  white-space: nowrap;
  border: none;
  padding: 0;
}

/* ============================================================
   CLOSING SECTION UPDATES
   ============================================================ */

.closing blockquote p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
}

.closing-translation {
  font-style: normal;
  font-size: 0.75em;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}

.closing blockquote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--accent-dim);
  opacity: 0.75;
}

.closing-vision p {
  margin-bottom: 1rem;
}

.closing-vision p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   FOOTER UPDATES
   ============================================================ */

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-titles {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--fg);
}

.footer-link--cta {
  color: var(--accent);
  border: 1px solid rgba(196, 148, 74, 0.3);
  padding: 0.4rem 0.9rem;
}

.footer-link--cta:hover {
  background: rgba(196, 148, 74, 0.08);
}

.footer-note {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.55;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 148, 74, 0.06);
}

.footer-copy,
.footer-tm {
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.45;
  letter-spacing: 0.05em;
}

/* ============================================================
   LEGACY PHILOSOPHY STYLES (now replaced by .story)
   Keep for fallback; will be removed next refactor
   ============================================================ */

/* Philosophy */
.philosophy {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(196, 148, 74, 0.1);
  border-bottom: 1px solid rgba(196, 148, 74, 0.1);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.philosophy-grid {
  display: grid;
  gap: 5rem;
}

.philosophy-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--fg);
}

.philosophy-statement h2 em {
  font-style: italic;
  color: var(--accent);
}

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

.pillar {
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 148, 74, 0.2);
}

.pillar-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-dim);
  display: block;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Services */
.services {
  padding: 8rem 2rem;
  background: var(--bg);
}

.services-inner {
  max-width: 900px;
  margin: 0 auto;
}

.services-list {
  display: grid;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(196, 148, 74, 0.08);
  align-items: start;
}

.service-item:first-child {
  border-top: 1px solid rgba(196, 148, 74, 0.08);
}

.service-icon {
  color: var(--accent);
  font-size: 0.6rem;
  padding-top: 0.6rem;
  text-align: center;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.service-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(196, 148, 74, 0.1);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing blockquote {
  margin-bottom: 3rem;
}

.closing blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
}

.closing-vision p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(196, 148, 74, 0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
}

.footer-location {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ============================================================
   RESILENCIA® TEQUILA SECTION
   Dark volcanic, fire, drama. Salvaje Añejo as centerpiece.
   ============================================================ */

.tequila {
  padding: 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.tequila::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(180, 60, 20, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 148, 74, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(120, 30, 10, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.tequila-inner {
  position: relative;
  z-index: 1;
}

/* Salvaje Hero */
.salvaje-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: center;
}

.salvaje-bottle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem;
  background: radial-gradient(
    ellipse at center,
    rgba(180, 60, 20, 0.18) 0%,
    rgba(120, 30, 10, 0.08) 40%,
    transparent 70%
  );
}

.salvaje-bottle::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(180, 80, 20, 0.25) 0%, transparent 70%);
  filter: blur(20px);
}

.salvaje-fire {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: linear-gradient(to top, rgba(200, 80, 20, 0.6), transparent);
  filter: blur(4px);
  animation: flicker 2.5s ease-in-out infinite alternate;
}

@keyframes flicker {
  0% { opacity: 0.4; transform: translateX(-50%) scaleX(1); }
  33% { opacity: 0.9; transform: translateX(-48%) scaleX(1.3); }
  66% { opacity: 0.6; transform: translateX(-52%) scaleX(0.8); }
  100% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

.salvaje-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(180, 60, 20, 0.35)) drop-shadow(0 0 80px rgba(196, 148, 74, 0.1));
  position: relative;
  z-index: 1;
}

.salvaje-content {
  padding: 6rem 5rem 6rem 3rem;
}

.salvaje-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196, 148, 74, 0.6);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.salvaje-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.salvaje-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0.85;
}

.salvaje-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(232, 228, 223, 0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.salvaje-desc strong {
  color: var(--fg);
  font-weight: 600;
}

.salvaje-meta {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(196, 148, 74, 0.15);
  border-bottom: 1px solid rgba(196, 148, 74, 0.15);
}

.salvaje-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  font-weight: 600;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg);
  font-weight: 400;
}

.salvaje-founders {
  margin-top: 1.25rem;
  opacity: 0.5;
}

/* Tequila philosophy divider */
.tequila-philosophy {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 4rem;
  border-top: 1px solid rgba(196, 148, 74, 0.08);
  border-bottom: 1px solid rgba(196, 148, 74, 0.08);
}

.philosophy-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 148, 74, 0.3), transparent);
}

.tequila-philosophy-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  text-align: center;
  white-space: nowrap;
}

/* Lineup */
.lineup-section {
  padding: 6rem 4rem;
}

.lineup-header {
  margin-bottom: 4rem;
}

.lineup-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 1rem;
  max-width: 500px;
  line-height: 1.7;
}

.lineup-grid {
  display: grid;
  gap: 0;
  max-width: 900px;
}

.lineup-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(196, 148, 74, 0.08);
  align-items: start;
}

.lineup-item:first-child {
  border-top: 1px solid rgba(196, 148, 74, 0.08);
}

.lineup-item--crown {
  border-color: rgba(196, 148, 74, 0.25);
  position: relative;
}

.lineup-item--crown::before {
  content: '';
  position: absolute;
  left: -4rem;
  right: -4rem;
  top: 0;
  bottom: 0;
  background: rgba(196, 148, 74, 0.03);
  pointer-events: none;
}

.lineup-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-dim);
  padding-top: 0.4rem;
}

.lineup-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lineup-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  opacity: 0.75;
}

.lineup-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.crown-badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(196, 148, 74, 0.15);
  color: var(--accent);
  padding: 0.2em 0.6em;
  border-radius: 2px;
  font-weight: 600;
  vertical-align: middle;
}

/* ============================================================
   CARTEL CREW SECTION
   ============================================================ */

.cartel-crew {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(196, 148, 74, 0.1);
  border-bottom: 1px solid rgba(196, 148, 74, 0.1);
}

.cartel-crew-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.crew-header {
  margin-bottom: 5rem;
  max-width: 680px;
}

.crew-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.crew-title em {
  font-style: italic;
  color: var(--accent);
}

.crew-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.crew-card {
  padding: 2rem;
  border: 1px solid rgba(196, 148, 74, 0.12);
  background: var(--surface-raised);
}

.crew-card-icon {
  color: var(--accent);
  font-size: 0.55rem;
  margin-bottom: 1.25rem;
}

.crew-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.crew-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.crew-philosophy {
  margin-bottom: 4rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(196, 148, 74, 0.1);
  border-bottom: 1px solid rgba(196, 148, 74, 0.1);
}

.crew-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  text-align: center;
  border: none;
  padding: 0;
}

.crew-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  font-style: normal;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.crew-cta-block {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.crew-tier {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tier-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--fg);
}

.tier-desc {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: #d4a45a;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(196, 148, 74, 0.5);
}

.btn-secondary:hover {
  background: rgba(196, 148, 74, 0.08);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(107, 101, 96, 0.35);
}

.btn-outline:hover {
  color: var(--fg);
  border-color: rgba(232, 228, 223, 0.3);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ============================================================
   CONTACT / BOOKING SECTION
   ============================================================ */

.contact {
  padding: 8rem 2rem;
  background: var(--bg);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 5rem;
  max-width: 600px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 1rem;
}

.contact-title em {
  font-style: italic;
  color: var(--accent);
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

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

/* CTA Cards */
.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-card {
  padding: 2rem;
  border: 1px solid rgba(196, 148, 74, 0.12);
}

.cta-card--primary {
  background: var(--surface);
  border-color: rgba(196, 148, 74, 0.2);
}

.cta-card--secondary {
  background: var(--surface-raised);
}

.cta-card-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.cta-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Booking Form */
.booking-form-wrapper {
  position: relative;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid rgba(196, 148, 74, 0.15);
  color: var(--fg);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(196, 148, 74, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 101, 96, 0.6);
}

.form-group select option {
  background: var(--surface);
  color: var(--fg);
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0.65;
  margin-top: 0.5rem;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(196, 148, 74, 0.15);
  background: var(--surface);
}

.success-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   PAYMENT LINKS & CTA BUTTONS
   ============================================================ */

/* CTA card — two-button row */
.cta-payment-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Secondary pay button next to the main CTA */
.cta-pay-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(196, 148, 74, 0.4);
  flex-shrink: 0;
}

.cta-pay-btn:hover {
  background: rgba(196, 148, 74, 0.08);
  border-color: var(--accent);
}

/* Payment links section (shown after inquiry submitted) */
.payment-cta {
  text-align: center;
}

.payment-cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.payment-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.payment-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(196, 148, 74, 0.25);
  background: var(--surface-raised);
}

.payment-link:hover {
  border-color: var(--accent);
  background: rgba(196, 148, 74, 0.05);
}

.payment-link--primary {
  border-color: rgba(196, 148, 74, 0.3);
}

.payment-link-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
}

.payment-link-amount {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-family: var(--font-body);
}

.payment-note {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.55;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================
   SERVICES & PRICING SECTION
   Two tiers: Mixóloga (premium, personal) · Cartel Crew (standard, referral)
   ============================================================ */

.services-pricing {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(196, 148, 74, 0.1);
  border-bottom: 1px solid rgba(196, 148, 74, 0.1);
}

.services-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.sp-header {
  margin-bottom: 5rem;
  max-width: 700px;
}

.sp-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.sp-title em {
  font-style: italic;
  color: var(--accent);
}

.sp-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* Tier Comparison Bar */
.tier-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(196, 148, 74, 0.15);
  margin-bottom: 5rem;
  background: var(--surface-raised);
}

.tier-bar-item--primary {
  text-align: left;
}

.tier-bar-item--secondary {
  text-align: right;
}

.tier-bar-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tier-bar-item--primary .tier-bar-eyebrow {
  color: var(--accent);
}

.tier-bar-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.tier-bar-who {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.tier-bar-divider {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-dim);
  text-align: center;
  white-space: nowrap;
}

/* SP Block — shared */
.sp-block {
  margin-bottom: 4rem;
  padding: 4rem;
  border: 1px solid rgba(196, 148, 74, 0.1);
  background: var(--surface-raised);
  position: relative;
  overflow: hidden;
}

.sp-block--premium {
  border-color: rgba(196, 148, 74, 0.25);
  background: linear-gradient(135deg, rgba(196, 148, 74, 0.04) 0%, transparent 60%), var(--surface-raised);
}

.sp-block--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.sp-block-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.sp-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1rem;
}

.sp-block-title em {
  font-style: italic;
  color: var(--accent);
}

.sp-block-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 3rem;
}

/* Rate items */
.sp-rates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(196, 148, 74, 0.12);
}

.sp-rate-item {
  padding: 2rem 2rem 2.25rem;
  border-right: 1px solid rgba(196, 148, 74, 0.12);
  position: relative;
}

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

.sp-rate-item--featured {
  background: rgba(196, 148, 74, 0.04);
}

.sp-rate-badge {
  position: absolute;
  top: -1px;
  left: 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: #0a0a0a;
  padding: 0.2em 0.7em;
  font-weight: 700;
}

.sp-rate-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}

.sp-rate-item--featured .sp-rate-label {
  margin-top: 1.5rem;
}

.sp-rate-price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.sp-rate-plus {
  font-size: 0.6em;
  color: var(--accent);
  vertical-align: super;
  margin-left: 0.1em;
}

.sp-rate-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Inclusions */
.sp-inclusions {
  padding: 2rem 0;
  border-top: 1px solid rgba(196, 148, 74, 0.12);
  margin-bottom: 2.5rem;
}

.sp-inclusions-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 1.25rem;
}

.sp-inclusions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 3rem;
}

.sp-inclusion-item {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sp-inclusion-icon {
  color: var(--accent);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.sp-cta {
  margin-top: 0.5rem;
}

/* Add-ons */
.sp-addons {
  margin-bottom: 4rem;
  padding: 3rem 4rem;
  border: 1px solid rgba(196, 148, 74, 0.1);
}

.sp-addons-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.sp-addons-grid {
  display: grid;
  gap: 0;
}

.sp-addon-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(196, 148, 74, 0.06);
}

.sp-addon-row:first-child {
  border-top: 1px solid rgba(196, 148, 74, 0.06);
}

.sp-addon-name {
  font-size: 0.9rem;
  color: var(--fg);
}

.sp-addon-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
}

/* Custom Bar Builds */
.sp-bar-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: center;
}

.sp-bar-detail {
  font-size: 0.82rem;
  color: var(--accent-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.sp-bar-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-bar-art {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(196, 148, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(196, 148, 74, 0.05) 0%, transparent 70%);
}

.sp-bar-art::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196, 148, 74, 0.08);
}

.sp-bar-art-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.sp-bar-art-mark {
  color: var(--accent);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.sp-bar-art-word {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(232, 228, 223, 0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.2;
}

.sp-bar-art-word:nth-child(2) { color: rgba(232, 228, 223, 0.5); }
.sp-bar-art-word:nth-child(3) { color: rgba(196, 148, 74, 0.6); }
.sp-bar-art-word:nth-child(4) { color: rgba(232, 228, 223, 0.4); }

/* Consulting */
.sp-consulting {
  margin-bottom: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(196, 148, 74, 0.1);
}

.sp-consult-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.sp-consult-title em {
  font-style: italic;
  color: var(--accent);
}

.sp-consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 3rem;
}

.sp-consult-item {
  padding: 2.5rem 3rem 2.5rem 0;
  border-bottom: 1px solid rgba(196, 148, 74, 0.08);
}

.sp-consult-item:nth-child(odd) {
  padding-right: 4rem;
  border-right: 1px solid rgba(196, 148, 74, 0.08);
}

.sp-consult-item:nth-child(even) {
  padding-left: 4rem;
  padding-right: 0;
}

.sp-consult-item:nth-last-child(-n+2) {
  border-bottom: none;
  padding-top: 2.5rem;
}

.sp-consult-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-dim);
  margin-bottom: 0.75rem;
}

.sp-consult-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.sp-consult-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.sp-consult-cta {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 148, 74, 0.1);
}

.sp-consult-rate {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
}

/* Standard Tier Note */
.sp-standard-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding: 3rem 4rem;
  border: 1px solid rgba(196, 148, 74, 0.08);
  background: var(--bg);
}

.sp-standard-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.sp-standard-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.sp-standard-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

.sp-standard-right {
  text-align: right;
  flex-shrink: 0;
}

.sp-standard-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--fg);
  white-space: nowrap;
}

.sp-standard-price-note {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    padding: 3rem 1.5rem;
  }

  .philosophy,
  .services,
  .closing {
    padding: 5rem 1.5rem;
  }

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

  .service-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .service-icon {
    text-align: left;
    padding-top: 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero-detail {
    flex-direction: column;
    gap: 0.75rem;
  }

  .detail-line {
    width: 30px;
  }

  .salvaje-hero {
    grid-template-columns: 1fr;
  }

  .salvaje-bottle {
    padding: 4rem 2rem 2rem;
  }

  .salvaje-img {
    max-width: 260px;
  }

  .salvaje-content {
    padding: 2rem 1.5rem 4rem;
  }

  .salvaje-meta {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .tequila-philosophy {
    padding: 3rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .tequila-philosophy-text {
    white-space: normal;
    font-size: 1.1rem;
  }

  .philosophy-divider-line {
    width: 40px;
    height: 1px;
    flex: none;
  }

  .lineup-section {
    padding: 4rem 1.5rem;
  }

  .lineup-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

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

  .crew-cta-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .cartel-crew {
    padding: 5rem 1.5rem;
  }

  .contact {
    padding: 5rem 1.5rem;
  }

  /* Services & Pricing responsive */
  .services-pricing {
    padding: 5rem 1.5rem;
  }

  .tier-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: left;
  }

  .tier-bar-item--secondary {
    text-align: left;
  }

  .tier-bar-divider {
    text-align: left;
    padding: 0.25rem 0;
    color: var(--accent-dim);
  }

  .sp-block {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .sp-rates {
    grid-template-columns: 1fr;
  }

  .sp-rate-item {
    border-right: none;
    border-bottom: 1px solid rgba(196, 148, 74, 0.12);
  }

  .sp-rate-item:last-child {
    border-bottom: none;
  }

  .sp-inclusions-list {
    grid-template-columns: 1fr;
  }

  .sp-addons {
    padding: 2rem 1.5rem;
  }

  .sp-bar-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sp-bar-visual {
    display: none;
  }

  .sp-consulting {
    padding-top: 3rem;
  }

  .sp-consult-grid {
    grid-template-columns: 1fr;
  }

  .sp-consult-item {
    padding: 2rem 0;
    border-right: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-bottom: 1px solid rgba(196, 148, 74, 0.08) !important;
  }

  .sp-consult-item:last-child {
    border-bottom: none !important;
  }

  .sp-consult-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .sp-standard-note {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .sp-standard-right {
    text-align: left;
  }

  /* Nav responsive — show hamburger, hide desktop links */
  .site-nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  /* Floating CTA smaller on mobile */
  .floating-cta {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.75rem;
  }

  /* Hero responsive */
  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .hero-name-first,
  .hero-name-last {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .hero-dna {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .dna-divider {
    width: 30px;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Story responsive */
  .story {
    padding: 5rem 1.5rem;
  }

  .story-heritage {
    padding: 2rem 1.5rem;
  }

  .heritage-lineage {
    gap: 0.4rem 0.5rem;
  }

  .hl-item {
    font-size: 0.95rem;
  }

  .story-chapters {
    grid-template-columns: 1fr;
  }

  .chapter {
    padding: 2.5rem 1.5rem;
    border-right: none !important;
  }

  .chapter:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(196, 148, 74, 0.08) !important;
  }

  .chapter:last-child {
    border-bottom: none !important;
  }

  .story-statement {
    flex-direction: column;
    gap: 1.5rem;
  }

  .statement-quote {
    white-space: normal;
    font-size: 1rem;
  }

  .statement-line {
    width: 40px;
    flex: none;
    align-self: center;
  }

  /* ============================================================
   TESTIMONIALS / SOCIAL PROOF SECTION
   Dark volcanic, gold accents. Premium credibility.
   ============================================================ */

.testimonials {
  padding: 8rem 2rem;
  background: #090909;
  border-top: 1px solid rgba(196, 148, 74, 0.1);
  border-bottom: 1px solid rgba(196, 148, 74, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 148, 74, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(180, 60, 20, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* Trusted By — name drop credibility bar */
.trusted-by {
  text-align: center;
  margin-bottom: 5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(196, 148, 74, 0.08);
  border-bottom: 1px solid rgba(196, 148, 74, 0.08);
}

.trusted-by-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dim);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.trusted-by-names {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.name-drop {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 400;
  color: rgba(232, 228, 223, 0.55);
  letter-spacing: 0.04em;
  padding: 0.25rem 1.5rem;
  transition: color 0.2s;
}

.name-drop:hover {
  color: var(--accent);
}

.name-sep {
  color: rgba(196, 148, 74, 0.3);
  font-size: 0.4rem;
  vertical-align: middle;
  padding: 0 0.5rem;
}

/* Testimonial header */
.testimonial-header {
  margin-bottom: 3.5rem;
}

.testimonial-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
  margin-top: 0.75rem;
}

.testimonial-title em {
  font-style: italic;
  color: var(--accent);
}

/* Testimonial cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(196, 148, 74, 0.12);
  background: rgba(20, 20, 20, 0.8);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(196, 148, 74, 0.3);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  border-color: rgba(196, 148, 74, 0.3);
  background: linear-gradient(135deg, rgba(196, 148, 74, 0.04) 0%, rgba(20, 20, 20, 0.8) 60%);
}

.testimonial-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.testimonial-card-corner {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 18px solid var(--accent);
  border-left: 18px solid transparent;
  opacity: 0.5;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(232, 228, 223, 0.8);
  line-height: 1.75;
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}

.testimonial-attr {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196, 148, 74, 0.1);
}

.testimonial-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.testimonial-company {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Stats bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 3rem 2rem;
  border: 1px solid rgba(196, 148, 74, 0.15);
  background: rgba(20, 20, 20, 0.5);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-plus {
  font-size: 0.5em;
  vertical-align: super;
}

.stat-big {
  font-size: 0.75em;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(196, 148, 74, 0.15);
  flex-shrink: 0;
}

  /* Footer responsive */
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-right {
    text-align: left;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

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

  /* Testimonials responsive */
  .testimonials {
    padding: 5rem 1.5rem;
  }

  .trusted-by-names {
    flex-direction: column;
    gap: 0.1rem 0;
  }

  .name-sep {
    display: none;
  }

  .name-drop {
    font-size: 0.95rem;
    padding: 0.15rem 0;
  }

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

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card--featured {
    order: -1;
  }

  .stats-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .stat-item {
    padding: 0;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }
}