:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --accent: #ED1C24;
  --max: 1200px;
  --display: 'Saira', system-ui, -apple-system, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  z-index: 10;
}

/* Brand mark + wordmark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
}

.brand-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}

.brand-light .brand-text { color: var(--white); }

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 160ms ease;
}

.nav a:hover { color: var(--accent); }
.nav a.active { color: var(--fg); }

/* Hero */
.hero {
  padding: 8rem 2.5rem 6rem;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.hero-split {
  padding: 5rem 2.5rem 6rem;
}

.hero-split-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy { min-width: 0; }

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 600ms ease;
}

.hero-media:hover img { transform: scale(1.02); }

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.75rem;
  max-width: 18ch;
}

.lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 2.5rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
}

.btn-ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Band */
.band {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--line);
}

.band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.band-item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem;
}

.band-item p {
  margin: 0;
  color: var(--muted);
}

/* Page */
.page {
  padding: 6rem 2.5rem;
  border-bottom: 1px solid var(--line);
}

.page-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

.prose p {
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 0 0 1.25rem;
}

.placeholder {
  color: var(--muted);
  font-style: italic;
}

/* About page — split layout */
.about-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.about-media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  position: sticky;
  top: 6rem;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.about-prose {
  max-width: none;
  margin: 0;
}

.about-prose p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: none;
  margin: 0 0 1.5rem;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

/* Services list */
.service-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list li:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.service-list li:nth-child(even) {
  padding-left: 2rem;
}

.service-list h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.service-list p {
  margin: 0;
  color: var(--muted);
}

/* Gallery */
.gallery-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.placeholder-tile {
  background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
  border: 1px solid var(--line);
}

/* Contact */
.contact-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card {
  background: var(--white);
  padding: 2.5rem;
}

.contact-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.contact-value {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  display: block;
  color: var(--fg);
  line-height: 1.3;
  transition: color 180ms ease;
}

a.contact-value:hover { color: var(--accent); }

/* Reviews */
.reviews {
  padding: 6rem 2.5rem;
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.reviews-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-header h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.reviews-meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin: 0;
}

.rating-text {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card .stars { font-size: 0.9rem; }

.review-quote {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
  color: var(--fg);
  flex: 1;
}

.review-quote.placeholder {
  color: var(--muted);
  font-style: italic;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.review-author {
  font-family: var(--display);
  font-weight: 500;
  color: var(--fg);
}

.review-source {
  font-family: var(--display);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.reviews-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 3rem 2.5rem 2rem;
  background: var(--fg);
  color: var(--white);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer .muted {
  color: rgba(255, 255, 255, 0.55);
  margin: 0.6rem 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
}

.footer-contact a { transition: color 180ms ease; }
.footer-contact a:hover { color: var(--accent); }

.copyright {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
  }
  .nav { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .hero-split { padding: 3rem 1.25rem 3.5rem; }
  .hero-split-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { aspect-ratio: 4 / 3; }
  .band, .page, .reviews { padding: 3.5rem 1.25rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .reviews-header { margin-bottom: 2.5rem; }
  .band-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2rem; }
  .about-media { aspect-ratio: 4 / 3; position: static; }
  .about-prose p { font-size: 1rem; }
  .service-list { grid-template-columns: 1fr; }
  .service-list li:nth-child(odd) { padding-right: 0; border-right: none; }
  .service-list li:nth-child(even) { padding-left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-value { font-size: 1.25rem; }
  .site-footer { padding: 2.5rem 1.25rem 1.5rem; }
}
