/* Goldfeather landing page styles inspired by deck colors and texture. */

:root {
  --peach: #ffd8c8;
  --peach-deep: #ffc8ae;
  --hot-pink: #ff218d;
  --hot-pink-deep: #df1173;
  --title-plum: #a31657;
  --ink: #1f1a1a;
  --muted-ink: #5f4a4a;
  --white: #ffffff;
  --light-pink: #ffdce8;
  --dot-pink: #fbcfe8;
  --yellow-soft: #fff6cf;
  --orange-accent: #fb923c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--peach);
}

h2,
h3 {
  color: var(--title-plum);
  margin: 0;
  line-height: 1.2;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 4.3vw, 2rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
  margin-bottom: 0.35rem;
}

p {
  margin: 0;
}

main {
  display: grid;
  gap: 1.45rem;
}

.sparkle-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 182, 212, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 78% 12%, rgba(255, 160, 190, 0.45) 0%, transparent 38%),
    radial-gradient(circle at 88% 72%, rgba(255, 192, 210, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 22% 82%, rgba(255, 170, 200, 0.4) 0%, transparent 36%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath fill='%23ffb7d5' fill-opacity='0.35' d='M36 6l3 14 14 3-14 3-3 14-3-14-14-3 14-3zm28 28l2 9 9 2-9 2-2 9-2-9-9-2 9-2z'/%3E%3C/svg%3E");
  animation: drift 22s linear infinite alternate;
}

.sparkle-layer::before,
.sparkle-layer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.sparkle-layer::before {
  width: 22rem;
  height: 22rem;
  top: -8rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(255, 33, 141, 0.18) 0%, transparent 66%);
  animation: floatBlob 16s ease-in-out infinite;
}

.sparkle-layer::after {
  width: 20rem;
  height: 20rem;
  bottom: -8rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(255, 236, 115, 0.26) 0%, transparent 66%);
  animation: floatBlob 18s ease-in-out infinite reverse;
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(1rem, 3.2vw, 1.75rem) 1.1rem 2.8rem;
}

.masthead {
  margin-bottom: 2.3rem;
  min-height: min(94vh, 57rem);
  display: flex;
  align-items: center;
}

.hero-surface {
  width: 100%;
  padding: clamp(1rem, 2.8vw, 1.8rem);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 240, 247, 0.58)),
    radial-gradient(circle at top right, rgba(255, 33, 141, 0.1), transparent 40%);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 54px rgba(168, 34, 96, 0.22);
  backdrop-filter: blur(2px);
  animation: fadeRise 700ms ease both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.22rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot-pink-deep);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 999px;
}

.page-title {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
  padding: clamp(1.5rem, 4.4vw, 2.4rem) clamp(1.15rem, 3.4vw, 2rem);
  background: var(--white);
  border-radius: 18px;
  box-shadow:
    0 4px 0 rgba(255, 33, 141, 0.12),
    0 26px 52px rgba(225, 29, 112, 0.18);
  border: 2px solid rgba(255, 206, 228, 0.85);
}

.hero-line {
  display: block;
  font-size: clamp(1.6rem, 5.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--hot-pink);
  text-shadow: 0 2px 0 rgba(255, 170, 209, 0.7);
}

.brand-name {
  align-self: center;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--title-plum);
  padding: 0.5rem 1rem;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.94) 0%, rgba(255, 214, 232, 0.95) 100%);
  border: 3px solid var(--hot-pink);
  box-shadow: 0 10px 20px rgba(223, 17, 115, 0.18);
}

.tagline {
  margin-top: 0.9rem;
  padding: 1.05rem 1rem;
  max-width: 55rem;
  color: var(--muted-ink);
  border-radius: 14px;
  background-color: var(--dot-pink);
  background-image: radial-gradient(var(--white) 22%, transparent 23%);
  background-size: 14px 14px;
  border: 2px solid rgba(255, 33, 141, 0.24);
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.scroll-cue {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  text-decoration: none;
  color: rgba(138, 23, 78, 0.85);
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
}

.scroll-dot {
  width: 1.15rem;
  height: 1.9rem;
  border: 2px solid rgba(223, 17, 115, 0.7);
  border-radius: 999px;
  display: inline-block;
  position: relative;
}

.scroll-dot::before {
  content: "";
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  top: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--hot-pink-deep);
  animation: nudge 1.2s ease-in-out infinite;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--hot-pink-deep), var(--hot-pink));
  box-shadow: 0 10px 24px rgba(223, 17, 115, 0.25);
}

