/** Shopify CDN: Minification failed

Line 867:6 Unexpected "/"
Line 1061:5 Unexpected "/"

**/
/* ================================
   BLOOM HOMEPAGE SECTIONS
   File: assets/bloom-homepage.css
   Load order: 3rd in theme.liquid
   Covers: Hero, Featured Products, Editorial,
           Campaign Video, Story, Signup, Footer
   ================================ */
.bloom-hero__btn {
  display: inline-block;
  padding: 24px 100px;
  border: 1px solid #F0EDE6;
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #0d1a18;
  background: #F0EDE6;
  position: relative;
  overflow: hidden;
  transition: color 0.7s ease, border-color 0.7s ease;
  text-decoration: none !important;
}

.bloom-hero__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FF2D78;
  transform: translateX(-101%);
  transition: transform 0.9s cubic-bezier(0.45, 0, 0.15, 1);
  z-index: 0;
}

.bloom-hero__btn::after {
  display: none !important;
}

.bloom-hero__btn:hover {
  color: #F0EDE6 !important;
  border-color: #FF2D78 !important;
  text-decoration: none !important;
}

.bloom-hero__btn:hover::before {
  transform: translateX(0);
}

/* Text above the wipe */
.bloom-hero__btn,
.bloom-hero__btn * {
  isolation: isolate;
}

.bloom-hero__btn::before {
  isolation: auto;
}
/* ================================
   EDITORIAL IMAGE SECTION
   ================================ */
   .bsg-stripe {
  display: flex;
  height: 4px;
  width: 100%;
}

.bsg-stripe__cyan    { flex: 1; background: #00B4D8; }
.bsg-stripe__yellow  { flex: 1; background: #FFD600; }
.bsg-stripe__magenta { flex: 1; background: #FF2D78; } 

.be-section {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
  font-size: 0;
}

.shopify-section:has(.be-section) {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  line-height: 0 !important;
  font-size: 0 !important;
}

.shopify-section:has(.be-section)::after,
.shopify-section:has(.be-section)::before {
  display: none !important;
  height: 0 !important;
}

.be-img-wrap {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.be-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.be-visible .be-img { transform: scale(1); }

.be-placeholder {
  position: absolute;
  inset: 0;
  background: #0a1614;
  display: flex;
  align-items: center;
  justify-content: center;
}

.be-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: initial;
  line-height: normal;
}

.be-placeholder__flower {
  width: 120px;
  height: 120px;
  animation: bloomSpin 30s linear infinite;
}

.be-placeholder__flower svg { width: 100%; height: 100%; }

.be-placeholder__label {
  font-family: 'Assistant', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.3);
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.be-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 16, 14, 0.15) 0%,
    rgba(10, 16, 14, 0.5) 50%,
    rgba(10, 16, 14, 0.8) 100%
  );
  z-index: 2;
}

.be-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-size: initial;
  line-height: normal;
}

.be-eyebrow {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #FF2D78;
  display: block;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.be-visible .be-eyebrow { opacity: 1; transform: translateY(0); }

.be-headline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.3em;
  margin: 0;
  line-height: 0.9;
}

.be-word {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 300;
  letter-spacing: -2px;
  color: #FF2D78;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              color 1.2s ease 0.8s;
}

.be-visible .be-word {
  opacity: 1;
  transform: translateY(0);
  color: #F0EDE6;
}

.be-anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.be-visible .be-anim-up { opacity: 1; transform: translateY(0); }

.be-bottom-stripe {
  display: flex;
  height: 3px;
  width: 100%;
  line-height: 0;
  font-size: 0;
}

.be-bottom-stripe__cyan    { flex: 1; background: #00B4D8; }
.be-bottom-stripe__yellow  { flex: 1; background: #FFD600; }
.be-bottom-stripe__magenta { flex: 1; background: #FF2D78; }

@media (max-width: 768px) {
  .be-img-wrap { height: 70vh; min-height: 500px; margin: 0; padding: 0; }
  .be-word { font-size: clamp(48px, 14vw, 80px); letter-spacing: -1px; font-weight: 400; }
  .be-content { gap: 28px; padding: 0 24px; font-size: initial; line-height: normal; }
}

/* ================================
   CAMPAIGN VIDEO SECTION
   ================================ */
.bv-section {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  background: transparent !important;
}

.shopify-section:has(.bv-section) {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.bv-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  margin: 0;
  padding: 0;
}

.bv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.05);
}

.bv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 15, 13, 0.15) 0%,
    transparent 40%,
    transparent 60%,
    rgba(8, 15, 13, 0.25) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.bv-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
}

