/* Smile Hi Sound Healing – preview site.
   No photography was recoverable for this lead, so the page carries itself on type, a dusk
   palette and CSS-drawn resonance rings. See _source/sources.md. */

:root {
  --night: #15121F;
  --night-2: #0E0C16;
  --dusk: #211B30;
  --dusk-2: #2B2440;
  --cream: #F4EEE5;
  --muted: #B3A9C2;
  --gold: #D8A44A;
  --gold-soft: #E7C489;
  --copper: #C1795A;
  --line: rgba(244, 238, 229, 0.14);

  --display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --body: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 74rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* the sticky bar is 4.5rem tall; keep anchored headings clear of it */
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  /* a stray wide child must never be able to scroll the page sideways */
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 1.6rem + 5.6vw, 6rem); }
h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem); font-weight: 400; }

p { margin: 0 0 1.1em; max-width: 62ch; }

a { color: var(--gold-soft); text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
a:hover { color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 99;
  background: var(--gold);
  color: var(--night);
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

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

.bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(21, 18, 31, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.bar__in {
  height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
  flex: 0 0 auto;
}

/* the wordmark glyph: a struck bowl, drawn as two rings and a centre */
.mark__glyph {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  position: relative;
  flex: 0 0 auto;
}
.mark__glyph::before,
.mark__glyph::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
  inset: 0.28rem;
  opacity: 0.75;
}
.mark__glyph::after { inset: 0.58rem; background: var(--gold); border: 0; opacity: 1; }

.mark__txt { display: grid; line-height: 1.05; }
.mark__txt b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.mark__txt i {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--cream); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold { background: var(--gold); color: #201704; }
.btn--gold:hover { background: var(--gold-soft); color: #201704; }

.btn--ghost { border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--cream); }

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; flex: 0 0 auto; }

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(193, 121, 90, 0.22), transparent 60%),
    radial-gradient(90% 70% at 12% 88%, rgba(216, 164, 74, 0.14), transparent 62%),
    linear-gradient(180deg, var(--night-2), var(--night) 65%);
}

.hero__in { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 1.4rem; }

.lede {
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.3rem);
  color: var(--muted);
  max-width: 46ch;
}

/* resonance rings: concentric circles expanding out of the hero's top right, the way a
   struck bowl carries. Purely decorative, hidden from assistive tech, and still. */
.rings {
  position: absolute;
  top: -18vw;
  right: -22vw;
  width: min(78rem, 130vw);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 1;
}
.rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(216, 164, 74, 0.28);
}
.rings span:nth-child(2) { inset: 8%;  border-color: rgba(216, 164, 74, 0.22); }
.rings span:nth-child(3) { inset: 17%; border-color: rgba(193, 121, 90, 0.3); }
.rings span:nth-child(4) { inset: 27%; border-color: rgba(216, 164, 74, 0.18); }
.rings span:nth-child(5) { inset: 38%; border-color: rgba(193, 121, 90, 0.22); }

@media (prefers-reduced-motion: no-preference) {
  .rings span { animation: swell 14s ease-in-out infinite; }
  .rings span:nth-child(2) { animation-delay: -2.8s; }
  .rings span:nth-child(3) { animation-delay: -5.6s; }
  .rings span:nth-child(4) { animation-delay: -8.4s; }
  .rings span:nth-child(5) { animation-delay: -11.2s; }
  @keyframes swell {
    0%, 100% { transform: scale(1);    opacity: 0.85; }
    50%      { transform: scale(1.045); opacity: 0.45; }
  }
}

.stars {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2.4rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.stars__n {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--cream);
}
.stars__g { color: var(--gold); letter-spacing: 0.12em; }

/* ---------- bands ---------- */

.band { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.band--alt { background: var(--night-2); }

.grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 56rem) {
  .grid-2 { grid-template-columns: 1.15fr 0.85fr; }
}

.instruments {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(244, 238, 229, 0.025);
}
.instruments h3 { color: var(--gold-soft); margin-bottom: 1.1rem; }
.instruments__note {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chips li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
  color: var(--cream);
  background: rgba(244, 238, 229, 0.03);
}

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

.cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2.5rem;
}
@media (min-width: 40rem) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--night);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.band--alt .card { background: var(--night-2); }
.card h3 { color: var(--gold-soft); margin-bottom: 0.55rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.97rem; }

