/* =========================================================
   CONCERT — the showpiece.
   Near-black, ivory, antique gold. Large display type,
   animated harmonics, staggered reveals.

   Still no images, no web fonts, no libraries — everything
   here is drawn with CSS and one inline SVG.

   TO CHANGE THE LOOK, EDIT THE VALUES BELOW.
   ========================================================= */

:root {
  /* Colours */
  --black:      #0a0b0d;   /* page background */
  --black-2:    #121317;   /* raised panels */
  --black-3:    #1a1c21;   /* borders and hairlines */
  --ivory:      #f4efe6;   /* main text */
  --ivory-soft: #b3aca0;   /* secondary text */
  --gold:       #d4a94a;   /* accent */
  --gold-deep:  #a8801f;   /* accent, darker */

  /* Type */
  --font-head: "Didot", "Bodoni MT", "Playfair Display", Georgia, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --gap: 1.5rem;
  --section-space: clamp(4.5rem, 11vw, 9rem);
  --radius: 2px;
}

/* ---------- base ---------- */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
/* Thin gold rule that grows out of each heading. */
.rule {
  display: inline-block;
  width: clamp(28px, 6vw, 64px);
  height: 1px;
  background: var(--gold);
  flex: none;
}

h3 { font-size: 1.35rem; color: var(--ivory); }

p { margin: 0 0 1rem; }

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

