/* ============================================================
   Dancing Hen — style.css
   Mobile-first. System fonts. No external dependencies.
   v2.3 · April 2026
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:      #8B1A4A;   /* deep wine berry */
  --primary-dark: #4A0D2A;   /* very dark wine */
  --primary-mid:  #9B2255;   /* mid wine */
  --primary-light:#D4849E;   /* muted blush */
  --accent:       #E8C97A;   /* champagne gold — warm, not yellow */
  --accent-dark:  #D4A843;   /* deeper champagne */
  --purple:       #6A1B8A;   /* supporting plum-purple */
  --purple-light: #9C4DB8;   /* lighter purple */
  --bg:           #FFFFFF;
  --bg-alt:       #F9F4F6;   /* barely-there blush */
  --bg-dark:      #1A0A14;   /* near-black with warm tint */
  --text:         #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #888888;
  --white:        #FFFFFF;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 2px 16px rgba(160,32,96,0.12);
  --shadow-lg:    0 6px 32px rgba(160,32,96,0.20);
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w:        1160px;
  --transition:   0.2s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3em; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5em;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--gold {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn--gold:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--primary); }
.btn--lg { padding: 18px 36px; font-size: 0.88rem; }
.btn--full { width: 100%; text-align: center; }

/* ── Section spacing ───────────────────────────────────────── */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.logo:hover { text-decoration: none; }

.primary-nav ul {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
}
.primary-nav ul.open { display: flex; }
.primary-nav a {
  display: block;
  padding: 12px 24px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--accent); }
.primary-nav li { position: relative; }

.header-phone {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent-dark); text-decoration: none; }

.nav-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .primary-nav { position: static; }
  .primary-nav ul {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 4px;
  }
  .primary-nav a { padding: 8px 12px; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  color: var(--white);
  padding: 100px 0 108px;
  text-align: center;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(74,13,42,0.78) 0%,
    rgba(100,20,60,0.68) 50%,
    rgba(70,18,90,0.78) 100%
  );
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,122,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.2rem;
}
.hero-trust {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ── Stats Band ─────────────────────────────────────────────── */
.stats-band {
  background: var(--accent);
  padding: 28px 0;
}
.stats-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-block-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.stat-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(136,14,79,0.75);
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #4A0D2A 0%, #8B1A4A 45%, #4A1268 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.4em; position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero--sm { padding: 56px 0; }

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--primary-dark);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-icon { font-size: 1.2rem; }
@media (min-width: 640px) {
  .trust-bar-inner { flex-direction: row; justify-content: center; gap: 40px; }
}

/* ── Styles Grid ───────────────────────────────────────────── */
.styles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .styles-grid { grid-template-columns: repeat(3, 1fr); }
}