.note { margin-top: 2rem; color: var(--muted); font-size: 0.95rem; max-width: 58ch; }

/* ---------- floating sound bath ---------- */

.float {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(90% 120% at 85% 50%, rgba(193, 121, 90, 0.16), transparent 65%),
    var(--dusk);
}

.facts {
  margin: 0;
  border-top: 1px solid var(--line);
}
.facts div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.facts dt {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.25rem;
}
.facts dd { margin: 0; text-align: right; }

/* ---------- venues ---------- */

.venues {
  list-style: none;
  /* 1px of breathing room so each cell's outer hairline is not clipped */
  margin: 2.5rem 0 0;
  padding: 1px;
  display: grid;
  gap: 1px;
}
@media (min-width: 44rem) { .venues { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .venues { grid-template-columns: repeat(3, 1fr); } }

/* Seven venues never fill a three-column grid, so the separators are drawn as a hairline ring
   around each cell rather than as a grid-coloured background: the trailing empty cells then
   stay invisible instead of showing up as pale blocks. */
.venues li {
  background: var(--night);
  box-shadow: 0 0 0 1px var(--line);
  padding: 1.6rem clamp(1.2rem, 2.5vw, 1.8rem);
}
.venues h3 { margin-bottom: 0.2rem; }
.venues__where {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.venues li p:last-child { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- reviews ---------- */

.quotes {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 52rem) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(244, 238, 229, 0.025);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quote blockquote { margin: 0; }
.quote blockquote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.5;
}
.quote figcaption {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--cream);
  display: grid;
  gap: 0.15rem;
}
.quote figcaption span { color: var(--muted); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; }

.strip {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  max-width: none;
  color: var(--muted);
  font-style: italic;
}
@media (min-width: 52rem) { .strip { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

/* ---------- posy ---------- */

.posy {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: linear-gradient(180deg, var(--night), var(--dusk-2));
}

.hoursbox {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(14, 12, 22, 0.5);
}
.hoursbox h3 { margin-bottom: 0.4rem; }
.hoursbox__note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2rem; }

.hours { margin: 0; font-size: 0.95rem; }
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
}
.hours div:first-child { border-top: 0; }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; text-align: right; }

/* ---------- booking ---------- */

.book {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(216, 164, 74, 0.18), transparent 60%),
    var(--night-2);
  text-align: center;
}
.book__in { display: grid; justify-items: center; }
.book .lede { max-width: 52ch; }
.book .cta { justify-content: center; }

/* ---------- footer ---------- */

.foot {
  background: var(--night-2);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}
.foot__in {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 48rem) {
  .foot__in { grid-template-columns: 1fr auto; }
}
.mark--foot { margin-bottom: 1.1rem; }
.foot__addr { color: var(--muted); font-size: 0.9rem; margin: 0; }

.foot__links {
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
}
@media (min-width: 48rem) { .foot__links { justify-items: end; } }
.foot__links a { color: var(--cream); text-decoration: none; }
.foot__links a:hover { color: var(--gold-soft); text-decoration: underline; }

.foot__fine {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.foot__fine p { color: var(--muted); font-size: 0.8rem; margin: 0; }

/* ---------- 404 ---------- */

.oops {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
  background:
    radial-gradient(100% 80% at 50% 10%, rgba(216, 164, 74, 0.16), transparent 62%),
    var(--night);
}
.oops .wrap { display: grid; justify-items: center; }
.oops h1 { font-size: clamp(4rem, 3rem + 8vw, 8rem); margin-bottom: 0.1em; }
.oops h2 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem); }
.oops p { color: var(--muted); max-width: 44ch; }
.oops .cta { justify-content: center; }

/* ---------- reveal ---------- */

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
  /* Nothing on the page moves: the ring swell, the reveal fade and the button lift are all
     decorative, so they are switched off rather than shortened. */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- narrow screens ---------- */

@media (max-width: 46rem) {
  .nav { display: none; }
  .bar__in { gap: 0.75rem; }
  .btn { padding: 0.85rem 1.3rem; }
  /* the header button must stay compact even though the rule above sits later in the file */
  .btn--sm { padding: 0.6rem 1rem; font-size: 0.82rem; }
  .cta .btn { flex: 1 1 auto; }
}
