:root {
  --ink: #fff5fb;
  --muted: #f6b6dd;
  --black: #08030a;
  --plum: #1b071a;
  --panel: rgba(35, 8, 32, 0.78);
  --line: rgba(255, 93, 205, 0.28);
  --pink: #ff149f;
  --hot: #ff4fc8;
  --neon: #ff7ee1;
  --blue: #38e9ff;
  --gold: #ffd166;
  --shadow: 0 28px 90px rgba(255, 20, 159, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 3, 10, 0.86), rgba(8, 3, 10, 0.9)),
    url("assets/beacons/background_daphnelove1974.png") center top / 520px auto repeat,
    radial-gradient(circle at 18% 18%, rgba(255, 20, 159, 0.32), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(56, 233, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #09030b 0%, #170516 48%, #09030b 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(8, 3, 10, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 36px rgba(255, 20, 159, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 300px;
}

.brand-logo {
  display: block;
  width: min(300px, 42vw);
  height: 52px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(255, 20, 159, 0.9));
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

nav a {
  white-space: nowrap;
}

.nav-cta {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 0 16px rgba(255, 126, 225, 0.9);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 88px) 64px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 3, 10, 0.96) 0%, rgba(28, 5, 27, 0.84) 36%, rgba(8, 3, 10, 0.08) 75%),
    linear-gradient(0deg, rgba(8, 3, 10, 0.96) 0%, rgba(8, 3, 10, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--neon);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 126, 225, 0.75);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  font-weight: 500;
  line-height: 0.93;
  text-shadow:
    0 0 18px rgba(255, 20, 159, 0.88),
    0 0 54px rgba(255, 20, 159, 0.42);
}

.hero-logo {
  display: block;
  width: min(700px, 100%);
  height: auto;
  margin: 0 0 24px;
  filter:
    drop-shadow(0 0 24px rgba(255, 20, 159, 0.95))
    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.45));
}

.profile-card {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 6vw, 88px);
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(330px, calc(100% - 40px));
  padding: 14px;
  background: rgba(8, 3, 10, 0.72);
  border: 1px solid rgba(255, 126, 225, 0.46);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.profile-card img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 2px solid var(--hot);
  border-radius: 50%;
}

.profile-card strong,
.profile-card span {
  display: block;
}

.profile-card strong {
  color: #fff;
}

.profile-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-links-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px clamp(20px, 6vw, 88px);
  background: rgba(8, 3, 10, 0.88);
  border-top: 1px solid rgba(255, 126, 225, 0.24);
  border-bottom: 1px solid rgba(255, 126, 225, 0.24);
}

.quick-links-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 20, 159, 0.18);
  border: 1px solid rgba(255, 126, 225, 0.44);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 0 18px rgba(255, 20, 159, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quick-links-section a:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 233, 255, 0.72);
  box-shadow: 0 0 24px rgba(56, 233, 255, 0.2);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: #ffe1f4;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 126, 225, 0.72);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 79, 200, 0.52);
}

.button.primary {
  color: #230014;
  background: linear-gradient(135deg, var(--hot), var(--gold));
  border-color: transparent;
  box-shadow: 0 0 28px rgba(255, 79, 200, 0.48);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 20, 159, 0.14);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 233, 255, 0.62);
  box-shadow: 0 24px 76px rgba(56, 233, 255, 0.18);
}

.feature-label {
  display: inline-flex;
  margin-bottom: 66px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(56, 233, 255, 0.7);
}

.feature-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.feature-card p,
.shop-copy p,
.club-row p {
  color: var(--muted);
}

.promo-section {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 20, 159, 0.25), transparent 32%),
    rgba(8, 3, 10, 0.62);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  min-height: 250px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(255, 79, 200, 0.24);
}

.promo-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.28rem;
}

.promo-card p {
  color: var(--muted);
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 20, 159, 0.18), rgba(56, 233, 255, 0.08)),
    var(--plum);
}

.shop-copy {
  max-width: 720px;
}

.shop-copy p:last-child {
  font-size: 1.08rem;
}

.drop-list {
  display: grid;
  gap: 12px;
}

.drop-list div {
  padding: 24px;
  background: rgba(255, 245, 251, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.drop-list a {
  display: block;
  padding: 24px;
  background: rgba(255, 245, 251, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.drop-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 233, 255, 0.62);
  box-shadow: 0 18px 54px rgba(56, 233, 255, 0.14);
}

.drop-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.18rem;
}

.drop-list span {
  color: var(--muted);
}

.link-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.link-directory a {
  display: grid;
  gap: 6px;
  min-height: 126px;
  padding: 20px;
  background: rgba(255, 245, 251, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(255, 20, 159, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-directory a:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 233, 255, 0.68);
  box-shadow: 0 20px 58px rgba(56, 233, 255, 0.16);
}

.link-directory span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(56, 233, 255, 0.65);
}

.link-directory strong {
  color: #fff;
  font-size: 1.08rem;
}

.link-directory em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.club-list {
  border-top: 1px solid var(--line);
}

.club-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.club-row span {
  color: var(--hot);
  font-weight: 900;
}

.club-row p {
  margin-bottom: 0;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(20px, 6vw, 88px) clamp(40px, 6vw, 72px);
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 20, 159, 0.64), rgba(56, 233, 255, 0.18)),
    #170516;
  border: 1px solid rgba(255, 126, 225, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-band .eyebrow {
  color: var(--gold);
}

.contact-band h2 {
  margin-bottom: 0;
}

.contact-band .button.primary {
  background: #fff;
  border-color: #fff;
  color: #230014;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 88px) 44px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 860px;
    align-items: start;
    padding-top: 174px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 3, 10, 1) 0%, rgba(28, 5, 27, 0.9) 44%, rgba(8, 3, 10, 0.12) 80%),
      linear-gradient(0deg, rgba(8, 3, 10, 0.98) 0%, rgba(8, 3, 10, 0) 30%);
  }

  .hero-image {
    object-position: 60% center;
  }

  .feature-grid,
  .shop-section,
  .promo-grid,
  .promo-card,
  .link-directory {
    grid-template-columns: 1fr;
  }

  .profile-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-label {
    margin-bottom: 44px;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-links-section a {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(250px, 74vw);
    height: 50px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .hero {
    min-height: 820px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
  }

  .quick-links-section a {
    flex-basis: 100%;
  }

  .club-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
