/* ============================================================
   STUART TOOGOOD WEDDING GUITARIST — DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --warm-white:  #faf8f4;
  --stone:       #f0ebe2;
  --stone-mid:   #e2d9cc;
  --ink:         #1a1815;
  --ink-mid:     #6b645a;
  --ink-light:   #b0a99e;
  --terracotta:  #b8714a;
  --terra-light: #e8cbb8;
  --rule:        rgba(26,24,21,0.1);
  --serif: 'Cormorant', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--ink);
  padding: 10px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.utility-bar a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.utility-bar a:hover { color: rgba(255,255,255,0.9); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 64px;
  height: 72px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-right { justify-content: flex-end; }

.nav-brand {
  text-align: center;
  text-decoration: none;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.nav-brand-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-top: 4px;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover { color: var(--terracotta); }

.nav-link-terra {
  color: var(--warm-white);
  background: var(--terracotta);
  padding: 9px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.nav-link-terra:hover { background: var(--ink); }

.nav-item-has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--warm-white);
  border: 1px solid var(--rule);
  min-width: 240px;
  padding: 16px 0;
  z-index: 200;
}

.nav-dropdown li { list-style: none; }

.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.2s;
}

.nav-dropdown a:hover {
  background: var(--stone);
  color: var(--terracotta);
}

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 200;
  flex-direction: column;
  padding: 48px 32px;
}

.nav-mobile-overlay.open { display: flex; }

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
}

.nav-mobile-links {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav-mobile-links a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}

.nav-mobile-links a:hover { color: var(--terracotta); }

.nav-mobile-enquire { margin-top: 24px; }

/* ============================================================
   SECTION COMPONENTS
   ============================================================ */
.sec-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ink-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-pill {
  display: inline-block;
  border-radius: 100px;
  border: 1px solid;
  padding: 13px 32px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-pill-ink {
  border-color: rgba(26,24,21,0.3);
  color: var(--ink);
  background: transparent;
}

.btn-pill-ink:hover {
  background: var(--ink);
  color: var(--warm-white);
  border-color: var(--ink);
}

.btn-pill-terra {
  border-color: var(--terracotta);
  color: var(--warm-white);
  background: var(--terracotta);
}

.btn-pill-terra:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--warm-white);
}

.link-arrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.link-arrow::after { content: '→'; font-size: 14px; }

.link-arrow:hover {
  gap: 16px;
  color: var(--terracotta);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1815 0%, #2d2720 40%, #3d3228 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,21,0.45);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--warm-white);
  padding: 80px 64px;
  max-width: 900px;
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 1.0;
  color: var(--warm-white);
  margin-bottom: 28px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--terra-light);
}

.hero-role {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.45);
  margin-top: 18px;
}

.hero-tagline {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250,248,244,0.65);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 48px;
}

.hero-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.55);
  margin-bottom: 48px;
}

/* Page hero (non-home) */
.page-hero {
  background: var(--stone);
  padding: 100px 64px 80px;
  border-bottom: 1px solid var(--rule);
}

.page-hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  color: var(--ink);
  max-width: 700px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.page-hero-sub {
  margin-top: 20px;
  font-size: 16px;
  color: var(--ink-mid);
  max-width: 540px;
  line-height: 1.7;
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.proof-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--rule);
}

.proof-item:last-child { border-right: none; }

.proof-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 120px 64px;
}

.section-stone {
  background: var(--stone);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 28px;
}

.section-h2 em { font-style: italic; }

.section-h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-body {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 560px;
}

.section-body p + p { margin-top: 20px; }

/* Two column layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-img { overflow: hidden; }

.two-col-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.img-placeholder {
  background: linear-gradient(135deg, var(--stone-mid) 0%, var(--stone) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.card {
  padding: 48px 40px;
  border-right: 1px solid var(--rule);
}

.card:last-child { border-right: none; }

.card-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--terra-light);
  line-height: 1;
  margin-bottom: 20px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
}

.card p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  background: var(--stone);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 100px 64px;
}

.testimonial-block {
  max-width: 760px;
  padding-left: 40px;
  border-left: 2px solid var(--terracotta);
}

.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 28px;
}

.testimonial-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.testimonial-attr {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.testimonial-stars {
  color: var(--terracotta);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

/* ============================================================
   VENUE LIST / LOCATION TAGS
   ============================================================ */
.venue-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 40px;
}

.venue-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding-left: 24px;
}

