/* Polished Club — warm cream, charcoal, muted rose/mauve (female-dominated, all ages) */
:root {
  --bg-hero: linear-gradient(180deg, #faf8f6 0%, #f5f2ee 50%, #f0ebe6 100%);
  --bg-dark: #6b4d5a;
  --bg-card: #faf8f6;
  --gold: #9d7a87;
  --gold-light: #c9a4b0;
  --gold-border: #b8929a;
  --accent-gold: #b8a078;
  --text-light: #fff;
  --text-muted: #6b6368;
  --gradient-brand: linear-gradient(90deg, #c9a4b0 0%, #a67a8a 50%, #8b6b76 100%);
  --gradient-logo: linear-gradient(90deg, #c4a574 0%, #b8926a 40%, #9d7a52 100%);
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --soft: "Nunito", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: #2c2c2c;
  background: #faf8f6;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 146, 154, 0.35);
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.logo sup {
  font-size: 0.5em;
  -webkit-text-fill-color: var(--text-muted);
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
}

.site-header nav a {
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-header nav a:hover {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fdfcfb 0%, #faf8f6 50%, #f5f2ee 100%);
}

.hero-overlay {
  display: none;
}

/* Hero reviews — scrolling row below button, right to left */
.hero-reviews-row {
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  animation: scrollRightToLeft 45s linear infinite;
}

.hero-reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollRightToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-review {
  position: relative;
  z-index: 1;
  flex: 0 0 220px;
  width: 220px;
  padding: 1rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(107, 77, 90, 0.08);
  border: 1px solid rgba(184, 146, 154, 0.4);
}

.hero-review-stars {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.hero-review-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(44, 44, 44, 0.9);
  margin: 0 0 0.5rem;
  font-style: italic;
}

.hero-review-name {
  font-size: 0.8rem;
  color: rgba(44, 44, 44, 0.65);
  margin: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate(-40px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate(40px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(0, calc(-50% - 8px));
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  width: 100%;
}

/* Section review cards — positioned at left/right edges, away from center */
.review-card {
  position: absolute;
  z-index: 2;
  width: 200px;
  max-width: 85vw;
  padding: 1rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(107, 77, 90, 0.08);
  border: 1px solid rgba(184, 146, 154, 0.35);
  top: 50%;
  transform: translateY(-50%);
  animation: fadeInUp 0.7s ease-out both, floatSoft 5s ease-in-out 1s infinite;
}

.review-card--edge-left {
  left: 1rem;
}

.review-card--edge-right {
  right: 1rem;
}

.review-card--why {
  animation-delay: 0.1s, 1.2s;
}

.review-card--packages {
  animation-delay: 0.2s, 1.5s;
}

.review-card--contact {
  animation-delay: 0.15s, 1.3s;
}

.review-card-stars {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.review-card-text {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(44, 44, 44, 0.9);
  margin: 0 0 0.4rem;
  font-style: italic;
}

.review-card-name {
  font-size: 0.75rem;
  color: rgba(44, 44, 44, 0.6);
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateY(0);
  }
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 6px));
  }
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.9);
  margin: 0 0 0.5rem;
}

.hero-title {
  margin: 0 0 1rem;
  line-height: 1.1;
}

.word-polished,
.word-club {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-style: normal;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.word-polished {
  font-size: clamp(3.5rem, 12vw, 6.25rem);
}

.word-club {
  font-size: clamp(2.75rem, 8.5vw, 4.25rem);
}

.word-club sup {
  font-size: 0.4em;
  -webkit-text-fill-color: rgba(44, 44, 44, 0.7);
}

.hero-sub {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(44, 44, 44, 0.88);
  margin: 0 0 0.75rem;
}

.hero-cta {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.9);
  margin: 0 0 0.25rem;
}

.hero-price {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.88);
  margin: 0 0 0.5rem;
}

.hero-benefit {
  font-size: 1.15rem;
  color: rgba(44, 44, 44, 0.9);
  margin: 0 0 0.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 500;
}

.hero-content .btn {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-hero-cta {
  margin-top: 0.5rem;
}

/* Who it's for */
.who-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: #fff;
  border-top: 1px solid rgba(184, 146, 154, 0.2);
}

@media (max-width: 700px) {
  .who-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .who-section .who-image-wrap { order: -1; }
}

.who-headline {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin: 0 0 0.75rem;
}

.who-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a4548;
  margin: 0 0 0.5rem;
}

.who-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.who-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(107, 77, 90, 0.12);
}

