/* Singh Audio & Video — mobile-first, dependency-free */
:root {
  --ink: #18202b;
  --muted: #5f6977;
  --paper: #ffffff;
  --soft: #f5f2ed;
  --line: #e4ded4;
  --brand: #c55a16;
  --brand-deep: #8f3e0f;
  --night: #111827;
  --night-2: #1d2735;
  --max: 1180px;
  --narrow: 760px;
  --radius: 16px;
  --shadow: 0 16px 44px rgba(17, 24, 39, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-deep); text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #2563eb; outline-offset: 3px; border-radius: 4px; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), var(--narrow)); }
.skip-link { position: absolute; left: 0.75rem; top: -5rem; z-index: 100; background: #fff; color: #111; padding: 0.75rem 1rem; border-radius: 0.5rem; box-shadow: var(--shadow); }
.skip-link:focus { top: 0.75rem; }

.site-header { position: relative; z-index: 10; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; flex-direction: column; gap: 0.7rem; padding-block: 0.8rem; }
.brand { display: inline-block; width: min(330px, 78vw); }
.brand img { width: 100%; }
.main-nav { display: flex; flex-wrap: wrap; gap: 0.15rem 0.35rem; padding-bottom: 0.2rem; }
.main-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0.55rem 0.65rem; color: var(--ink); text-decoration: none; font-weight: 650; border-radius: 999px; font-size: 0.94rem; }
.main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--soft); color: var(--brand-deep); }

h1, h2, h3 { font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif; line-height: 1.08; letter-spacing: -0.025em; margin: 0 0 0.8rem; color: var(--night); }
h1 { font-size: clamp(2.35rem, 8vw, 5.4rem); }
h2 { font-size: clamp(1.85rem, 5vw, 3.3rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }
.eyebrow { margin: 0 0 0.65rem; color: var(--brand); font-size: 0.79rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.lede { color: var(--muted); font-size: clamp(1.08rem, 2.4vw, 1.35rem); line-height: 1.6; max-width: 64ch; }
.meta { color: var(--muted); font-size: 0.93rem; }

.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0.72rem 1.1rem; border: 2px solid var(--brand); border-radius: 999px; background: var(--brand); color: #fff; font-weight: 800; text-decoration: none; }
.button:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
.button-secondary { background: transparent; color: var(--brand-deep); }
.button-secondary:hover { color: #fff; }
.button-light { background: #fff; border-color: #fff; color: var(--night); }
.button-light:hover { background: var(--soft); border-color: var(--soft); color: var(--night); }
.text-link { font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.light-link { color: #fff; }

.hero { padding: 1.25rem 0 3.5rem; background: linear-gradient(180deg, #fff 0%, #faf8f4 100%); }
.hero-grid { display: grid; gap: 1.5rem; align-items: center; }
.hero-copy { padding-top: 1rem; }
.hero-media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #ddd; }
.hero-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.section { padding: 4.5rem 0; }
.section-topless { padding-top: 1rem; }
.compact-section { padding-top: 0; }
.section-muted { background: var(--soft); }
.section-dark { background: var(--night); color: #eef2f7; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: #ffac63; }
.section-heading { max-width: 760px; margin-bottom: 1.8rem; }
.split-heading { max-width: none; display: flex; flex-direction: column; gap: 1rem; }
.service-grid, .card-grid, .contact-grid { display: grid; gap: 1rem; }
.service-card, .contact-card, .card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.service-card, .contact-card { padding: 1.35rem; }
.service-card p, .contact-card p { color: var(--muted); }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.gallery-item { margin: 0; overflow: hidden; border-radius: 12px; background: var(--night-2); }
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-item:nth-child(3n+1) { grid-column: 1 / -1; }
.gallery-item:nth-child(3n+1) img { aspect-ratio: 16/8.6; }

.card { overflow: hidden; box-shadow: 0 8px 28px rgba(17,24,39,.06); }
.card-media { display: block; background: var(--soft); overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .2s ease; }
.card-media:hover img { transform: scale(1.015); }
.card-body { padding: 1.2rem; }
.card-body h2 { font-size: 1.55rem; }
.card-body h2 a { color: var(--night); text-decoration: none; }
.card-body h2 a:hover { color: var(--brand-deep); text-decoration: underline; }
.card-body p { color: var(--muted); }

.page-intro { padding: 4rem 0 2.2rem; background: var(--soft); }
.post-intro { padding-bottom: 3rem; }
.page-hero { padding: 2.4rem 0; background: var(--soft); }
.page-hero-grid { display: grid; gap: 1.5rem; align-items: center; }
.page-hero-media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.page-hero-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-hero { margin-top: 2rem; margin-bottom: 3rem; }
.post-hero img { width: 100%; max-height: 660px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.prose { color: #303946; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 2.2rem; font-size: clamp(1.65rem, 4vw, 2.4rem); }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose li { max-width: 72ch; }
.prose a { overflow-wrap: anywhere; }

.video-link-card { margin-top: 2.5rem; display: grid; gap: 1.2rem; align-items: center; padding: 1.35rem; background: var(--night); color: #e5e7eb; border-radius: var(--radius); }
.video-link-card h2 { color: #fff; font-size: clamp(1.55rem, 4vw, 2.25rem); }
.video-link-card .eyebrow { color: #ffac63; }
.back-link { margin-top: 2rem; }

.cta-band { padding: 3.4rem 0; background: var(--brand-deep); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: #ffd0aa; }
.cta-grid { display: grid; gap: 1.5rem; align-items: center; }

.site-footer { background: #0b1018; color: #cbd5e1; padding-top: 3.5rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-logo { width: min(330px, 82vw); margin-bottom: 1rem; }
.site-footer h2 { color: #fff; font-family: inherit; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a { color: #fff; }
.footer-bottom { margin-top: 2.5rem; padding: 1.2rem 0 2rem; border-top: 1px solid #293241; display: flex; flex-direction: column; gap: .25rem; font-size: .9rem; }
.footer-bottom p { margin: 0; }

@media (min-width: 720px) {
  .shell { width: min(calc(100% - 3rem), var(--max)); }
  .narrow { width: min(calc(100% - 3rem), var(--narrow)); }
  .header-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; }
  .brand { width: 270px; flex: 0 0 auto; }
  .main-nav { justify-content: flex-end; padding: 0; }
  .hero { padding: 3.2rem 0 5rem; }
  .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr); gap: 2.5rem; }
  .hero-media img { aspect-ratio: 4/3; }
  .service-grid, .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  .gallery-item:nth-child(3n+1) { grid-column: auto; }
  .gallery-item:nth-child(3n+1) img { aspect-ratio: 4/3; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item:nth-child(1) img, .gallery-item:nth-child(6) img { aspect-ratio: 16/7.7; }
  .split-heading { flex-direction: row; justify-content: space-between; align-items: end; }
  .page-hero-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 2.5rem; }
  .video-link-card { grid-template-columns: 1fr auto; padding: 1.8rem; }
  .cta-grid { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1040px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .main-nav a { padding-inline: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card-media img { transition: none; }
}