.venue-item:nth-child(3n) { border-right: none; }

.venue-item a {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
}

.venue-item a:hover { color: var(--terracotta); }

.venue-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 4px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.location-tag {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--rule);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.2s;
  text-decoration: none;
}

.location-tag:hover {
  background: var(--ink);
  color: var(--warm-white);
  border-color: var(--ink);
}

/* ============================================================
   TOWN LIST
   ============================================================ */
.town-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 32px;
}

.town-item {
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.town-item:nth-child(4n) { border-right: none; }

.town-item a {
  display: block;
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  transition: all 0.2s;
}

.town-item a:hover {
  color: var(--terracotta);
  background: var(--stone);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 64px;
  text-align: center;
}

.cta-section .section-h2 {
  max-width: 640px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section-block {
  max-width: 800px;
  margin-bottom: 56px;
}

.faq-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--terracotta);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item:first-of-type { border-top: 1px solid var(--rule); }

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  transition: color 0.2s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.faq-item[open] summary {
  color: var(--terracotta);
}

.faq-item[open] summary::after {
  content: '×';
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--warm-white);
}

.faq-item summary:hover { color: var(--terracotta); }

.faq-a {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
}

.faq-a p + p { margin-top: 10px; }

.faq-a ul {
  margin: 10px 0 10px 20px;
  padding: 0;
}

.faq-a ul li {
  margin-bottom: 5px;
  padding-left: 4px;
}

.faq-a ul li::marker { color: var(--terracotta); }

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
  max-width: 800px;
}

.faq-nav a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.faq-nav a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { max-width: 640px; }

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stone-mid);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-bottom-color: var(--terracotta); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-light); }

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select { cursor: pointer; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.blog-card {
  padding: 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.blog-card:nth-child(3n) { border-right: none; }

.blog-card-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card h3 a:hover { color: var(--terracotta); }

.blog-card-meta {
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 20px;
}

/* Blog post content */
.blog-post-content { max-width: 720px; }

.blog-post-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 16px;
}

.blog-post-content p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-post-content a {
  color: var(--terracotta);
  text-decoration: underline;
}

.blog-author-bio {
  margin-top: 60px;
  padding: 32px;
  background: var(--stone);
  border-top: 1px solid var(--rule);
}

.blog-author-bio p {
  font-size: 14px;
  color: var(--ink-mid);
}

/* ============================================================
   REPERTOIRE
   ============================================================ */
.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.repertoire-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.repertoire-item:nth-child(4n) { border-right: none; }

.repertoire-artist {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 4px;
}

.repertoire-song {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 20px 64px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 1px solid var(--rule);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--stone-mid);
}

.breadcrumb a:hover { color: var(--terracotta); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250,248,244,0.55);
  padding: 80px 64px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.footer-brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.35);
  margin-bottom: 24px;
}

.footer-intro {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.35);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(250,248,244,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--warm-white); }

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-contact-link {
  color: var(--terra-light);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid rgba(250,248,244,0.2);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.65);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social-link:hover {
  border-color: var(--terra-light);
  color: var(--terra-light);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(250,248,244,0.35);
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-bottom-links a:hover { color: rgba(250,248,244,0.75); }

/* HTML Sitemap */
.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitemap-links a {
  font-size: 14px;
  color: var(--ink-mid);
  transition: color 0.2s;
  text-decoration: none;
}

.sitemap-links a:hover { color: var(--terracotta); }

/* ============================================================
   CONTENT PAGE LAYOUT
   ============================================================ */
.content-wrap {
  padding: 80px 64px;
  max-width: 900px;
}

.content-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 16px;
}

.content-body p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-body ul { margin: 20px 0 20px 24px; }

.content-body li {
  margin-bottom: 8px;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
}

.content-body a { color: var(--terracotta); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}

.stat-item {
  padding: 40px 24px;
  border-right: 1px solid var(--rule);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 8px;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   THANK YOU / 404
   ============================================================ */
.minimal-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
}

.minimal-page h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 20px;
}

