/* The Infinite Bass — bespoke stylesheet (rebuild of the Waymore/Pagelayer look).
   Palette: black stage #000, panels #171717/#313131, accent coral #ea3a60,
   secondaries pink #e44993 / blue #227bc3. Montserrat headings, Poppins body. */

@font-face { font-family: 'Montserrat'; font-weight: 400; font-display: swap; src: url('/assets/fonts/montserrat-400.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-weight: 600; font-display: swap; src: url('/assets/fonts/montserrat-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-weight: 700; font-display: swap; src: url('/assets/fonts/montserrat-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 400; font-display: swap; src: url('/assets/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-display: swap; src: url('/assets/fonts/poppins-600.woff2') format('woff2'); }

:root {
  --accent: #ea3a60;
  --pink: #e44993;
  --blue: #227bc3;
  --ink: #121212;
  --panel: #171717;
  --grey: #6a6f73;
  --light: #f5f6f7;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px; line-height: 1.7; color: var(--ink);
  background: #fff;
}
img { max-width: 100%; height: auto; border: 0; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600; line-height: 1.25; margin: 0 0 .6em;
}
.wrap { max-width: 1170px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header { background: #000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; flex-wrap: wrap; }
.brand {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 26px;
  letter-spacing: .5px; text-transform: uppercase; color: #fff;
}
.brand:hover { text-decoration: none; color: #fff; }
.brand span { color: var(--accent); }
.site-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.site-nav a {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: .5px; text-transform: uppercase; color: #fff;
}
.site-nav a:hover, .site-nav a.active { color: var(--accent); text-decoration: none; }
.nav-toggle, .nav-burger { display: none; }

/* ---------- hero (home) ---------- */
.hero {
  background: #000 url('/assets/img/cropped-coverphoto_large-scaled-1.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; padding: 110px 24px 130px; }
.hero h1 { font-size: 38px; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.hero .rule { width: 96px; height: 3px; background: var(--accent); border: 0; margin: 0 0 26px; }
.hero p { max-width: 46ch; }
.video-embed { position: relative; padding-top: 56.25%; background: #111; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- generic sections ---------- */
.section { padding: 84px 0; }
.section.light { background: var(--light); }
.section.dark { background: var(--panel); color: #fff; }
.section-title { text-align: center; font-size: 34px; margin-bottom: 14px; }
.section-title.upper { text-transform: uppercase; }
.section .rule-center { width: 150px; height: 2px; background: var(--accent); border: 0; margin: 0 auto 46px; }
.section.dark .section-title { color: #fff; }
.prose { max-width: 820px; margin: 0 auto; }
.prose p { margin: 0 0 1.2em; }

/* ---------- home: service cards ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.service img { width: 100%; aspect-ratio: 4 / 3.9; object-fit: cover; }
.service h3 {
  text-align: center; padding-top: 20px; font-size: 17px; letter-spacing: .5px;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
}

/* ---------- home: testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin: 0 auto; }
.testimonial { background: #fff; padding: 34px 34px 28px; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.testimonial blockquote { margin: 0 0 22px; font-style: italic; color: #333; }
.testimonial .who { display: flex; align-items: center; gap: 14px; }
.testimonial .who img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.avatar-fallback {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 24px;
}
.testimonial .who strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 15px; }
.testimonial .who small { color: var(--grey); }

/* ---------- inner-page hero band ---------- */
.page-band { background: #000; color: #fff; padding: 56px 0; }
.page-band h1 { font-size: 34px; text-transform: uppercase; color: #fff; margin: 0 0 10px; }
.page-band .rule { width: 96px; height: 3px; background: var(--accent); border: 0; margin: 0; }

/* ---------- about ---------- */
.about-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 56px; }
.about-photos img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; }
.about-body h2 { font-size: 30px; }
.about-body h3 {
  font-size: 15px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent); margin: 2em 0 .5em;
}

/* ---------- lessons ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse > .split-img { order: 2; }
.split-img img { width: 100%; object-fit: cover; }
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 14px 30px; border: 0; cursor: pointer; transition: background .2s;
}
.btn:hover { background: #d02a4e; color: #fff; text-decoration: none; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-form label { display: block; margin-bottom: 18px; font-weight: 600; font-size: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; font: inherit;
  border: 1px solid #d9dcde; background: #fff; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-aside iframe { width: 100%; height: 320px; border: 0; }
.contact-aside ul { list-style: none; padding: 0; margin: 20px 0 0; }
.contact-aside li { margin-bottom: 10px; }
.form-note { padding: 14px 18px; margin-bottom: 26px; background: #eafaf0; border-left: 4px solid #27ae60; }
.form-note.err { background: #fdeeee; border-left-color: var(--accent); }
/* honeypot — invisible to humans, present for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- blog index ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card { background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,.07); display: flex; flex-direction: column; }
.post-card .thumb { display: block; aspect-ratio: 1 / 0.7; background-size: cover; background-position: center; }
.post-card .card-body { padding: 20px 22px 24px; }
.post-card h2 { font-size: 18px; margin: 0 0 8px; }
.post-card h2 a { color: #000; }
.post-card h2 a:hover { color: var(--accent); text-decoration: none; }
.post-card .meta { font-size: 13px; color: var(--grey); }
.pagination { text-align: center; margin-top: 50px; }
.pagination a, .pagination span {
  display: inline-block; padding: 9px 16px; margin: 0 4px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
}
.pagination a { background: #fff; color: var(--ink); box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.pagination a:hover { background: var(--accent); color: #fff; text-decoration: none; }
.pagination .current { background: var(--accent); color: #fff; }

/* ---------- single post ---------- */
.post-head { background: #000; color: #fff; padding: 64px 0 58px; }
.post-head h1 { font-size: 32px; color: #fff; max-width: 900px; margin: 0 0 14px; }
.post-head .meta { color: #cfd3d6; font-size: 14px; }
.post-head .meta .cat { color: var(--accent); }
.post-body { max-width: 820px; margin: 0 auto; padding: 64px 24px 80px; }
.post-body h2, .post-body h3 { margin-top: 1.6em; }
.post-body img { margin: 1.5em auto; }
.post-body figure { margin: 1.5em 0; }
.post-body figcaption { text-align: center; font-size: 14px; color: var(--grey); }
.post-body iframe { max-width: 100%; }
.post-body .video-embed { margin: 1.8em 0; }
.post-nav { max-width: 820px; margin: 0 auto 80px; padding: 0 24px; display: flex; justify-content: space-between; gap: 20px; }
.post-nav a { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; }

/* ---------- bookings ---------- */
.bookings-embed { min-height: 640px; padding: 40px 0 80px; }

/* ---------- footer ---------- */
.site-footer { background: #212121; color: #c9cdd1; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 48px; padding-top: 70px; padding-bottom: 40px; }
.foot-brand { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.foot-brand span { color: var(--accent); }
.site-footer h2 { font-size: 15px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #c9cdd1; }
.site-footer a:hover { color: var(--accent); text-decoration: none; }
/* Social icons — as the WP original: solid coral circles, white 16px glyph,
   3px gaps, hover fades the circle to black (400ms). */
.socials { display: flex; gap: 6px; margin-top: 22px !important; }
.socials li { margin: 0; }
.socials a {
  display: grid; place-items: center; width: 52px; height: 52px;
  background: var(--accent); border-radius: 50%; color: #fff;
  transition: background 400ms;
}
.socials svg { width: 16px; height: 16px; }
.socials a:hover { background: #000; color: #fff; }
.foot-copy { border-top: 1px solid #2e2e2e; padding-top: 18px; padding-bottom: 18px; }
.foot-copy p { margin: 0; font-size: 13px; color: #8a8f94; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 70px 24px 80px; gap: 36px; }
  .services, .about-photos, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .testimonials { grid-template-columns: 1fr; }
  .split.reverse > .split-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 30px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 27px; }
  .services, .about-photos, .post-grid { grid-template-columns: 1fr; }
  .header-inner { min-height: 72px; }
  .brand { font-size: 21px; }
  /* burger nav */
  .nav-burger { display: grid; gap: 5px; cursor: pointer; padding: 8px; }
  .nav-burger span { width: 24px; height: 2px; background: #fff; }
  .site-nav { display: none; width: 100%; }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 6px 0 18px; }
  .site-nav li { border-top: 1px solid #1c1c1c; }
  .site-nav a { display: block; padding: 12px 4px; }
  .testimonial { padding: 26px 22px; }
}
