/** Shopify CDN: Minification failed

Line 11:12 Expected identifier but found whitespace
Line 12:158 Unexpected "/"

**/
/* ═══════════════════════════════════════════════════
   LUND STUDIO — BRAND ACQUISITIONS PAGE
   ═══════════════════════════════════════════════════ */

   Requires: lund-studio.css + lund-surface.css
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 13px;
  --sp-md: 21px;
  --sp-lg: 34px;
  --sp-xl: 55px;
  --sp-2xl: 89px;
  --sp-3xl: 144px;

  /* Type scale (Perfect Fourth) */
  --t-xs: 12px;
  --t-sm: 14px;
  --t-base: 16px;
  --t-md: 21px;
  --t-lg: 28px;
  --t-xl: 37px;
  --t-2xl: 50px;
  --t-3xl: 66px;
  --t-hero: 88px;

  /* Ratios */
  --ls-r: 1.62;
  --ls-a: 62%;
  --ls-b: 38%;
}


/* ═══════ BACKGROUNDS ═══════ */

/* Decorative pattern */
.vesica-left, .vesica-right {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.vesica-left {
  width: 70vw; height: 70vw;
  top: 50%; left: 38%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(45,122,79,0.06) 0%, rgba(200,168,78,0.02) 45%, transparent 70%);
}
.vesica-right {
  width: 70vw; height: 70vw;
  top: 50%; left: 62%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,168,78,0.05) 0%, rgba(45,122,79,0.02) 45%, transparent 70%);
}

/* Constellation dots */
.ls-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.ls-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: ls-pulse 5s ease-in-out infinite;
}
.ls-dot:nth-child(1)  { width: 2px; height: 2px; top: 13%;   left: 21%;   opacity: 0.3;  animation-delay: 0s; }
.ls-dot:nth-child(2)  { width: 3px; height: 3px; top: 21%;   left: 62%; opacity: 0.25; animation-delay: 0.8s; }
.ls-dot:nth-child(3)  { width: 2px; height: 2px; top: 34%;   left: 38%; opacity: 0.2;  animation-delay: 1.3s; }
.ls-dot:nth-child(4)  { width: 3px; height: 3px; top: 55%;   left: 78%;   opacity: 0.15; animation-delay: 2.1s; }
.ls-dot:nth-child(5)  { width: 2px; height: 2px; top: 38%; left: 13%;   opacity: 0.2;  animation-delay: 3.4s; }
.ls-dot:nth-child(6)  { width: 2px; height: 2px; top: 62%; left: 89%;   opacity: 0.25; animation-delay: 1.6s; }
.ls-dot:nth-child(7)  { width: 3px; height: 3px; top: 78%;   left: 34%;   opacity: 0.15; animation-delay: 2.8s; }
.ls-dot:nth-child(8)  { width: 2px; height: 2px; top: 89%;   left: 55%;   opacity: 0.2;  animation-delay: 0.5s; }
.ls-dot:nth-child(9)  { width: 2px; height: 2px; top: 21%;   left: 89%;   opacity: 0.15; animation-delay: 4.1s; }
.ls-dot:nth-child(10) { width: 3px; height: 3px; top: 44%;   left: 8%;    opacity: 0.2;  animation-delay: 3.0s; }
.ls-dot:nth-child(11) { width: 2px; height: 2px; top: 72%;   left: 62%; opacity: 0.25; animation-delay: 1.1s; }
.ls-dot:nth-child(12) { width: 2px; height: 2px; top: 85%;   left: 21%;   opacity: 0.15; animation-delay: 2.5s; }
.ls-dot:nth-child(13) { width: 3px; height: 3px; top: 8%;    left: 50%;   opacity: 0.2;  animation-delay: 3.8s; }

@keyframes ls-pulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.62); }
}


/* ═══════ HERO ═══════ */
.acq-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: var(--sp-3xl) var(--sp-lg) var(--sp-2xl);
}
.acq-hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,168,78,0.04) 0%, rgba(45,122,79,0.02) 40%, transparent 60%);
  pointer-events: none;
}
.acq-eyebrow {
  font-family: var(--mono);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-lg);
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}
.acq-eyebrow .tag-line {
  width: var(--sp-lg);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.acq-hero h1 {
  font-family: var(--serif);
  font-size: clamp(var(--t-2xl), 7vw, var(--t-hero));
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #F2EDE6;
  position: relative;
  z-index: 2;
  margin: 0 auto var(--sp-lg);
  opacity: 0;
  animation: fadeUp 1.2s ease 0.4s forwards;
}
.acq-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 8s ease infinite;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}
.acq-hero-sub {
  font-family: var(--serif);
  font-size: var(--t-base);
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-md);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.6s forwards;
}