@media (max-width: 768px) {
  .bv-wrap { aspect-ratio: 16 / 9; height: auto; min-height: 200px; }
}

/* ================================
   OUR STORY SECTION
   ================================ */
.bs-wrapper::before {
  content: '';
  display: block;
  height: 6px;
  width: 100%;
  background: linear-gradient(
    to right,
    #00B4D8 0%, #00B4D8 33.33%,
    #FFD600 33.33%, #FFD600 66.66%,
    #FF2D78 66.66%, #FF2D78 100%
  );
}

.bs-wrapper { display: block; width: 100%; }
.bs-wrapper .bloom-stripe { display: flex; height: 6px; width: 100%; }

.bs-section {
  padding: 100px 0 120px;
  position: relative;
  z-index: 1;
  background: #080b08;
  overflow: hidden;
}

.bs-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bs-glow--left {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07) 0%, transparent 70%);
  animation: bloomGlow1 14s ease-in-out infinite;
}

.bs-glow--right {
  width: 800px;
  height: 800px;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.07) 0%, transparent 70%);
  animation: bloomGlow2 17s ease-in-out infinite;
}

.bs-ghost {
  position: absolute;
  bottom: -60px;
  left: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(200px, 28vw, 400px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.bs-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.bs-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bs-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #FF2D78;
  display: block;
}

.bs-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -4px;
  color: #F0EDE6;
  margin: 0;
}

.bs-headline em {
  font-style: italic;
  font-weight: 300;
  color: #FF2D78;
  display: block;
}

.bs-stripe-small { display: flex; height: 3px; width: 64px; }
.bs-stripe-small__cyan    { flex: 1; background: #00B4D8; }
.bs-stripe-small__yellow  { flex: 1; background: #FFD600; }
.bs-stripe-small__magenta { flex: 1; background: #FF2D78; }

.bs-stats { display: flex; align-items: center; gap: 32px; }

.bs-stat { display: flex; flex-direction: column; gap: 6px; }

.bs-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #F0EDE6;
  line-height: 1;
  letter-spacing: -1px;
}

.bs-stat__label {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.6);
  font-weight: 600;
}

.bs-stat__divider { width: 1px; height: 40px; background: rgba(240, 237, 230, 0.15); }

.bs-right {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.bs-opener {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: #F0EDE6;
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid #FF2D78;
}

.bs-body {
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.3px;
  color: rgba(240, 237, 230, 0.65);
  margin: 0;
  font-weight: 500;
}

.bs-quote {
  position: relative;
  margin: 8px 0;
  padding: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: #F0EDE6;
  border: none;
  background: transparent;
}

.bs-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,45,120,0.5), transparent);
}

.bs-quote::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,45,120,0.3), transparent);
}

.bs-quote__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5em;
  line-height: 0;
  vertical-align: -0.35em;
  color: rgba(255, 45, 120, 0.3);
  margin-right: -0.05em;
  display: inline;
}

.bs-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.6);
  text-decoration: none;
  padding-bottom: 4px;
  align-self: flex-start;
  position: relative;
  transition: color 0.4s ease;
  font-weight: 600;
}

.bs-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #00B4D8, #FFD600, #FF2D78);
  transition: width 0.5s ease;
}

