/* ============================================================
   THE LOVER'S RETREAT — Restore & Rise at Harmony Hollow
   Sonoran dusk design system
   ============================================================ */

:root {
  /* Palette — desert sunset */
  --dusk-deep:    #2b1b3d;   /* deep violet night sky */
  --dusk:         #43285c;   /* plum dusk */
  --ember:        #e8913d;   /* sunset gold */
  --ember-soft:   #f2b56b;
  --rose:         #c95d7c;   /* sunset magenta */
  --sand:         #c1663b;   /* red sand / terracotta */
  --sand-deep:    #96492a;
  --saguaro:      #5c6e4a;   /* saguaro green */
  --saguaro-deep: #3e4d33;
  --cream:        #f7efe2;   /* warm desert light */
  --cream-dim:    #efe2cc;
  --ink:          #33241f;   /* mesquite bark */
  --ink-soft:     #6b564c;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --max-w: 1120px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(43, 27, 61, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

img { max-width: 100%; display: block; }

a { color: var(--sand-deep); }

/* ---------- Utility ---------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 0.6rem;
}

.section { padding: 88px 0; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  color: var(--dusk-deep);
  margin-bottom: 0.5rem;
}

.divider-glyph {
  text-align: center;
  color: var(--ember);
  font-size: 1.4rem;
  margin: 1.2rem 0 2.2rem;
  letter-spacing: 0.8em;
}

.lead {
  font-size: 1.12rem;
  max-width: 720px;
  color: var(--ink-soft);
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--ember); color: var(--dusk-deep); }
.btn-primary:hover { background: var(--ember-soft); }
.btn-outline {
  border: 2px solid var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(247, 239, 226, 0.12); }
.btn-dark { background: var(--dusk); color: var(--cream); }
.btn-dark:hover { background: var(--dusk-deep); }

/* ---------- Marquee ticker ---------- */
.ticker {
  background: var(--sand-deep);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker a { color: var(--ember-soft); text-decoration: none; }
.ticker a:hover { text-decoration: underline; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(43, 27, 61, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(247, 239, 226, 0.12);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-brand span { color: var(--ember); }
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}
.nav-links a:hover { color: var(--ember); }
.nav-links .nav-cta {
  background: var(--ember);
  color: var(--dusk-deep);
  padding: 8px 18px;
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(
    180deg,
    #241534 0%,
    #43285c 30%,
    #8a3d6b 55%,
    #c95d7c 70%,
    #e8913d 88%,
    #f2b56b 100%
  );
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding: 110px 24px 250px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ember-soft);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7.5vw, 5rem);
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--ember-soft);
}
.hero-sub {
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto 1.4rem;
  color: rgba(247, 239, 226, 0.9);
}
.hero-when {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.hero-when small { display: block; font-weight: 400; opacity: 0.8; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Desert silhouette layers */
.hero-desert {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-desert svg { display: block; width: 100%; height: auto; }

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.star {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--cream);
  border-radius: 50%;
  opacity: 0.7;
  animation: twinkle 4s ease-in-out infinite;
}
.star:nth-child(2n) { animation-delay: 1.4s; }
.star:nth-child(3n) { animation-delay: 2.6s; width: 2px; height: 2px; }
@keyframes twinkle { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.85; } }

/* ---------- Countdown ---------- */
.countdown-bar {
  background: var(--dusk-deep);
  color: var(--cream);
  padding: 26px 24px;
  text-align: center;
}
.countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ember-soft);
  margin-bottom: 8px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.count-unit { min-width: 66px; }
.count-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ember);
  line-height: 1;
}
.count-word {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.75;
}

/* ---------- Pain / promise ---------- */
.promise { background: var(--cream); text-align: center; }
.promise .lead { margin: 0 auto; }
.promise-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--sand-deep);
  max-width: 780px;
  margin: 2.2rem auto 0;
  line-height: 1.5;
}
.transform-line {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-weight: 700;
  color: var(--saguaro-deep);
}
.transform-line span::after {
  content: "✦";
  color: var(--ember);
  margin-left: 18px;
  font-weight: 400;
}
.transform-line span:last-child::after { content: ""; margin: 0; }

/* ---------- Who it's for ---------- */
.who { background: var(--cream-dim); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 2rem;
}
.who-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--ember);
}
.who-card:nth-child(2) { border-top-color: var(--rose); }
.who-card:nth-child(3) { border-top-color: var(--saguaro); }
.who-card:nth-child(4) { border-top-color: var(--sand); }
.who-card .glyph { font-size: 1.5rem; color: var(--sand); }
.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0.5rem 0 0.4rem;
  color: var(--dusk-deep);
}
.who-card p { font-size: 0.95rem; color: var(--ink-soft); }
.inclusive-note {
  margin-top: 2.2rem;
  background: var(--dusk);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 26px 30px;
  text-align: center;
  font-size: 1.02rem;
}
.inclusive-note strong { color: var(--ember-soft); }