/* Hero stats */
.acq-stats {
  display: flex;
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.8s forwards;
}
.acq-stat-num {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}
.acq-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: var(--sp-xs);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 1.2s forwards;
}
.hero-scroll span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.scroll-bar {
  width: 1px;
  height: var(--sp-lg);
  background: linear-gradient(to bottom, rgba(200,168,78,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.3); }
}

/* Divider */
.ls-divider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 38%, var(--gold) 62%, transparent 100%);
  opacity: 0.2;
  position: relative;
  z-index: 2;
}


/* ═══════ PHILOSOPHY STRIP ═══════ */
.acq-philosophy {
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}
.acq-philosophy p {
  font-family: var(--serif);
  font-size: var(--t-md);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.3px;
}
.acq-philosophy p span { color: var(--gold); font-weight: 400; }


/* ═══════ HOW IT WORKS ═══════ */
.acq-how {
  background: var(--warm-white);
  padding: var(--sp-2xl) var(--sp-lg);
  position: relative;
  z-index: 2;
}
.acq-how-inner { max-width: 1100px; margin: 0 auto; }
.acq-how-header { text-align: center; margin-bottom: var(--sp-xl); }
.acq-how-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, var(--t-xl));
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.acq-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.acq-step {
  padding: var(--sp-lg);
  transition: var(--glass-transition);
  position: relative;
  overflow: hidden;
}
.acq-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--grove), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.acq-step:hover::before { opacity: 1; }
.acq-step:hover { transform: translateY(-3px); }
.acq-step-num {
  font-family: var(--serif);
  font-size: var(--t-3xl);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-sm);
  opacity: 0.4;
}
.acq-step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: var(--sp-xs);
  letter-spacing: 0.2px;
}
.acq-step p {
  font-size: var(--t-sm);
  color: var(--text-light);
  line-height: 1.7;
}


/* ═══════ BRAND CARDS ═══════ */
.acq-brands {
  padding: var(--sp-xl) var(--sp-lg) var(--sp-2xl);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.acq-brands-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.acq-brands-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, var(--t-xl));
  font-weight: 300;
  color: #F2EDE6;
  letter-spacing: -0.5px;
}
.acq-brands-header p {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.3);
  margin-top: var(--sp-xs);
}

/* Featured brand layout */
.brand-feat {
  display: grid;
  grid-template-columns: var(--ls-a) var(--ls-b);
  gap: 0;
  border-radius: var(--glass-radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-md);
  transition: var(--glass-transition);
  position: relative;
}
.brand-feat:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-hover), 0 var(--sp-sm) var(--sp-xl) rgba(200,168,78,0.06);
}
.brand-feat.bf-alt {
  grid-template-columns: var(--ls-b) var(--ls-a);
}
.brand-feat.bf-alt .bf-info { order: -1; }