.link {
  text-decoration: none;
  border-bottom: 1px solid rgba(212,169,74,0.45);
  padding-bottom: 1px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.link:hover { border-color: var(--gold); color: #e8c477; }

.muted { color: var(--ivory-soft); font-size: 0.9rem; }
.center { text-align: center; }
.big { font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.45; color: var(--ivory); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1rem;
  font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; }

.wrap { width: min(1180px, 90%); margin-inline: auto; }
.wrap.narrow { width: min(760px, 90%); }

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

.site-header {
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
  justify-content: space-between;
}

.brand { text-decoration: none; color: var(--ivory); display: block; }
.brand-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.brand-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-header nav { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.site-header nav a {
  color: var(--ivory-soft);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
/* Gold underline that slides in on hover. */
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.site-header nav a:hover { color: var(--ivory); }
.site-header nav a:hover::after { width: 100%; }

.header-phone {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid rgba(212,169,74,0.4);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.header-phone:hover { background: rgba(212,169,74,0.12); border-color: var(--gold); }

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

.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 7rem) 0 0;
  overflow: hidden;
  /* Warm pool of light behind the headline. */
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(212,169,74,0.13) 0%, transparent 62%),
    var(--black);
}

.hero-inner { position: relative; z-index: 2; padding-bottom: clamp(3.5rem, 9vw, 7rem); }

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

.hero h1 {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  margin-bottom: 0.5em;
}
.hero h1 .line { display: block; }
.hero h1 em { font-style: italic; color: var(--gold); }

/* Headline lines rise in on load, one after another. */
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .line {
    opacity: 0;
    transform: translateY(24px);
    animation: rise 0.9s cubic-bezier(0.22, 0.8, 0.3, 1) forwards;
  }
  .line-1 { animation-delay: 0.1s; }
  .line-2 { animation-delay: 0.25s; }
  .line-3 { animation-delay: 0.4s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  max-width: 52ch;
  color: var(--ivory-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

/* ---------- animated harmonics ---------- */

.waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(180px, 34vw, 340px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, transparent, #000 45%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 45%, #000 85%, transparent);
}
.waves svg { width: 100%; height: 100%; display: block; }
.waves use { fill: none; stroke-width: 1.25; }

.wave-1 use { stroke: rgba(212,169,74,0.55); }
.wave-2 use { stroke: rgba(212,169,74,0.30); }
.wave-3 use { stroke: rgba(244,239,230,0.16); }

/* Three layers drifting at different speeds gives depth. */
@media (prefers-reduced-motion: no-preference) {
  .wave { animation: drift linear infinite; }
  .wave-1 { animation-duration: 19s; }
  .wave-2 { animation-duration: 27s; transform: translateY(14px) scaleY(0.82); }
  .wave-3 { animation-duration: 38s; transform: translateY(30px) scaleY(0.6); }
  @keyframes drift { to { transform: translateX(-1200px); } }
  /* Keep the vertical offsets while drifting. */
  .wave-2 { animation-name: drift2; }
  .wave-3 { animation-name: drift3; }
  @keyframes drift2 {
    from { transform: translate(0,14px) scaleY(0.82); }
    to   { transform: translate(-1200px,14px) scaleY(0.82); }
  }
  @keyframes drift3 {
    from { transform: translate(0,30px) scaleY(0.6); }
    to   { transform: translate(-1200px,30px) scaleY(0.6); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .wave-2 { transform: translateY(14px) scaleY(0.82); }
  .wave-3 { transform: translateY(30px) scaleY(0.6); }
}

/* ---------- piano-key motif ---------- */

.keys {
  position: relative;
  z-index: 3;
  height: 14px;
  background:
    repeating-linear-gradient(90deg,
      var(--black) 0 3px,
      transparent 3px 26px);
  background-color: var(--gold);
  opacity: 0.9;
}

/* ---------- stats ---------- */

.stats {
  background: var(--black-2);
  border-bottom: 1px solid var(--black-3);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.stats-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 720px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat + .stat { border-left: 1px solid var(--black-3); }
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}

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

.section { padding: var(--section-space) 0; }
.section-feature { background: var(--black-2); }

.grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--black-3);
  border: 1px solid var(--black-3);
}
@media (min-width: 700px) { .grid { grid-template-columns: repeat(2, 1fr); } }
.grid-2 { background: none; border: none; gap: var(--gap); }

.card {
  background: var(--black);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  position: relative;
  transition: background 0.35s ease;
}
.card:hover { background: var(--black-2); }
.card-num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.card p { margin: 0; color: var(--ivory-soft); }

.quote {
  margin: 0;
  background: var(--black-2);
  border: 1px solid var(--black-3);
  border-top: 2px solid var(--gold);
  padding: clamp(1.6rem, 3vw, 2.25rem);
}
.quote p {
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ivory);
}
.quote p::before { content: "\201C"; }
.quote p::after  { content: "\201D"; }
.quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}

.faq dt {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black-3);
}
.faq dd { margin: 0.5rem 0 0; color: var(--ivory-soft); }

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

.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: #e6bd63; }
.btn-ghost {
  border-color: rgba(244,239,230,0.28);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- form ---------- */

.form { margin-top: 2rem; }
.field { margin-bottom: 1.35rem; }

label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-bottom: 0.5rem;
}
.optional { text-transform: none; letter-spacing: 0; }

input, textarea {
  width: 100%;
  padding: 0.85rem 0;
  font: inherit;
  font-size: 1rem;
  color: var(--ivory);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--black-3);
  border-radius: 0;
  transition: border-color 0.25s ease;
}
input::placeholder, textarea::placeholder { color: #847e71; } /* 4.88:1 — meets AA */
input:hover, textarea:hover { border-bottom-color: #3a3d44; }
input:focus, textarea:focus { border-bottom-color: var(--gold); }
textarea { resize: vertical; }

.form-note { margin-top: 1.5rem; font-size: 0.88rem; color: var(--ivory-soft); }

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

.site-footer {
  background: var(--black-2);
  color: var(--ivory-soft);
  font-size: 0.95rem;
}
.site-footer .keys { opacity: 0.6; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: space-between;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.site-footer p { margin: 0 0 0.4rem; }
.footer-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--ivory);
}

/* ---------- sticky call bar (phones only) ---------- */

.callbar { display: none; }

@media (max-width: 720px) {
  .callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    border-top: 1px solid var(--black-3);
  }
  .callbar a {
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .callbar-call { background: var(--gold); color: var(--black); }
  .callbar-book { background: var(--black-2); color: var(--ivory); }
  body { padding-bottom: 3.6rem; }
}

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

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22,0.8,0.3,1),
              transform 0.7s cubic-bezier(0.22,0.8,0.3,1);
}
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- work gallery ---------- */
.gallery {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  background: var(--black-3);
  border: 1px solid var(--black-3);
}
@media (min-width: 860px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.shot { margin: 0; background: var(--black); padding: 1rem; }
.shot-ph {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px dashed #33363d;
  color: var(--ivory-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black-2);
}
.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.shot figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--ivory-soft);
}
