/* ==========================================================
   Aura Beauty — pages.css
   Hero, monogram, inner-page banners, page-specific blocks.
   ========================================================== */

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rule-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero h1 { margin-bottom: 1.1rem; }
.hero .lede {
  font-size: var(--step-1);
  color: var(--cream-dim);
  line-height: 1.6;
  max-width: 34ch;
}
.hero .hero-meta {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--cream-faint);
  letter-spacing: 0.06em;
}
.hero .hero-meta b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* Monogram — the one animated moment on the site */
.monogram { position: relative; display: grid; place-items: center; }
.monogram img {
  display: block;
  width: min(100%, 460px);
  height: auto;
  border-radius: 18px;
  transform: translateY(-1rem);
}

.monogram .ring-a,
.monogram .ring-b {
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: draw 2.4s var(--ease) forwards;
}
.monogram .ring-b { animation-delay: 0.35s; animation-duration: 2.1s; }
.monogram .bloom { opacity: 0; animation: bloom 1.4s var(--ease) 1s forwards; }
.monogram .letter { opacity: 0; animation: bloom 1.2s var(--ease) 1.35s forwards; }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes bloom {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.wordmark {
  text-align: center;
  margin-top: 1.25rem;
}
.wordmark .name {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: 0.1em;
  line-height: 1;
}
.wordmark .tag {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  color: var(--cream-faint);
}

/* ---------- Inner page banner ---------- */
.page-banner {
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule-soft);
  background: linear-gradient(180deg, var(--emerald), transparent);
}
.page-banner h1 { max-width: 20ch; margin-bottom: 0.7rem; }
.page-banner p { color: var(--cream-dim); font-size: var(--step-1); max-width: 52ch; }

.crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--cream-faint);
  margin-bottom: 1.4rem;
}
.crumbs a { color: var(--cream-faint); }
.crumbs a:hover { color: var(--gold-light); }

/* ---------- Home: signature services strip ---------- */
.signature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--emerald);
}
.signature > div {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-right: 1px solid var(--rule-soft);
}
.signature > div:last-child { border-right: 0; }
.signature h3 { color: var(--gold-light); font-size: 1.05rem; margin-bottom: 0.45rem; }
.signature p { font-size: 0.9rem; color: var(--cream-dim); margin: 0; }

/* ---------- Bridal timeline (a real sequence, so it is numbered) ---------- */
.timeline { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.timeline li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-soft);
  margin: 0;
}
.timeline li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.timeline h3 { margin-bottom: 0.35rem; }
.timeline p { margin: 0; color: var(--cream-dim); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-bar button {
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  background: transparent;
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.filter-bar button:hover { color: var(--cream); border-color: var(--rule); }
.filter-bar button[aria-pressed="true"] {
  background: rgba(200, 162, 76, 0.16);
  border-color: var(--gold);
  color: var(--gold-light);
}
.is-hidden { display: none !important; }

/* ---------- About: artist cards ---------- */
.artist {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.artist .avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 2.4rem;
  background: radial-gradient(circle at 32% 28%, rgba(232, 192, 178, 0.3), rgba(200, 162, 76, 0.16));
  color: var(--cream);
}
.artist h3 { margin-bottom: 0.15rem; }
.artist .role {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

/* ---------- Contact: address / hours ---------- */
.address-line {
  font-family: var(--display);
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--cream);
}
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.93rem;
  color: var(--cream-dim);
}
.hours li span:last-child { color: var(--gold-light); white-space: nowrap; }

.map-frame {
  border: 1px solid var(--rule);
  border-radius: var(--radius-panel);
  overflow: hidden;
  min-height: 320px;
  background: var(--panel);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- Closing call to action ---------- */
.cta-band {
  background: var(--emerald);
  border: 1px solid var(--rule);
  border-radius: var(--radius-panel);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { margin-bottom: 0.6rem; }
.cta-band p { margin-inline: auto; color: var(--cream-dim); }
.cta-band .btn-row { justify-content: center; }