.bf-vis {
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
/* Circles in visual panel */
.bf-vis .glass-circle {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.bf-vis .glass-circle + .glass-circle {
  width: 185px; height: 185px;
}

/* Brand-specific backgrounds */
.bf-vis-drinksolv  { background: linear-gradient(145deg, #050505 0%, #0a0a0c 40%, #050505 100%); }
.bf-vis-cleanorigin { background: linear-gradient(145deg, #0d2a14 0%, #1a4a28 40%, #0d2a14 100%); }
.bf-vis-tukra      { background: linear-gradient(145deg, #1a0d05 0%, #3a1a0a 40%, #1a0d05 100%); }
.bf-vis-summit     { background: linear-gradient(145deg, #0d1a2a 0%, #1a3a5a 40%, #0d1a2a 100%); }
.bf-vis-iceblock   { background: linear-gradient(145deg, #0a1520 0%, #14304a 40%, #0a1520 100%); }
.bf-vis-chinchin   { background: linear-gradient(145deg, #0a0a1f 0%, #1a1a40 40%, #0a0a1f 100%); }
.bf-vis-pruddles   { background: linear-gradient(145deg, #200d20 0%, #3a1a3a 40%, #200d20 100%); }
.bf-vis-kyna       { background: linear-gradient(145deg, #1a0d05 0%, #3a2a1a 40%, #1a0d05 100%); }
.bf-vis-grant      { background: linear-gradient(145deg, #0a1a0d 0%, #1a3a22 40%, #0a1a0d 100%); }

.bf-vis-badge {
  margin-bottom: var(--sp-md);
  z-index: 2;
  position: relative;
}
.bf-vis-name {
  font-family: var(--serif);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-3xl));
  font-weight: 300;
  color: var(--gold);
  z-index: 2;
  position: relative;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-xs);
}
.bf-vis-sub {
  font-family: var(--mono);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: var(--sp-xs);
  z-index: 2;
  position: relative;
}

.bf-info {
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow);
}
.brand-feat.bf-alt .bf-info {
  border-left: none;
  border-right: 1px solid var(--glass-border);
}
.bf-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}
.bf-title {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 400;
  color: #F2EDE6;
  margin-bottom: var(--sp-sm);
}
.bf-desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.bf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-lg);
}
.bf-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--glass-border);
}
.bf-price-from {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.bf-price-amt {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--gold);
}
.bf-cta {
  font-family: var(--mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
}
.bf-cta:hover { color: var(--gold-light); transform: translateX(3px); }


/* ═══════ WHAT'S INCLUDED ═══════ */
.acq-includes {
  padding: var(--sp-2xl) var(--sp-lg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.acq-includes::before {
  content: '';
  position: absolute;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(200,168,78,0.04);
  border-radius: 50%;
}
.acq-includes-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.acq-includes-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, var(--t-xl));
  font-weight: 300;
  color: #F2EDE6;
  text-align: center;
  margin-bottom: var(--sp-xl);
  letter-spacing: -0.5px;
}
.acq-incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.acq-incl-item {
  padding: var(--sp-md);
  transition: var(--glass-transition);
}
.acq-incl-item:hover { transform: translateY(-2px); }
.acq-incl-item h3 {
  font-family: var(--serif);
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--sp-xs);
  letter-spacing: 0.3px;
}
.acq-incl-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}


/* ═══════ ACQUISITION TIERS ═══════ */
.acq-tiers-sec {
  background: var(--warm-white);
  padding: var(--sp-2xl) var(--sp-lg);
  position: relative;
  z-index: 2;
}
.acq-tiers-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.acq-tiers-inner > h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, var(--t-xl));
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: var(--sp-xs);
  letter-spacing: -0.5px;
}
.acq-tiers-inner > p {
  font-size: var(--t-sm);
  color: var(--text-light);
  margin-bottom: var(--sp-xl);
}
.acq-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  text-align: left;
}
.acq-tier-card {
  padding: var(--sp-lg) var(--sp-md);
  position: relative;
  transition: var(--glass-transition);
}
.acq-tier-card:hover { transform: translateY(-3px); }
.acq-tier-card.tier-rec {
  border-color: var(--grove);
  background: rgba(45,122,79,0.03);
}
.acq-tier-card.tier-rec::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -11px;
  left: var(--sp-lg);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--grove);
  padding: 4px 12px;
  border-radius: 100px;
}
.at-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grove);
  margin-bottom: var(--sp-sm);
}
.at-price {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.at-context {
  font-size: var(--t-xs);
  color: var(--text-light);
  margin-bottom: var(--sp-md);
}
.at-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: var(--sp-md);
}
.at-features { list-style: none; margin-bottom: var(--sp-md); }
.at-features li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-xs);
  line-height: 1.5;
}
.at-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grove);
  margin-top: 7px;
  flex-shrink: 0;
}


/* ═══════ CUSTOM BUILD ═══════ */
.acq-custom {
  padding: var(--sp-xl) var(--sp-lg) var(--sp-2xl);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.acq-custom-box {
  padding: var(--sp-xl) var(--sp-lg);
  border: 1px dashed var(--stone);
  border-radius: var(--glass-radius-lg);
  transition: border-color 0.3s ease;
}
.acq-custom-box:hover { border-color: var(--gold); }
.acq-custom-box h3 {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: var(--sp-xs);
  letter-spacing: -0.3px;
}
.acq-custom-box p {
  font-size: var(--t-sm);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}


/* ═══════ LEGAL ═══════ */
.acq-legal {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--sp-lg) var(--sp-xl);
  position: relative;
  z-index: 2;
}
.acq-legal p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.7;
  padding: var(--sp-md);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--glass-radius-sm);
  background: var(--cream);
  text-align: center;
}


/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .brand-feat,
  .brand-feat.bf-alt { grid-template-columns: 1fr; }
  .bf-info { border-left: none !important; border-right: none !important; border-top: 1px solid var(--glass-border); }
  .brand-feat.bf-alt .bf-info { order: 1; }
}
@media (max-width: 900px) {
  .acq-hero { padding: var(--sp-2xl) var(--sp-md) var(--sp-xl); min-height: auto; }
  .acq-hero h1 { letter-spacing: -1px; }
  .acq-steps,
  .acq-incl-grid,
  .acq-tiers-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .acq-stats { flex-direction: column; gap: var(--sp-md); }
  .acq-brands { padding: var(--sp-lg) var(--sp-md) var(--sp-xl); }
  .acq-how,
  .acq-tiers-sec { padding: var(--sp-xl) var(--sp-md); }
  .acq-includes { padding: var(--sp-xl) var(--sp-md); }
  .bf-price-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .bf-price-row .bf-price {
    width: 100%;
  }
  .bf-price-row .bf-cta {
    font-size: 11px;
  }
}
