/* ============================================================
   Highest Frequency Living — shared styles
   Palette sampled directly from the reference design:
   purple #7030A0, green #00CC66, cream #FFF9E3, gold #FFE699
   ============================================================ */

:root {
  --purple:       #7030A0;
  --purple-deep:  #4F2070;
  --green:        #00CC66;
  --cream:        #FFF9E3;
  --gold:         #FFE699;
  --ink:          #1A1A1A;
  --slate:        #595959;
  --white:        #FFFFFF;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Lato', sans-serif;

  --max-width: 880px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
}

a { color: var(--purple); }

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

/* ── Hero ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.38) 100%);
  pointer-events: none;
}

/* the one signature touch: a slow ambient pulse behind the sun,
   standing in for "frequency" / "energy" without saying it out loud */
.hero-glow {
  position: absolute;
  top: 38%;
  left: 64%;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,224,153,0.25) 45%, rgba(255,224,153,0) 75%);
  animation: pulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 72vh;
  padding: 48px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-text {
  margin-left: 34%;
  max-width: 560px;
  animation: riseIn 0.9s ease-out both;
}

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

.hero-title {
  color: var(--purple);
  font-size: clamp(1.8rem, 3.4vw, 2.45rem);
  letter-spacing: 0.01em;
}

.hero-tagline {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-top: 14px;
  line-height: 1.5;
}

.hero-cta {
  margin-top: 32px;
}

/* ── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-outline {
  background: rgba(0,0,0,0.18);
  color: var(--white);
  border: 1.5px solid var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn-outline:hover {
  background: rgba(0,0,0,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--purple-deep);
}
.btn-gold:hover {
  background: #FFEDB3;
  box-shadow: 0 8px 24px rgba(255,230,153,0.55);
}

/* ── Body copy section ────────────────────────────────────── */

.section-cream {
  background: var(--cream);
  padding: 48px 0;
}

.section-cream p { font-size: 1.02rem; line-height: 1.75; margin: 0 0 18px; }
.section-cream p:last-child { margin-bottom: 0; }

.accent-purple { color: var(--purple); font-weight: 700; }
.accent-green  { color: var(--green);  font-weight: 700; }

.section-white {
  background: var(--white);
  padding: 48px 0;
}

.section-white h2 {
  color: var(--ink);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.section-white p { color: var(--ink); font-size: 1.02rem; line-height: 1.75; margin: 0 0 18px; }

/* ── Footer banner ─────────────────────────────────────────── */

.banner {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}

.banner h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.banner p { margin: 0 0 8px; font-size: 0.95rem; opacity: 0.92; }

.banner .btn { margin-top: 24px; }

/* ── Forms (inquiry / admin) ──────────────────────────────── */

.form-box {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(112,48,160,0.08);
}

.prompt-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.prompt-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--ink);
  font-size: 0.98rem;
  border-bottom: 1px solid #f2f2f2;
}
.prompt-list li:last-child { border-bottom: none; }
.prompt-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--green);
}

label { display: block; font-weight: 600; color: var(--ink); margin: 18px 0 6px; font-size: 0.9rem; }
label:first-of-type { margin-top: 0; }

input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--purple);
}

textarea { min-height: 130px; resize: vertical; }

.slot-options { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.slot-options label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 400; margin: 0; padding: 10px 12px;
  border: 1.5px solid #ddd; border-radius: 8px; cursor: pointer;
}
.slot-options input[type=radio] { width: auto; }
.slot-options label:has(input:checked) { border-color: var(--purple); background: #FAF5FF; }

.submit-row { margin-top: 28px; text-align: center; }

.honeypot { position: absolute; left: -9999px; }

.confirm-box { text-align: center; padding: 60px 0; }
.confirm-box h2 { color: var(--purple); margin-bottom: 12px; }

/* ── Admin (tiny backend) ─────────────────────────────────── */

.admin-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.admin-table th { text-align: left; font-size: 0.8rem; color: #999; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 10px; border-bottom: 2px solid #eee; }
.admin-table td { padding: 10px; border-bottom: 1px solid #f2f2f2; font-size: 0.95rem; }
.tag-open  { color: var(--green); font-weight: 600; }
.tag-taken { color: #b7770d; font-weight: 600; }
.btn-small {
  font-size: 0.78rem; padding: 6px 14px; border-radius: 999px;
  border: 1px solid #ddd; background: var(--white); cursor: pointer;
}
.btn-small:hover { border-color: var(--purple); color: var(--purple); }

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 720px) {
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-photo { position: relative; height: 48vh; object-position: 38% 35%; }
  .hero-scrim, .hero-glow { display: none; }
  .hero-content {
    position: relative;
    min-height: auto;
    padding: 32px 20px 40px;
    background: var(--cream);
  }
  .hero-text { margin-left: 0; max-width: 100%; text-align: left; }
  .hero-content .btn-outline {
    background: transparent;
    color: var(--purple);
    border: 1.5px solid var(--purple);
    text-shadow: none;
  }
  .hero-content .btn-outline:hover { background: rgba(112,48,160,0.08); }
  .form-box { padding: 22px; }
  .hero-short .hero-photo { height: 34vh; }
}

/* ── Shorter hero variant (inquiry page) ──────────────────── */
.hero-short, .hero-short .hero-content { min-height: 34vh; }
.hero-short .hero-title { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.hero-short .hero-tagline { font-size: 1.05rem; }
.hero-short .hero-text { max-width: 600px; }
