:root {
  --bg: #0b0b0c;
  --bg-alt: #141416;
  --ink: #f4f2ec;
  --ink-soft: #b7b3a8;
  --gold: #caa04c;
  --gold-soft: #e6c988;
  --line: #232326;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Header — flush bar, underline nav (no pill, no blur block behind links) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover { color: var(--ink); border-color: var(--gold); }
.nav a.nav-cta {
  color: var(--gold);
  border-bottom: none;
}
.nav a.nav-cta:hover { color: var(--gold-soft); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--gold); color: #0b0b0c; }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-submit { border: none; cursor: pointer; width: 100%; font-family: inherit; margin-top: 4px; }
.btn-submit:disabled { background: #3a372f; color: #7a766b; cursor: not-allowed; }

/* Hero — asymmetric split, not a centered column */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  min-height: 640px;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
}
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.06;
  margin: 0 0 24px;
  max-width: 620px;
}
.hero-sub {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  background: linear-gradient(160deg, #16161a 0%, #0b0b0c 100%);
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 220px;
}
.eq-bars span {
  display: block;
  width: 10px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-radius: 2px;
  animation: eq 1.6s ease-in-out infinite;
}
.eq-bars span:nth-child(1) { height: 30%; animation-delay: -0.1s; }
.eq-bars span:nth-child(2) { height: 62%; animation-delay: -1.3s; }
.eq-bars span:nth-child(3) { height: 40%; animation-delay: -0.6s; }
.eq-bars span:nth-child(4) { height: 85%; animation-delay: -1.8s; }
.eq-bars span:nth-child(5) { height: 50%; animation-delay: -0.3s; }
.eq-bars span:nth-child(6) { height: 95%; animation-delay: -2.1s; }
.eq-bars span:nth-child(7) { height: 45%; animation-delay: -0.9s; }
.eq-bars span:nth-child(8) { height: 70%; animation-delay: -1.5s; }
.eq-bars span:nth-child(9) { height: 35%; animation-delay: -0.4s; }
.eq-bars span:nth-child(10) { height: 88%; animation-delay: -2.4s; }
.eq-bars span:nth-child(11) { height: 55%; animation-delay: -1.1s; }
.eq-bars span:nth-child(12) { height: 25%; animation-delay: -0.7s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Services — touching cards strip, alternating tone */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.service-card {
  padding: 44px 30px;
  border-right: 1px solid var(--line);
}
.service-card:last-child { border-right: none; }
.service-card:nth-child(even) { background: var(--bg-alt); }
.service-index {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card h3 { font-size: 17px; margin: 0 0 10px; }
.service-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 32px;
  align-items: start;
}
.section-label {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 0 0 22px;
}
.about-copy p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 18px; }
.genre-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.genre-row span {
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-soft);
}

.stat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg-alt);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--gold); }
.stat-label { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.02em; }

/* Sound band — full width dark strip, quote + embed side by side */
.sound-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.sound-quote p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 24px; }

.sc-embed {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.sc-embed iframe { display: block; }

.case-link { color: var(--gold-soft); text-decoration: none; font-size: 14px; font-weight: 600; }
.case-link:hover { opacity: 0.8; }

/* FAQ accordion */
.faq { padding: 100px 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 500;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-icon {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p { color: var(--ink-soft); font-size: 15px; margin: 0 0 26px; overflow: hidden; }

/* Enquiry — split, info panel + form card */
.enquire-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.enquire-info {
  background: var(--bg-alt);
  padding: 90px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enquire-info p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 32px; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-pill {
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color .2s ease, color .2s ease;
}
.social-pill:hover { border-color: var(--gold); color: var(--gold-soft); }

.enquire-form-wrap { padding: 90px 56px; }

/* Form */
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.lead-form[hidden] { display: none; }
.hidden-field { display: none; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.field .optional { color: #6f6b60; }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: 3px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(202,160,76,0.15);
}
.field textarea { resize: vertical; }
.form-success { padding: 20px 0; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin: 0 0 8px; }
.form-success p { color: var(--ink-soft); margin: 0; }

/* Footer */
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.footer-inner span { font-family: 'Playfair Display', serif; color: var(--ink); letter-spacing: 0.05em; }
.footer-inner a { color: var(--ink-soft); text-decoration: none; }
.footer-inner a:hover { color: var(--gold-soft); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 260px; border-left: none; border-top: 1px solid var(--line); order: -1; }
  .services { grid-template-columns: 1fr 1fr; }
  .service-card { border-bottom: 1px solid var(--line); }
  .about-split { grid-template-columns: 1fr; }
  .sound-band { grid-template-columns: 1fr; padding: 60px 32px; }
  .enquire-split { grid-template-columns: 1fr; }
  .enquire-info, .enquire-form-wrap { padding: 56px 32px; }
}
@media (max-width: 640px) {
  .services { grid-template-columns: 1fr; }
  .service-card { border-right: none; padding: 32px 24px; }
  .hero-copy { padding: 44px 24px; }
  .hero h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .field-row { grid-template-columns: 1fr; }
  .nav a:not(.nav-cta):not(:last-of-type) { display: none; }
  .wrap { padding: 0 22px; }
  .about-split { padding: 64px 24px; gap: 40px; }
  .stat-panel { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 18px; }
  .stat-num { font-size: 24px; }
  .sound-band { padding: 48px 24px !important; }
  .faq { padding: 64px 0; }
  .wrap-narrow { padding: 0 24px; }
  .faq-q { font-size: 15.5px; padding: 20px 0; }
  .enquire-info, .enquire-form-wrap { padding: 44px 24px !important; }
  .social-row { gap: 10px; }
  .social-pill { padding: 10px 18px; font-size: 13px; }
  .site-footer { padding: 28px 0; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}

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