/* ---------- Experience / flow ---------- */
.experience { background: var(--cream); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 2rem;
}
.exp-card {
  border: 1px solid rgba(150, 73, 42, 0.25);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: linear-gradient(180deg, #fffdf8, var(--cream));
}
.exp-card h3 {
  font-family: var(--font-display);
  color: var(--sand-deep);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.exp-card ul { list-style: none; }
.exp-card li {
  padding-left: 1.3em;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.exp-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-size: 0.8em;
  top: 0.25em;
}
.nonsexual-note {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 760px;
}

/* ---------- Two-day format ---------- */
.format { background: var(--saguaro-deep); color: var(--cream); }
.format .section-title, .format h3 { color: var(--cream); }
.format .eyebrow { color: var(--ember-soft); }
.days-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 2rem;
}
.day-card {
  background: rgba(247, 239, 226, 0.07);
  border: 1px solid rgba(247, 239, 226, 0.18);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.day-tag {
  display: inline-block;
  background: var(--ember);
  color: var(--dusk-deep);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 0.9rem;
}
.day-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.3rem; }
.day-card .hours { font-size: 0.9rem; opacity: 0.75; margin-bottom: 1rem; }
.day-card ul { list-style: none; }
.day-card li {
  padding-left: 1.3em;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 0.97rem;
  color: rgba(247, 239, 226, 0.9);
}
.day-card li::before {
  content: "❋";
  position: absolute;
  left: 0;
  color: var(--ember-soft);
  font-size: 0.8em;
  top: 0.25em;
}

/* ---------- Overnight options ---------- */
.overnight { background: var(--cream); }
.stay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 2rem;
}
.stay-card {
  background: #fffdf8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.stay-card .glyph { font-size: 1.7rem; }
.stay-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dusk-deep);
  margin: 0.5rem 0 0.4rem;
}
.stay-card p { font-size: 0.93rem; color: var(--ink-soft); flex: 1; }
.stay-badge {
  align-self: flex-start;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sand-deep);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 3px 12px;
}

/* ---------- Facilitators ---------- */
.guides { background: var(--cream-dim); }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}
.guide-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.guide-photo {
  height: 190px;
  background: linear-gradient(135deg, var(--dusk), var(--rose) 60%, var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 3rem;
}
.guide-body { padding: 22px 24px 26px; }
.guide-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sand);
}
.guide-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dusk-deep);
  margin: 0.25rem 0 0.4rem;
}
.guide-body p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Venue ---------- */
.venue { background: var(--dusk-deep); color: var(--cream); }
.venue .eyebrow { color: var(--ember-soft); }
.venue .section-title { color: var(--cream); }
.venue-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 2rem;
}
.venue-photos { display: grid; gap: 18px; }
.venue-photos img {
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}
.venue-copy p { color: rgba(247, 239, 226, 0.88); margin-bottom: 1rem; }
.venue-copy ul {
  list-style: none;
  margin: 1.2rem 0;
  columns: 2;
  column-gap: 24px;
}
.venue-copy li {
  padding-left: 1.3em;
  position: relative;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  break-inside: avoid;
}
.venue-copy li::before {
  content: "🌵";
  position: absolute;
  left: 0;
  font-size: 0.75em;
  top: 0.3em;
}
.venue-link { color: var(--ember-soft); font-weight: 700; }

/* ---------- Tiers ---------- */
.tiers { background: var(--cream); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 2rem;
}
.tier-card {
  border-radius: var(--radius);
  padding: 30px 26px;
  background: #fffdf8;
  border: 1px solid rgba(150, 73, 42, 0.22);
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  background: linear-gradient(180deg, var(--dusk), var(--dusk-deep));
  color: var(--cream);
  border: none;
  box-shadow: var(--shadow);
}
.tier-card.featured h3, .tier-card.featured .tier-note { color: var(--cream); }
.tier-card.featured li { color: rgba(247, 239, 226, 0.9); }
.tier-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ember);
  margin-bottom: 0.5rem;
}
.tier-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dusk-deep);
  margin-bottom: 0.8rem;
}
.tier-card ul { list-style: none; flex: 1; }
.tier-card li {
  padding-left: 1.3em;
  position: relative;
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.tier-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-size: 0.8em;
  top: 0.25em;
}
.tier-note { font-size: 0.85rem; margin-top: 1rem; color: var(--ink-soft); font-style: italic; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--sand-deep), var(--rose) 55%, var(--dusk));
  color: var(--cream);
  text-align: center;
  padding: 80px 24px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.8rem;
}
.cta-band p { max-width: 560px; margin: 0 auto 1.8rem; opacity: 0.92; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-dim); }
.faq-list { max-width: 780px; margin: 2rem auto 0; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--dusk-deep);
  list-style: none;
  position: relative;
  padding-right: 52px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "✦";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ember);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dusk-deep);
  color: var(--cream-dim);
  text-align: center;
  padding: 64px 24px 42px;
}
.footer .glyph { color: var(--ember); font-size: 1.4rem; }
.footer h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0.6rem 0 0.3rem;
}
.footer .tagline { font-style: italic; opacity: 0.85; margin-bottom: 1.4rem; }
.footer-links { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 1.6rem; }
.footer-links a { color: var(--ember-soft); text-decoration: none; font-weight: 700; font-size: 0.9rem; }
.footer-links a:hover { text-decoration: underline; }
.footer small { opacity: 0.6; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .days-grid, .venue-grid { grid-template-columns: 1fr; }
  .venue-copy ul { columns: 1; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dusk-deep);
    flex-direction: column;
    padding: 18px 24px 24px;
    display: none;
    border-bottom: 1px solid rgba(247, 239, 226, 0.15);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-inner { padding: 80px 24px 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .star { animation: none; }
  html { scroll-behavior: auto; }
}