.style-card {
  background: var(--white);
  border: 1.5px solid #e8e2f0;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.style-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.style-card h3 { color: var(--primary); margin-bottom: 6px; }
.style-card p  { font-size: 0.9rem; color: var(--text-mid); margin: 0; }
.style-card--special { border-color: var(--accent); }

.style-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.style-badge--alt {
  background: var(--primary);
  color: var(--white);
}

.styles-grid--preview { margin-bottom: 28px; }
.styles-preview { text-align: center; }
.styles-preview h2 { margin-bottom: 0.3em; }
.styles-preview-cta { text-align: center; margin-top: 8px; }

.styles-custom {
  text-align: center;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  margin-top: 48px;
}
.styles-custom h2 { margin-bottom: 0.5em; }
.styles-custom p  { max-width: 520px; margin: 0 auto 1.5rem; color: var(--text-mid); }

/* ── How it Works ──────────────────────────────────────────── */
.how-it-works { text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step { padding: 0 12px; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.step h3 { color: var(--primary); margin-bottom: 8px; }
.step p  { font-size: 0.95rem; color: var(--text-mid); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px 0 32px;
  text-align: left;
}
@media (min-width: 600px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonials-grid--full { margin-bottom: 0; }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid #e8e2f0;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stars { font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.65;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}
.testimonials-cta { text-align: center; }

/* ── Quote Form ────────────────────────────────────────────── */
.quote-section {
  background: linear-gradient(135deg, #4A0D2A 0%, #8B1A4A 45%, #4A1268 100%);
  padding: 72px 0;
}
.quote-inner { max-width: 780px; }
.quote-section h2 { color: var(--white); margin-bottom: 0.3em; }
.quote-sub { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

.quote-form { margin-top: 8px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.form-group input,
.form-group select {
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font);
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='rgba(255,255,255,0.6)'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.14);
}
.form-group input::placeholder { color: rgba(255,255,255,0.4); }
.form-group select option { background: var(--primary-dark); color: var(--white); }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.5); cursor: pointer; }

.form-group--cta { justify-content: flex-end; }

.form-row--full { grid-template-columns: 1fr !important; }
.form-row--submit { grid-template-columns: 1fr !important; margin-top: 8px; }

.label-optional {
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: none;
  letter-spacing: 0;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-error {
  background: rgba(255,80,80,0.15);
  border: 1px solid rgba(255,80,80,0.5);
  color: #ffaaaa;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

/* ── Cross-sell ────────────────────────────────────────────── */
.crosssell-section {
  background: var(--primary-dark);
  padding: 64px 0;
  text-align: center;
  border-top: 3px solid var(--accent);
}
.crosssell-inner { max-width: 640px; }
.crosssell-eyebrow { color: var(--accent); margin-bottom: 0.5em; }
.crosssell-section h2 { color: var(--white); margin-bottom: 0.5em; }
.crosssell-section p  { color: rgba(255,255,255,0.78); margin-bottom: 1.8rem; }

/* ── Locations ─────────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0 48px;
}
@media (min-width: 500px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px){ .locations-grid { grid-template-columns: repeat(5, 1fr); } }

.location-tile {
  background: var(--white);
  border: 1.5px solid #e8e2f0;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: var(--primary);
}
.location-tile--ask {
  background: var(--bg-alt);
  border-color: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
}

.venue-tip {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 640px;
}
.venue-tip h2 { font-size: 1.2rem; margin-bottom: 0.5em; }
.venue-tip p  { margin: 0; color: var(--text-mid); }

/* ── About ─────────────────────────────────────────────────── */
.about-content { max-width: 760px; }
.about-text h2 { margin-top: 2rem; }
.about-text h2:first-child { margin-top: 0; }
.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.about-stat { display: flex; flex-direction: column; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.about-sister {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.about-sister a { color: var(--primary); font-weight: 600; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 0;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-item a,
.contact-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
}
.contact-item a:hover { text-decoration: underline; }
@media (min-width: 600px) {
  .contact-details { flex-direction: row; gap: 48px; }
}

/* ── Thank You ─────────────────────────────────────────────── */
.thankyou-icon {
  font-size: 3.5rem;
  margin-bottom: 0.5em;
}
.page-hero .btn { margin-top: 1.5rem; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #2A0618;
  color: var(--white);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-logo { font-size: 1.3rem; margin-bottom: 12px; display: inline-block; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin: 0; }

.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--accent); text-decoration: none; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
  background: rgba(0,0,0,0.40);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2A0618;
  border-top: 2px solid var(--accent);
  padding: 16px 20px;
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
}
.cookie-inner .btn { flex-shrink: 0; padding: 10px 24px; }

/* ── Styles intro paragraph ─────────────────────────────────── */
.styles-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
}

/* ── Deposit Page ───────────────────────────────────────────── */
.deposit-wrap { max-width: 800px; }

.deposit-cta-box {
  background: linear-gradient(135deg, #4A0D2A 0%, #8B1A4A 45%, #4A1268 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 56px;
  color: var(--white);
}
.deposit-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}
.deposit-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.deposit-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.deposit-cta-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}
.deposit-cta-box .btn { margin-bottom: 16px; }
.deposit-secure {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.deposit-secure span { margin-right: 4px; }

.deposit-testimonials { margin-bottom: 56px; }
.deposit-testimonials h2 { margin-bottom: 24px; }

.deposit-tc { border-top: 2px solid var(--bg-alt); padding-top: 48px; }
.deposit-tc h2 { margin-bottom: 24px; }
.tc-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 8px;
}
.tc-body h3:first-child { margin-top: 0; }
.tc-body p { font-size: 0.95rem; color: var(--text-mid); }
.tc-contact { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--bg-alt); }
.tc-contact a { color: var(--primary); font-weight: 600; }