.minimal-page p {
  color: var(--ink-mid);
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .utility-bar { padding: 10px 28px; }
  .nav-inner { padding: 0 28px; }
  .nav-left, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto 40px; }
  .section { padding: 64px 28px; }
  .page-hero { padding: 64px 28px 48px; }
  .hero-content { padding: 60px 28px; }
  .hero-h1 { font-size: 52px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .two-col-img img { height: 300px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: 1px solid var(--rule); }
  .venue-list { grid-template-columns: repeat(2, 1fr); }
  .venue-item:nth-child(3n) { border-right: 1px solid var(--rule); }
  .venue-item:nth-child(2n) { border-right: none; }
  .town-list { grid-template-columns: repeat(2, 1fr); }
  .town-item:nth-child(4n) { border-right: 1px solid var(--rule); }
  .town-item:nth-child(2n) { border-right: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .repertoire-grid { grid-template-columns: repeat(2, 1fr); }
  .repertoire-item:nth-child(4n) { border-right: 1px solid var(--rule); }
  .repertoire-item:nth-child(2n) { border-right: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(2n) { border-right: none; }
  .breadcrumb { padding: 16px 28px; }
  .content-wrap { padding: 48px 28px; }
  .cta-section { padding: 64px 28px; }
  .testimonial-section { padding: 64px 28px; }
}

@media (max-width: 600px) {
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-num { font-size: 36px; }
  .venue-list { grid-template-columns: 1fr; }
  .venue-item { border-right: none; }
  .town-list { grid-template-columns: 1fr; }
  .town-item { border-right: none; }
  .repertoire-grid { grid-template-columns: 1fr; }
  .repertoire-item { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BLOG ARTICLE LAYOUT
   ============================================================ */
.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.blog-post-content h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.blog-post-content h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 32px 0 10px;
}

.blog-post-content p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-post-content li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 6px;
}

.blog-post-content strong {
  font-weight: 600;
  color: var(--ink);
}

.blog-post-content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-post-content a:hover { opacity: 0.8; }

.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-sidebar-card {
  padding: 24px;
  background: var(--stone);
}

.blog-sidebar-cta { background: var(--ink); }
.blog-sidebar-cta .sec-label { color: var(--terra-light); }
.blog-sidebar-cta p { color: rgba(255,255,255,0.6); }
.blog-sidebar-cta .link-arrow { color: rgba(255,255,255,0.6); }
.blog-sidebar-cta .link-arrow::after { background: rgba(255,255,255,0.4); }

.blog-pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.blog-pricing-table tr { border-bottom: 1px solid rgba(26,24,21,0.12); }
.blog-pricing-table tr:last-child { border-bottom: none; }

.blog-pricing-table td {
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mid);
  vertical-align: top;
}

.blog-pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--terracotta);
  white-space: nowrap;
  padding-left: 8px;
}

.blog-stuart-note {
  margin: 48px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--terracotta);
  background: var(--stone);
}

.blog-stuart-note blockquote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink);
  font-style: italic;
}

.blog-author-bio {
  margin-top: 48px;
  padding: 24px 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-mid);
}

.blog-author-bio strong { color: var(--ink); }
.blog-author-bio a { color: var(--terracotta); }

@media (max-width: 900px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
}

/* ============================================================
   AUDIO PLAYER
   ============================================================ */
.audio-tracklist {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.audio-track {
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
  padding: 0 4px;
}

.audio-track.is-playing {
  background: var(--stone);
  border-left: 3px solid var(--terracotta);
  padding-left: 1px;
}

.audio-track-info {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 16px 12px;
}

.audio-track-num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-light);
  line-height: 1;
}

.audio-track.is-playing .audio-track-num {
  color: var(--terracotta);
}

.audio-track-title {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 3px;
}

.audio-track-artist {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
}

.audio-track-category {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  background: var(--stone);
  padding: 4px 10px;
  white-space: nowrap;
}

.audio-track.is-playing .audio-track-category {
  background: var(--warm-white);
  color: var(--terracotta);
}

.audio-track-player {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px 18px;
}

.audio-play-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}

.audio-play-btn:hover {
  background: var(--terracotta);
  transform: scale(1.05);
}

.audio-track.is-playing .audio-play-btn {
  background: var(--terracotta);
}

.audio-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.audio-progress-bar {
  height: 3px;
  background: var(--stone-mid);
  cursor: pointer;
  position: relative;
}

.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--terracotta);
  transition: width 0.1s linear;
}

.audio-time {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .audio-track-category { display: none; }
  .audio-track-info { grid-template-columns: 32px 1fr; }
}

/* ============================================================
   REAL WEDDING POST — FIGURES
   ============================================================ */
.rw-figure {
  margin: 40px 0;
}

.rw-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.rw-figure figcaption {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink-light);
  margin-top: 10px;
  padding-left: 2px;
  font-style: italic;
}