.bs-cta svg { width: 16px; height: 16px; transition: transform 0.4s ease; flex-shrink: 0; }
.bs-cta:hover { color: #F0EDE6; }
.bs-cta:hover::after { width: 100%; }
.bs-cta:hover svg { transform: translateX(6px); }

@media (max-width: 1024px) {
  .bs-inner { grid-template-columns: 1fr; gap: 60px; padding: 0 40px; }
  .bs-left { position: static; }
}

@media (max-width: 768px) {
  .bs-section { padding: 80px 0 100px; }
  .bs-inner { padding: 0 28px; }
  .bs-headline { font-size: clamp(64px, 16vw, 100px); letter-spacing: -3px; font-weight: 400; }
  .bs-ghost { display: none; }
  .bs-body { color: rgba(240, 237, 230, 0.8) !important; }
  .bs-opener { color: #F0EDE6 !important; }
}

@media (max-width: 540px) {
  .bs-inner { padding: 0 20px; }
  .bs-section { padding: 60px 0 80px; }
}

/* ================================
   EMAIL SIGNUP SECTION
   ================================ */
/* .bsg-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bsg-bg__glow {
  position: absolute;
  border-radius: 50%;
}

.bsg-bg__glow--cyan {
  width: 800px;
  height: 800px;
  top: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14) 0%, transparent 65%);
  animation: bloomGlow1 12s ease-in-out infinite;
}

.bsg-bg__glow--magenta {
  width: 900px;
  height: 900px;
  bottom: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.16) 0%, transparent 65%);
  animation: bloomGlow2 15s ease-in-out infinite;
}

.bsg-bg__word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  font-family: 'Cormorant Garamond', serif;
   font-size: clamp(90px, 18vw, 320px);
  -webkit-text-stroke: 2.5px rgba(240, 237, 230, 0.18);
  letter-spacing: 8px;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.12);
  white-space: nowrap;
  user-select: none;
}

.bsg-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 40px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.bsg-eyebrow {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #FF2D78;
  display: block;
  margin-bottom: 36px;
  font-weight: 700;
}

.bsg-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -3px;
  color: #F0EDE6;
  margin: 0 0 56px;
}

.bsg-headline em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 237, 230, 0.7);
}

.bsg-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 56px;
  margin-bottom: 56px;
  text-align: left;
}

.bsg-perk { display: flex; align-items: center; gap: 12px; }
.bsg-perk__icon { color: #FF2D78; font-size: 16px; line-height: 1; flex-shrink: 0; }

.bsg-perk__text {
  font-family: 'Assistant', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(240, 237, 230, 0.7);
  text-transform: uppercase;
  font-weight: 600;
}

.bsg-form { width: 100%; max-width: 560px; margin-bottom: 16px; }

.bsg-form__wrap {
  display: flex;
  border: 1px solid rgba(240, 237, 230, 0.2);
  transition: border-color 0.4s ease;
  height: 64px;
}

.bsg-form__wrap:focus-within { border-color: rgba(255, 45, 120, 0.6); }

.bsg-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 24px;
  font-family: 'Assistant', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #F0EDE6;
  min-width: 0;
}

.bsg-input::placeholder { color: rgba(240, 237, 230, 0.25); letter-spacing: 3px; }

.bsg-btn {
  background: #FF2D78;
  border: none;
  padding: 0 36px;
  cursor: pointer;
  color: #F0EDE6;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s ease, letter-spacing 0.3s ease;
  flex-shrink: 0;
  font-weight: 700;
}

.bsg-btn:hover { background: #e0215f; letter-spacing: 6px; }
.bsg-btn__arrow { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s ease; }
.bsg-btn:hover .bsg-btn__arrow { transform: translateX(4px); }

.bsg-disclaimer {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(240, 237, 230, 0.45);
  margin: 14px 0 0;
  text-align: center;
}

.bsg-manifesto {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.22);
  margin: 64px 0 0;
  user-select: none;
}

.bsg-section {
  padding-bottom: 0 !important;
}

.shopify-section:has(.bsg-section) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
@media (max-width: 640px) {
  .bsg-inner { padding: 80px 24px 72px; }
  .bsg-perks { grid-template-columns: 1fr; gap: 12px; text-align: left; width: 100%; }
  .bsg-headline { font-size: clamp(60px, 16vw, 88px); letter-spacing: -2px; font-weight: 400; }
  .bsg-btn { padding: 0 20px; font-size: 9px; letter-spacing: 3px; }
  .bsg-perk__text { color: rgba(240, 237, 230, 0.8) !important; }
}
/* ================================
   BLOOM FOOTER
   File: assets/bloom-footer.css
   ================================ */

/* .bft-footer {
  background: #0d1a18;
  position: relative;
  z-index: 1;
  overflow: visible !important;
  padding: 80px 60px 0;
  border-top: none !important;
  margin-top: 0 !important;
}

..bft-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bft-glow--cyan {
  width: 800px;
  height: 800px;
  top: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14) 0%, transparent 65%);
  animation: bloomGlow1 12s ease-in-out infinite;
}

.bft-glow--magenta {
  width: 900px;
  height: 900px;
  bottom: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.16) 0%, transparent 65%);
  animation: bloomGlow2 15s ease-in-out infinite;
} */

/* Ghost BLOOM word — exact copy from signup */
/* .bft-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: 20px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.12);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* Everything above glows */
/* .bft-brand,
.bft-stripe,
.bft-nav,
.bft-bottom,
.bft-giant {
  position: relative;
  z-index: 1;
} */ */

/* ================================
   BRAND
   ================================ */
/* .bft-brand { text-align: center; margin-bottom: 48px; }

.bft-brand__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: 16px;
  text-transform: uppercase;
  color: #F0EDE6;
  line-height: 1;
  margin-bottom: 16px;
}

.bft-brand__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 2px;
  color: rgba(240, 237, 230, 0.75);
  margin: 0 0 10px;
}

.bft-brand__sub {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.4);
  margin: 0;
  font-weight: 600;
} */

/* ================================
   STRIPE
   ================================ */
.bft-stripe { display: flex; height: 4px; width: 100%; margin-bottom: 64px; }
.bft-stripe__cyan    { flex: 1; background: #00B4D8; }
.bft-stripe__yellow  { flex: 1; background: #FFD600; }
.bft-stripe__magenta { flex: 1; background: #FF2D78; }

/* ================================
   NAV
   ================================ */
/* .bft-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1360px;
  margin: 0 auto 64px;
}

.bft-nav__heading {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.6);
  margin: 0 0 20px;
  font-weight: 600;
}

.bft-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bft-nav__list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.7);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.bft-nav__list a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #00B4D8, #FFD600, #FF2D78);
  transition: width 0.4s ease;
}

.bft-nav__list a:hover { color: #FF2D78 !important; }
.bft-nav__list a:hover::after { width: 100%; }
.bft-nav__list--social { gap: 16px; }
.bft-nav__list--social a::after { display: none; }

.bft-social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.bft-social svg { width: 16px; height: 16px; flex-shrink: 0; transition: filter 0.3s ease; }
.bft-social:hover { color: #FF2D78 !important; }
.bft-social:hover svg { filter: drop-shadow(0 0 6px rgba(255,45,120,0.6)); } */

/* ================================
   BOTTOM BAR
   ================================ */
/* .bft-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(240, 237, 230, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bft-bottom__copy {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(240, 237, 230, 0.35);
  margin: 0;
}

.bft-bottom__links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
}

.bft-bottom__links span { color: rgba(240, 237, 230, 0.15); }
.bft-bottom__links a { color: rgba(240, 237, 230, 0.35); text-decoration: none; transition: color 0.3s ease; }
.bft-bottom__links a:hover { color: rgba(240, 237, 230, 0.8); } */

/* ================================
   GIANT WORDMARK
   ================================ */
/* .bft-giant {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.04);
  text-align: center;
  line-height: 0.85;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 40px;
  user-select: none;
  padding: 0 0 20px;
} */

/* ================================
   MOBILE
   ================================ */
/* @media (max-width: 860px) {
  .bft-footer { padding: 60px 28px 0; }
  .bft-nav { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .bft-brand__tagline { color: rgba(240, 237, 230, 0.65) !important; }
}

@media (max-width: 540px) {
  .bft-footer { padding: 60px 20px 0; }
  .bft-nav { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .bft-brand__logo { font-size: 48px; letter-spacing: 10px; }
  .bft-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .bft-nav__heading { color: rgba(240, 237, 230, 0.5) !important; }
}
 */ */
