/* ============================================================
   Anointed By Touch — shared styles
   Palette drawn from the business card: near-black silk,
   warm gold gradients, cream ivory text.
   ============================================================ */

:root {
  --black: #0a0906;
  --black-soft: #14110b;
  --black-card: #1a1610;
  --gold: #d4af37;
  --gold-light: #f6e7a6;
  --gold-deep: #9a7a2a;
  --gold-dark: #6e5518;
  --ivory: #f5efe2;
  --ivory-muted: #c9bfa8;
  --gold-grad: linear-gradient(115deg, #8a6a1f 0%, #d4af37 30%, #f7e7a6 50%, #d4af37 70%, #8a6a1f 100%);
  --font-script: "Alex Brush", cursive;
  --font-tagline: "Dancing Script", cursive;
  --font-serif: "Cormorant Garamond", serif;
  --font-caps: "Cinzel", serif;
  --font-body: "Jost", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  /* subtle silk-like sheen */
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(212, 175, 55, 0.07), transparent 60%),
    radial-gradient(ellipse 70% 40% at 90% 110%, rgba(212, 175, 55, 0.05), transparent 60%);
  background-attachment: fixed;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.06rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.container { width: min(1100px, 90%); margin: 0 auto; }

/* ---------- typography helpers ---------- */

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.script { font-family: var(--font-script); font-weight: 400; }

/* the card's italic-script style, used for taglines and quotes */
.tagline-script,
.hero-tagline,
.cta-band .script {
  font-family: var(--font-tagline);
  font-weight: 500;
}

.caps {
  font-family: var(--font-caps);
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.eyebrow {
  font-family: var(--font-caps);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.lead { color: var(--ivory-muted); max-width: 62ch; }

/* ---------- gold divider flourish ---------- */

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 1.6rem auto;
  color: var(--gold);
}
.flourish::before,
.flourish::after {
  content: "";
  height: 1px;
  width: min(120px, 20vw);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.flourish::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.flourish svg { width: 22px; height: 22px; }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 9, 6, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  line-height: 1;
}
.nav-brand .script { font-size: 1.9rem; }
.nav-brand .caps { font-size: 0.72rem; letter-spacing: 0.3em; color: var(--ivory); padding-bottom: 0.2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.nav-links a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* the Book Now pill: keep dark-on-gold button styling despite nav link rules */
.nav-links a.btn,
.nav-links a.btn:hover,
.nav-links a.btn.active {
  color: #241c08;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-bottom: none;
}
.nav-links a.btn:hover { color: #241c08; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s, color 0.25s;
  text-align: center;
}

.btn-gold {
  background: var(--gold-grad);
  color: #241c08;
  border: none;
  font-weight: 600;
}
.btn-gold:hover {
  color: #241c08;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 12vh, 9rem) 0 clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 30%, rgba(212, 175, 55, 0.12), transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; }

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(4rem, 11vw, 7.5rem);
  line-height: 1.05;
}

.hero-sub {
  font-family: var(--font-caps);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin: 0.4rem 0 1.4rem;
  color: var(--ivory);
}
.hero-sub .spark { color: var(--gold); font-size: 0.8em; }

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--gold-light);
  margin-bottom: 1.6rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 0.55rem 1.4rem;
  margin-bottom: 2.2rem;
}
.hero-badge span { color: var(--ivory-muted); }

.hero-actions { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- sections ---------- */

.section { padding: clamp(3.5rem, 9vh, 6rem) 0; }
.section-dark { background: var(--black-soft); border-top: 1px solid rgba(212,175,55,0.15); border-bottom: 1px solid rgba(212,175,55,0.15); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .lead { margin: 0 auto; }

/* ---------- cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
}

.card {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--gold-grad);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.card-icon { width: 44px; height: 44px; margin: 0 auto 1.2rem; color: var(--gold); }
.card-icon svg { width: 100%; height: 100%; }

.card h3 {
  font-family: var(--font-caps);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--gold-light);
}
.card p { color: var(--ivory-muted); font-size: 0.98rem; }

/* ---------- service menu ---------- */

.menu-section { margin-bottom: 3.2rem; }
.menu-section h3 {
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1.8rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.menu-item:first-of-type { border-top: 1px solid rgba(212, 175, 55, 0.18); }

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--ivory);
  white-space: nowrap;
}
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.45);
  transform: translateY(-6px);
  min-width: 30px;
}
.menu-item-price {
  font-family: var(--font-caps);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  flex-basis: 100%;
  color: var(--ivory-muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}
.menu-item { flex-wrap: wrap; }

.menu-note {
  text-align: center;
  color: var(--ivory-muted);
  font-size: 0.92rem;
  font-style: italic;
  margin-top: 1.2rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  text-align: center;
  padding: clamp(4rem, 10vh, 6.5rem) 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% 50%, rgba(212, 175, 55, 0.13), transparent 75%),
    var(--black-soft);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.cta-band .script { font-size: clamp(2.4rem, 6vw, 3.6rem); }

/* ---------- testimonials ---------- */

.testimonial {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 2.2rem 2rem;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  position: absolute;
  top: 0.6rem;
  left: 1.2rem;
}
.testimonial p { color: var(--ivory-muted); font-style: italic; padding-top: 1.2rem; }
.testimonial cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-caps);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- steps (how it works) ---------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.step { text-align: center; }
.step-num {
  font-family: var(--font-script);
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.7rem;
}
.step h3 {
  font-family: var(--font-caps);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.step p { color: var(--ivory-muted); font-size: 0.96rem; }

/* ---------- forms (booking + admin + contact) ---------- */

.form-panel {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 720px;
  margin: 0 auto;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

input, select, textarea {
  width: 100%;
  background: rgba(10, 9, 6, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.8rem 0.9rem;
  border-radius: 2px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
select option { background: var(--black-soft); }
textarea { resize: vertical; min-height: 110px; }

::placeholder { color: rgba(201, 191, 168, 0.5); }

/* date/time slot picker */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 0.7rem;
}
.slot {
  font-family: var(--font-caps);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--ivory);
  padding: 0.75rem 0.4rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.slot:hover { border-color: var(--gold); color: var(--gold-light); }
.slot.selected { background: var(--gold-grad); color: #241c08; font-weight: 600; border-color: transparent; }

.form-msg { margin-top: 1.1rem; font-size: 0.98rem; display: none; }
.form-msg.error { display: block; color: #e2938d; }
.form-msg.success { display: block; color: var(--gold-light); }

.booking-summary {
  border: 1px dashed rgba(212, 175, 55, 0.45);
  padding: 1.1rem 1.3rem;
  margin: 1.4rem 0;
  color: var(--ivory-muted);
  font-size: 0.98rem;
}
.booking-summary strong { color: var(--gold-light); font-weight: 500; }

/* ---------- admin ---------- */

.admin-tabs { display: flex; gap: 0.8rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.admin-tab {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--ivory-muted);
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  border-radius: 2px;
}
.admin-tab.active { background: var(--gold-grad); color: #241c08; font-weight: 600; border-color: transparent; }

.booking-row {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 3px solid var(--gold);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.booking-row.status-confirmed { border-left-color: #7dba7a; }
.booking-row.status-declined { border-left-color: #b3574f; opacity: 0.65; }
.booking-row h4 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--ivory); }
.booking-row .meta { color: var(--ivory-muted); font-size: 0.95rem; }
.booking-row .meta a { color: var(--gold); }
.booking-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }

.status-pill {
  font-family: var(--font-caps);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.status-pill.pending { color: var(--gold); }
.status-pill.confirmed { color: #7dba7a; }
.status-pill.declined { color: #b3574f; }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.72rem; }

.avail-row {
  display: grid;
  grid-template-columns: 44px 110px 1fr 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.avail-row .day-name { font-family: var(--font-caps); font-size: 0.85rem; letter-spacing: 0.15em; }
.avail-row input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--gold); }

.blocked-list { list-style: none; margin-top: 1rem; }
.blocked-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 0.5rem;
  color: var(--ivory-muted);
}

/* ---------- contact strip / footer ---------- */

.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  text-align: center;
}
.contact-strip .card { padding: 1.8rem 1.4rem; }
.contact-strip a { font-family: var(--font-serif); font-size: 1.25rem; }

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  background: #070604;
  padding: 3.2rem 0 2rem;
  text-align: center;
}
.footer-brand { font-family: var(--font-script); font-size: 2.4rem; }
.footer-tagline {
  font-family: var(--font-caps);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin: 0.6rem 0 1.4rem;
}
.footer-links { display: flex; justify-content: center; gap: 1.8rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.footer-links a {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}
.footer-links a:hover { color: var(--gold); }
.footer-fine { color: rgba(201, 191, 168, 0.55); font-size: 0.85rem; }
.footer-fine a { color: rgba(212, 175, 55, 0.6); }

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 9, 6, 0.97);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: none;
    padding: 0.6rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.85rem 0; border-bottom: none; }
  .nav-links a.btn { display: inline-block; margin: 0.7rem 0 0.3rem; }
  /* admin nav has no hamburger — keep it a simple inline row */
  .nav-links.static {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    padding: 0;
  }
  .nav-links.static li { width: auto; }
  .nav-links.static a { display: inline-block; padding: 0.4rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .avail-row { grid-template-columns: 36px 90px 1fr 1fr; gap: 0.5rem; }
  .booking-row { flex-direction: column; }
}
