/* === MIDWESTERN IV — styles.css === */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

:root {
  --font-heading: 'Instrument Serif', serif;
  --font-body:    'Barlow', sans-serif;
  --color-bg:     #000000;
  --color-text:   #ffffff;
  --section-light-bg:   #f0f0ee;
  --section-light-text: #111111;
  --card-dark-bg:           rgba(255,255,255,0.05);
  --card-dark-border:       rgba(255,255,255,0.12);
  --card-dark-shadow:       0 8px 32px rgba(0,0,0,0.3);
  --card-dark-shadow-hover: 0 12px 48px rgba(0,0,0,0.4);
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #000;
  z-index: 9999;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* === LIQUID GLASS === */
.liquid-glass {
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  background: rgba(255, 255, 255, 0.07);
  position: relative;
  border-radius: 9999px;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.04)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  border-radius: 9999px;
}
.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.40),
    rgba(255, 255, 255, 0.08)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  max-width: calc(100vw - 2rem);
}

.nav-logo-pill {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  user-select: none;
}

.nav-center-pill {
  display: none;
  align-items: center;
  height: 48px;
  padding: 0 0.375rem;
}
.nav-center-pill a {
  display: block;
  padding: 0 0.875rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
  line-height: 48px;
  white-space: nowrap;
}
.nav-center-pill a:hover {
  color: #fff;
}

.nav-cta-pill {
  height: 48px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.nav-hamburger {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-center-pill { display: flex; }
  .nav-hamburger { display: none; }
}

/* === MOBILE SHEET === */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 99;
}
.sheet-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sheet {
  position: fixed;
  right: 0;
  top: 0;
  width: min(88vw, 360px);
  height: 100dvh;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-sheet.open {
  transform: translateX(0);
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sheet-logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: #fff;
}
.sheet-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.sheet-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sheet-links {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: auto;
}
.sheet-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 0.75rem;
  opacity: 0;
  transform: translateX(16px);
  transition: background 0.2s, color 0.2s, opacity 0.35s ease, transform 0.35s ease;
}
.sheet-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.mobile-sheet.open .sheet-link {
  opacity: 1;
  transform: translateX(0);
}

.sheet-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}
.sheet-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.14);
  position: relative;
}
.sheet-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.40), rgba(255,255,255,0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.sheet-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border: none;
  background: none;
}

/* === FULL-VIEWPORT SECTION BASE === */
.full-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* === VIDEO BACKGROUND === */
.video-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .video-bg { opacity: 1 !important; }
}

/* === HERO SECTION === */
#hero { background: #000; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 1.5rem 5rem;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem 0.375rem 0.4375rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.hero-badge-chip {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  padding: 0.2rem 0.625rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.75rem;
  max-width: 820px;
}

.hero-subheading {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s;
}
.hero-cta-primary:hover { transform: scale(1.04); filter: brightness(1.1); }
.hero-cta-primary:active { transform: scale(0.96); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-cta-secondary:hover { color: #fff; }

.hero-stats {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
}
.stat-icon { color: rgba(255, 255, 255, 0.55); flex-shrink: 0; }
.stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.2;
  display: block;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.trust-chip {
  font-size: 0.73rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.02em;
}
.trust-partners {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-partner {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
}

/* === SERVICES SECTION === */
#services { background: #000; }

.services-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 120px 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.services-kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.services-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  min-height: 360px;
  gap: 0.875rem;
  border-radius: 1.25rem;
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  background: rgba(255, 255, 255, 0.07);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.service-tag {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
}
.service-card-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  margin-top: auto;
  line-height: 1.1;
}
.service-card-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

/* === DRIP MENU SECTION === */
#menu {
  background: var(--section-light-bg);
  padding: 6rem 2rem;
}
.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}
#menu .section-heading { color: var(--section-light-text); }
#menu .section-subheading { color: rgba(0, 0, 0, 0.55); }

.section-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-subheading {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 300;
  line-height: 1.65;
  margin-top: 0.625rem;
  max-width: 460px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 3rem;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

.drip-card {
  background: #fff;
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.drip-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--section-light-text);
  line-height: 1.1;
  margin-bottom: 0.125rem;
}
.drip-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.52);
  line-height: 1.5;
}
.drip-ingredients {
  font-size: 0.76rem;
  color: rgba(0, 0, 0, 0.35);
  line-height: 1.55;
  margin-top: 0.125rem;
}
.drip-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.drip-duration-price {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
}
.drip-customize {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.38);
  transition: color 0.2s;
  cursor: pointer;
}
.drip-customize:hover { color: rgba(0, 0, 0, 0.65); }