.who-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FAQ */
.faq-section {
  padding: 3.5rem 1.5rem;
  background: linear-gradient(180deg, #faf8f6 0%, #f5f2ee 100%);
}

.faq-headline {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--bg-dark);
  text-align: center;
  margin: 0 0 2rem;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(184, 146, 154, 0.25);
  box-shadow: 0 2px 8px rgba(107, 77, 90, 0.05);
  overflow: hidden;
}

.faq-question {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-dark);
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 400;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4548;
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}

/* Why section */
.why-section {
  position: relative;
  padding: 3.5rem 1.5rem;
  background: linear-gradient(180deg, #faf8f6 0%, #f5f2ee 100%);
}

.why-inner {
  max-width: 720px;
  margin: 0 auto;
}

.why-headline {
  font-family: var(--soft);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--bg-dark);
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}

.why-headline::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 1rem auto 0;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.why-sub {
  font-family: var(--soft);
  text-align: center;
  font-size: 1.05rem;
  font-weight: 400;
  color: #5c5358;
  margin: 0 0 2rem;
  line-height: 1.5;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.25rem 1.25rem 3rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(107, 77, 90, 0.06);
  border: 1px solid rgba(184, 146, 154, 0.3);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-item::before {
  content: "★";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  font-size: 0.9rem;
  color: var(--gold);
}

.why-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 77, 90, 0.1);
}

.why-item-title {
  font-family: var(--soft);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-dark);
}

.why-item-desc {
  font-size: 0.9rem;
  color: #4a4548;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--text-light);
  border: 2px solid var(--gold-border);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 77, 90, 0.2);
}

/* Packages */
.packages {
  position: relative;
  background: linear-gradient(180deg, #f5f2ee 0%, #f0ebe6 50%, #ebe4de 100%);
  padding: 4rem 1.5rem 5rem;
}

.packages-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--bg-dark);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.packages-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  border: 2px solid var(--gold-border);
  border-radius: 12px;
  padding: 1.75rem;
  color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(107, 77, 90, 0.06);
}

.package-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4a4548;
  flex-grow: 1;
}

.package-list strong {
  color: var(--bg-dark);
  font-weight: 500;
}

.package-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
}

.package-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-card {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold-border);
  text-align: center;
}

.btn-card:hover {
  background: rgba(201, 164, 176, 0.35);
  color: var(--gold);
}

/* Contact */
.contact {
  position: relative;
  background: linear-gradient(180deg, #faf8f6 0%, #f5f2ee 100%);
  padding: 4rem 1.5rem;
}

.contact-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--bg-dark);
  margin: 0 0 0.5rem;
}

.contact-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bg-dark);
  margin: 0 0 0.5rem;
}

.contact p {
  color: #4a4548;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.contact p:last-of-type {
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #f0ebe6 0%, #e8e0d8 100%);
  color: var(--bg-dark);
  font-size: 0.85rem;
  text-align: center;
  padding: 1.25rem;
}

.site-footer p {
  margin: 0;
}

.site-footer sup {
  font-size: 0.7em;
}

.footer-links {
  margin-top: 0.5rem !important;
}

.footer-links a {
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-sep {
  margin: 0 0.35rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .review-card {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-reviews-row {
    margin-top: 1.5rem;
  }

  .hero-reviews-track {
    gap: 0.75rem;
    animation-duration: 35s;
  }

  .hero-review {
    flex: 0 0 180px;
    width: 180px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .site-header nav {
    gap: 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .why-list {
    grid-template-columns: 1fr;
  }
}
