/* Lakhani Music Academy & Live Events Ltd. — bespoke design system
   Premium live-music + drumming academy brand.
   Canvas: deep charcoal-aubergine (stage dark) · Primary: crimson stage-red · Accent: brass gold
   Type: Fraunces (display serif) + Manrope (body sans) */
:root {
  /* Canvas — dark stage tones */
  --canvas: #17131C;
  --canvas-tint: #201925;
  --canvas-deep: #100C15;
  --surface: #221A29;
  --surface-2: #2A2032;

  /* Ink — warm off-white on dark */
  --ink: #F5EFF7;
  --ink-soft: #CDC2D6;
  --ink-muted: #998EA6;

  /* Primary — crimson / stage red */
  --primary: #D02347;
  --primary-dark: #9E1533;
  --primary-mid: #E14567;
  --primary-tint: #3A1622;

  /* Accent — brass / spotlight gold */
  --accent: #E7B24A;
  --accent-dark: #C08A22;
  --accent-soft: #F2CE86;
  --accent-tint: #3A2E17;

  /* Lines & shadows */
  --line: rgba(245, 239, 247, 0.12);
  --line-soft: rgba(245, 239, 247, 0.07);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 14px 36px -18px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 34px 80px -30px rgba(0, 0, 0, 0.85);
  --glow-primary: 0 0 0 1px rgba(208, 35, 71, 0.4), 0 18px 48px -20px rgba(208, 35, 71, 0.5);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1160px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --pill: 999px;

  --section-y: clamp(72px, 10vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff; padding: 12px 20px; z-index: 100; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }

/* Typography */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1.12; }
h1 { font-size: clamp(2.5rem, 5.8vw, 4.1rem); margin: 0 0 24px; font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.9vw, 2.8rem); margin: 0 0 20px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.42rem); margin: 0 0 12px; }
p { margin: 0 0 18px; color: var(--ink-soft); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; }
em.hl { font-style: italic; color: var(--accent-soft); }

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer; border: 0;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--glow-primary); }
.btn-primary:hover { background: var(--primary-mid); color: #fff; transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(225,69,103,0.5), 0 24px 60px -20px rgba(208,35,71,0.7); }
.btn-accent { background: var(--accent); color: #201108; box-shadow: var(--shadow); }
.btn-accent:hover { background: var(--accent-soft); color: #1a0e05; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(245,239,247,0.28); }
.btn-ghost:hover { background: rgba(245,239,247,0.08); color: #fff; border-color: var(--accent); }
.btn-reverse { background: var(--canvas); color: var(--primary); }
.btn-reverse:hover { background: var(--accent); color: #201108; }
.btn svg { width: 16px; height: 16px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(16, 12, 21, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 32px; }
.brand { display: inline-flex; align-items: center; }
.brand img, .brand svg { height: 46px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.nav-menu a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav-menu a:hover { color: var(--ink); }
.nav-menu a[aria-current="page"] { color: var(--ink); font-weight: 700; box-shadow: inset 0 -2px 0 var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .tel { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.nav-actions .tel:hover { color: var(--accent); }
.nav-actions .tel svg { stroke: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--ink); }

@media (max-width: 960px) {
  .nav-menu, .nav-actions .tel, .nav-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open="true"] .nav-menu {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--canvas-deep); border-bottom: 1px solid var(--line);
    padding: 18px 24px; box-shadow: var(--shadow);
  }
  .nav[data-open="true"] .nav-menu a { padding: 12px 0; width: 100%; }
  .nav[data-open="true"] .nav-menu a[aria-current="page"] { box-shadow: none; }
  .nav[data-open="true"] .nav-actions .tel,
  .nav[data-open="true"] .nav-actions .btn { display: inline-flex; }
  .nav-actions { flex-wrap: wrap; }
}

/* Hero */
.hero { padding: clamp(64px, 9vw, 120px) 0 clamp(60px, 8vw, 96px); position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: auto -10% -260px auto;
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(208,35,71,0.22), transparent 70%);
  pointer-events: none;
}
.hero::before {
  content: ""; position: absolute; inset: -260px auto auto -14%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(231,178,74,0.14), transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.hero-visual { position: relative; }
.hero-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.hero-card-title { font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 18px; }
.hero-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hero-checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 600; font-size: 15px; }
.hero-checks .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--primary-tint); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.hero-checks .dot svg { width: 12px; height: 12px; stroke: var(--primary-mid); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Trust strip */
.trust-strip {
  background: var(--canvas-deep); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 28px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-grid > div { color: var(--ink-soft); font-size: 13px; font-weight: 600; letter-spacing: 0.03em; }
.trust-grid strong { display: block; color: var(--accent-soft); font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.01em; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); text-align: left; } }

/* Sections */
section { padding: var(--section-y) 0; }
section.tinted { background: var(--canvas-tint); }
section.inverted { background: linear-gradient(135deg, var(--primary-dark), var(--primary) 65%, var(--primary-mid)); color: #fff; }
section.inverted h1, section.inverted h2, section.inverted h3 { color: #fff; }
section.inverted p { color: rgba(255,255,255,0.86); }
section.inverted .eyebrow { color: var(--accent-soft); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* Cards grid */
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(231,178,74,0.4); }
.card h3 { margin-top: 18px; }
.card p { font-size: 15px; margin-bottom: 0; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-tint); color: var(--primary-mid);
  display: inline-flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--primary-mid); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card--accent .card-icon { background: var(--accent-tint); }
.card--accent .card-icon svg { stroke: var(--accent); }

/* Steps */
.steps { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.step h3 { margin-top: 14px; }
.step p { font-size: 15px; margin-bottom: 0; }

/* Values grid (icon + heading + text) */
.values { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value .v-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.value .v-icon svg { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { margin: 4px 0 6px; font-size: 1.15rem; }
.value p { font-size: 14.5px; margin: 0; }

/* Stat band */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 48px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--canvas-deep), var(--surface-2));
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 600; color: var(--accent-soft); line-height: 1; margin-bottom: 8px; }
.stat span { display: block; font-size: 14px; color: var(--ink-soft); letter-spacing: 0.02em; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); padding: 32px; } }

/* Founder block */
.founder { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.founder-portrait {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 60%, var(--primary-mid));
  color: #fff; padding: 40px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.founder-portrait::after {
  content: ""; position: absolute; inset: auto -60px -60px auto; width: 260px; height: 260px;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(231,178,74,0.42), transparent 70%);
}
.founder-portrait .role { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-soft); font-weight: 800; }
.founder-portrait .name { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 600; color: #fff; margin-top: 12px; line-height: 1.15; }
.founder-portrait .quote { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: rgba(255,255,255,0.94); position: relative; z-index: 1; }
@media (max-width: 860px) { .founder { grid-template-columns: 1fr; } }

/* Mission quote */
.mission-quote { max-width: 820px; margin: 0 auto; text-align: center; }
.mission-quote blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.4;
  color: var(--ink); font-style: italic;
}
.mission-quote cite { display: block; margin-top: 24px; font-family: var(--font-body); font-style: normal; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); font-weight: 800; }