/* === HOW IT WORKS === */
#how-it-works {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
#how-it-works .section-heading { color: #fff; }
#how-it-works .section-subheading { color: rgba(255, 255, 255, 0.5); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.how-step-number {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
}
.how-step-icon { color: rgba(255, 255, 255, 0.45); }
.how-step-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}
.how-step-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
}

/* === WHY IV === */
#why-iv {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.why-inner { max-width: 1200px; margin: 0 auto; }
#why-iv .section-heading { color: #fff; }
#why-iv .section-subheading { color: rgba(255, 255, 255, 0.5); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.benefit-icon { color: rgba(255, 255, 255, 0.45); }
.benefit-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
}
.benefit-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
}

/* === MEMBERSHIP === */
#membership {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.membership-inner { max-width: 1100px; margin: 0 auto; }
#membership .section-heading { color: #fff; text-align: center; }
#membership .section-subheading { color: rgba(255, 255, 255, 0.5); text-align: center; max-width: none; }

.membership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .membership-grid { grid-template-columns: repeat(3, 1fr); }
}

.tier-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  background: rgba(255, 255, 255, 0.07);
  position: relative;
  min-height: auto;
}
.tier-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.tier-card.popular {
  background: rgba(255, 255, 255, 0.12);
}
.tier-card.popular::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.40), rgba(255,255,255,0.08));
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.tier-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tier-price {
  font-size: 2.25rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.1875rem;
}
.tier-price-period {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.75rem;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.tier-feature-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.45);
}
.tier-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  margin-top: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.14);
  position: relative;
}
.tier-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.40), rgba(255,255,255,0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.tier-cta:hover { filter: brightness(1.15); transform: scale(1.02); }

/* === TESTIMONIALS === */
#testimonials {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
#testimonials .section-heading { color: #fff; text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.testimonial-title {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
}

/* === FAQ === */
#faq {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
#faq .section-heading { color: #fff; text-align: center; margin-bottom: 3rem; }

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.375rem 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.975rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: #fff; }
.faq-item-open .faq-question { color: #fff; }

.faq-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item-open .faq-chevron {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.6);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.faq-item-open .faq-answer {
  max-height: 500px;
  opacity: 1;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.52);
}

/* === BOOKING CTA === */
#book {
  background: #000;
  padding: 8rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.book-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.book-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
}
.book-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}
.book-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
}
.book-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}

/* === FOOTER === */
footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 2rem 2.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-wordmark {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
}
.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.55;
}
.footer-socials {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.25rem;
}
.footer-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  transition: background 0.2s, color 0.2s;
}
.footer-social:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255, 255, 255, 0.82); }
.footer-address {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal-link {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.2s;
}
.footer-legal-link:hover { color: rgba(255, 255, 255, 0.45); }

/* === BLUR TEXT === */
.blur-text-parent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.1em;
}

.blur-word {
  display: inline-block;
  margin-right: 0.28em;
  opacity: 1;
  filter: none;
  transform: none;
}

/* === ENTRANCE ELEMENTS — visible by default === */
.hero-badge,
.hero-subheading,
.hero-ctas,
.hero-stats,
.hero-trust {
  opacity: 1;
  filter: none;
  transform: none;
}

/* === ANIMATIONS — only when motion is OK === */
@media (prefers-reduced-motion: no-preference) {
  .blur-word {
    opacity: 0;
    filter: blur(10px);
    transform: none;
  }

  .blur-in-active .blur-word {
    animation: blurIn 0.7s ease-out forwards;
  }

  @keyframes blurIn {
    0%   { filter: blur(10px); opacity: 0;   transform: translateY(50px); }
    50%  { filter: blur(5px);  opacity: 0.5; transform: translateY(-5px); }
    100% { filter: blur(0);    opacity: 1;   transform: translateY(0); }
  }

  .hero-badge {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    animation: entranceUnblur 0.7s ease-out 0.4s forwards;
  }
  .hero-subheading {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    animation: entranceUnblur 0.7s ease-out 0.8s forwards;
  }
  .hero-ctas {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    animation: entranceUnblur 0.7s ease-out 1.1s forwards;
  }
  .hero-stats {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    animation: entranceUnblur 0.7s ease-out 1.3s forwards;
  }
  .hero-trust {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    animation: entranceUnblur 0.7s ease-out 1.4s forwards;
  }

  @keyframes entranceUnblur {
    from { filter: blur(10px); opacity: 0; transform: translateY(20px); }
    to   { filter: blur(0);    opacity: 1; transform: translateY(0); }
  }
}