.btn-secondary {
  color: var(--title-plum);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 33, 141, 0.4);
  box-shadow: 0 8px 20px rgba(161, 26, 86, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(223, 17, 115, 0.36);
  outline-offset: 2px;
}

.section {
  padding: 1.35rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 30px rgba(164, 22, 90, 0.12);
  animation: fadeRise 650ms ease both;
}

.section-heading {
  margin-bottom: 0.85rem;
}

.deck-card {
  border: 5px solid var(--hot-pink);
  background: linear-gradient(165deg, var(--yellow-soft) 0%, #fffbeb 45%, var(--white) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.75),
    0 12px 0 rgba(251, 146, 60, 0.35),
    0 30px 54px rgba(225, 29, 112, 0.2);
}

.placeholder-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.24rem 0.66rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--hot-pink-deep), var(--orange-accent));
  border-radius: 999px;
}

.bullet-grid,
.two-up,
.product-grid {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.bullet-grid,
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.two-up {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.mini-card {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 33, 141, 0.24);
  border-radius: 12px;
  padding: 0.8rem 0.78rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.product-card {
  border-radius: 14px;
  padding: 0.9rem 0.9rem;
  background: #f7689d;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 20px rgba(223, 17, 115, 0.25);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card h3 {
  color: var(--white);
}

.product-card p {
  color: #ffe4f0;
}

.gallery {
  background: rgba(255, 255, 255, 0.65);
  border: 2px solid rgba(255, 33, 141, 0.2);
}

.gallery-grid {
  margin-top: 0.82rem;
  display: grid;
  gap: 0.68rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.gallery-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 20px rgba(159, 20, 86, 0.18);
  background: #fff6fa;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.gallery-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mini-card:hover,
.product-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(159, 20, 86, 0.24);
}

.feature-list {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.42rem;
}

.section-copy {
  color: var(--muted-ink);
}

.roadmap {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.fund-grid {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 9.2rem 7rem;
}

.fund {
  border-radius: 12px;
  padding: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: #3f222a;
  border: 2px solid rgba(255, 33, 141, 0.28);
  transition: transform 220ms ease;
}

.fund:hover {
  transform: translateY(-3px);
}

.fund-a {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: #ffc300;
}

.fund-b {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: #ff3f85;
  color: #fff5fb;
}

.fund-c {
  grid-column: 3;
  grid-row: 1 / span 2;
  background: #f4e39f;
}

.fund-d {
  grid-column: 4;
  grid-row: 1;
  background: #f2d9eb;
}

.fund-e {
  grid-column: 4;
  grid-row: 2;
  background: #ffd9b0;
}

.cta a {
  color: var(--hot-pink-deep);
  font-weight: 700;
}

.muted {
  color: var(--muted-ink);
  font-size: 0.94rem;
}

.footer {
  margin-top: 1.6rem;
  padding-top: 0.9rem;
  border-top: 2px dashed rgba(255, 33, 141, 0.34);
  color: var(--muted-ink);
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
}

.footer-location {
  font-style: italic;
}

@media (max-width: 48rem) {
  body {
    font-size: 1rem;
  }

  .shell {
    padding: 1rem 0.82rem 1.85rem;
  }

  .masthead {
    min-height: min(92vh, 52rem);
    margin-bottom: 1.35rem;
  }

  .hero-surface {
    padding: 0.9rem;
    border-radius: 22px;
  }

  .fund-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .fund-a,
  .fund-b,
  .fund-c,
  .fund-d,
  .fund-e {
    grid-column: auto;
    grid-row: auto;
    min-height: 5.8rem;
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, 0.45rem);
    opacity: 0.55;
  }
}

@keyframes drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 22px 14px, -16px 10px, 15px -8px, -20px -12px, 30px 24px;
  }
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 14px, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