/* Big CTA */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 60%, var(--primary-mid));
  color: #fff;
  padding: clamp(48px, 7vw, 80px);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: auto -80px -120px auto; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(231,178,74,0.38), transparent 70%);
}
.cta-band h2 { color: #fff; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; margin-top: 8px; }

/* Segment cards (Who we serve) */
.segments { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.segment {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.segment:hover { border-color: var(--accent); transform: translateY(-2px); }
.segment .seg-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-tint); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.segment .seg-icon svg { width: 24px; height: 24px; stroke: var(--primary-mid); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.segment h3 { margin-top: 0; }
.segment ul { list-style: none; padding: 0; margin: 16px 0 0; }
.segment li { display: flex; gap: 8px; font-size: 14px; color: var(--ink-soft); padding: 7px 0; border-top: 1px dashed var(--line); }
.segment li:first-child { border-top: 0; }
.segment li svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; margin-top: 4px; }

/* Pricing / package tiers */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: stretch; }
.tier {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tier.featured { border: 1.5px solid var(--accent); box-shadow: var(--shadow); position: relative; }
.tier.featured::before {
  content: "Most booked"; position: absolute; top: -12px; left: 30px;
  background: var(--accent); color: #201108; font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--pill);
}
.tier .t-name { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--ink); margin: 0 0 6px; }
.tier .t-tagline { font-size: 14px; color: var(--ink-muted); margin: 0 0 18px; }
.tier .t-price { font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; color: var(--accent-soft); line-height: 1; }
.tier .t-price span { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink-muted); }
.tier ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.tier li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); align-items: flex-start; }
.tier li svg { width: 17px; height: 17px; stroke: var(--primary-mid); flex-shrink: 0; margin-top: 3px; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.tier .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; color: var(--ink-muted); font-size: 14px; margin-top: 28px; }

/* Program list (academy) */
.menu-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.menu-group h3 { margin: 0 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.menu-list .m-name { font-weight: 700; color: var(--ink); }
.menu-list .m-desc { display: block; font-size: 13.5px; color: var(--ink-muted); font-weight: 400; margin-top: 2px; }
.menu-list .m-price { font-family: var(--font-display); font-weight: 600; color: var(--accent-soft); white-space: nowrap; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: flex-start; }
.contact-info { display: grid; gap: 18px; }
.contact-info dl { margin: 0; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-info dt { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }
.contact-info dd { margin: 6px 0 0; color: var(--ink); font-size: 16px; line-height: 1.5; }
.contact-info dd a { color: var(--accent-soft); text-decoration: none; }
.contact-info dd a:hover { color: var(--accent); }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.field { display: block; margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--canvas-deep); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(231,178,74,0.2); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--ink-muted); margin: 0; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* Content pages (privacy, accessibility, prose) */
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 32px; font-size: 1.15rem; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 20px; }
.prose li { margin-bottom: 8px; color: var(--ink-soft); }
.prose blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 24px; margin: 24px 0; font-family: var(--font-display); font-style: italic; color: var(--ink); }
.prose code { background: var(--surface-2); padding: 2px 6px; border-radius: 5px; font-size: 0.9em; }
.prose a { color: var(--accent-soft); }

/* Footer */
.site-footer { background: var(--canvas-deep); color: var(--ink-soft); padding: 72px 0 30px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--ink-muted); font-size: 14px; max-width: 42ch; }
.footer h3 { font-family: var(--font-body); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--accent-soft); }
.footer-contact li { color: var(--ink-muted); font-size: 14px; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  color: var(--ink-muted); font-size: 13px;
}
.footer-bottom a { color: var(--ink-soft); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* Photography */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Showcase band — full-width photo */
.showcase { padding-top: 0; }
.showcase .media-frame { aspect-ratio: 16 / 9; }
@media (max-width: 640px) { .showcase .media-frame { aspect-ratio: 4 / 3; } }

/* Split: image alongside copy */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.media-split .media-frame { aspect-ratio: 4 / 3; }
.media-split.reverse .media-copy { order: -1; }
@media (max-width: 860px) { .media-split { grid-template-columns: 1fr; gap: 36px; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
