/* ============================================
   BridgeHouse Creative – styles.css
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 56px;
  width: 56px;
  border-radius: 14px;
  object-fit: cover;
}

.nav-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  margin: 0 1.5rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
}

.btn-dark {
  background: #fff;
  color: #000;
}

.btn-dark:hover {
  background: rgba(255,255,255,0.88);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.btn-dark .btn-arrow {
  background: #000;
  color: #fff;
}

.btn-primary .btn-arrow {
  background: #000;
  color: #fff;
}

/* --- Hero (home page) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.45);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 2.5rem;
  margin-top: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* --- Service pages header (black section) --- */
.page-header {
  background: #000;
  padding: 130px 2.5rem 60px;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 3rem;
}

.page-header-text {
  max-width: 680px;
}

.page-header-text p {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

.page-header-portrait {
  width: 280px;
  flex-shrink: 0;
}

.page-header-portrait img {
  width: 100%;
  border-radius: 16px;
  filter: grayscale(100%);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* --- Service card section (white) --- */
.service-section {
  background: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: 0;
  overflow: hidden;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.service-card-image {
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}

.service-card-content h2 {
  color: #000;
  margin-bottom: 1.5rem;
}

.service-checklist {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #111;
  line-height: 1.5;
}

.service-checklist li::before {
  content: '✓';
  color: #555;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- About page --- */
.about-page {
  background: #000;
  padding: 120px 2.5rem 80px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.about-text h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-portrait img {
  width: 100%;
  border-radius: 16px;
  filter: grayscale(100%);
  object-fit: cover;
}

/* --- Contact page --- */
.contact-page {
  background: #000;
  min-height: 100vh;
  padding: 120px 2.5rem 80px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-left {}

.contact-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  margin-bottom: 1.5rem;
}

.contact-left h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.0;
}

.contact-left .subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.contact-detail svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-detail a:hover {
  color: #fff;
}

/* --- Contact Form --- */
.contact-form-wrap {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.form-group label .optional {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: #2a2a2a;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

/* Form status messages */
.form-status {
  display: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
}
.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}
.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* --- Footer --- */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 3rem;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-contact a:hover { color: #fff; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .page-header-inner {
    grid-template-columns: 1fr;
  }
  .page-header-portrait {
    display: none;
  }
  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card-image {
    height: 300px;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    max-width: 280px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  nav { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open li { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 1.25rem; }
  .page-header { padding: 110px 1.25rem 50px; }
  .service-card-content { padding: 2.5rem 1.5rem; }
  .about-page { padding: 110px 1.25rem 60px; }
  .contact-page { padding: 110px 1.25rem 60px; }
  .contact-form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 2.5rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}


/* ============================================
   Homepage Sections
   ============================================ */

/* --- 1. Intro --- */
.home-intro {
  background: #000;
  padding: 5rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.home-intro-inner {
  max-width: 780px;
  margin: 0 auto;
}

.home-intro-inner p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* --- 2. Service Cards --- */
.home-services {
  background: #0a0a0a;
  padding: 6rem 2.5rem;
}

.home-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.home-services-header h2 {
  margin-bottom: 0.75rem;
}

.home-services-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
}

.home-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-service-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.home-service-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.home-service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
}

.home-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.home-service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  flex: 1;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s, gap 0.2s;
}

.home-service-link:hover {
  color: #fff;
  gap: 0.65rem;
}

/* --- 3. How it works --- */
.home-how {
  background: #000;
  padding: 6rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.home-how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-how-header {
  max-width: 500px;
  margin-bottom: 4rem;
}

.home-how-header h2 {
  margin-bottom: 0.75rem;
}

.home-how-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
}

.home-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.home-step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  letter-spacing: -0.02em;
}

.home-step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.home-step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* --- 4. Testimonials --- */
.home-testimonials {
  background: #0a0a0a;
  padding: 6rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.home-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-testimonials-inner > h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.home-testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.home-testimonial-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-testimonial-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.home-testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-testimonial-card footer strong {
  font-size: 0.9rem;
  color: #fff;
  font-style: normal;
}

.home-testimonial-card footer span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-style: normal;
}

.testimonial-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* --- 5. Final CTA --- */
.home-cta {
  background: #fff;
  padding: 7rem 2.5rem;
}

.home-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.home-cta-inner h2 {
  color: #000;
  margin-bottom: 1rem;
}

.home-cta-inner p {
  color: rgba(0,0,0,0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.home-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-cta .btn-primary {
  background: #000;
  color: #fff;
}

.home-cta .btn-primary:hover {
  background: #1a1a1a;
}

.home-cta .btn-primary .btn-arrow {
  background: #fff;
  color: #000;
}

.home-cta .btn-secondary {
  background: transparent;
  color: #000;
  border: 1px solid rgba(0,0,0,0.2);
}

.home-cta .btn-secondary:hover {
  background: rgba(0,0,0,0.06);
}

/* --- Responsive: Homepage sections --- */
@media (max-width: 900px) {
  .home-service-cards {
    grid-template-columns: 1fr;
  }
  .home-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-testimonial-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-intro { padding: 3.5rem 1.25rem; }
  .home-services { padding: 4rem 1.25rem; }
  .home-how { padding: 4rem 1.25rem; }
  .home-testimonials { padding: 4rem 1.25rem; }
  .home-cta { padding: 5rem 1.25rem; }
  .home-step-number { font-size: 1.8rem; width: 40px; }
}


/* ============================================
   Service Page Testimonials
   ============================================ */

.service-testimonials {
  background: #000;
  padding: 5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.service-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-testimonials-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.service-testimonials-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.service-testimonials-header .placeholder-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

.service-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-testimonial {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* --- Related services / explore more --- */
.related-services {
  padding: 0 2.5rem 2rem;
}

.related-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related-services-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.related-services-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.related-card:hover {
  border-color: rgba(255,255,255,0.2);
  background: #141414;
}

.related-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.related-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  flex-grow: 1;
}

.related-card .related-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.related-card:hover .related-arrow { color: #fff; }

@media (max-width: 900px) {
  .related-services-grid { grid-template-columns: 1fr; }
  .related-services { padding: 0 1.25rem 1.5rem; }
}

.service-testimonial-quote {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  flex: 1;
}

.service-testimonial-quote::before {
  content: '\201C';
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: -0.35em;
  color: rgba(255,255,255,0.2);
  margin-right: 0.15em;
}

.service-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.service-testimonial-author strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.service-testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .service-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-testimonials { padding: 3.5rem 1.25rem; }
}


/* ============================================
   Internal Page Template — Shared
   Applies to: About, Contact, Production,
               Mixing, Coaching
   ============================================ */

/* --- Page hero (standard title treatment) --- */
.page-hero {
  background: #000;
  padding: 130px 2.5rem 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: center;
}

.page-hero-text {
  max-width: 640px;
}

.page-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.9rem;
}

.page-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-text .page-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero-portrait img {
  width: 100%;
  border-radius: 16px;
  filter: grayscale(100%);
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* --- Page body wrapper --- */
.page-body {
  background: #000;
}

/* --- Bottom CTA (shared across all internal pages) --- */
.page-bottom-cta {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 5rem 2.5rem;
  text-align: center;
}

.page-bottom-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.page-bottom-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-bottom-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.page-bottom-cta .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- About page bio sections --- */
.about-bio {
  padding: 5rem 2.5rem;
  background: #000;
}

.about-bio-inner {
  max-width: 780px;
  margin: 0 auto;
}

.about-bio-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-bio-section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-bio-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-bio-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.65rem;
}

.about-bio-location::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.about-bio-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.9rem;
}

.about-bio-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* --- Contact page specifics --- */
.contact-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.75rem;
}

.contact-trust svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
}

.what-happens {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.what-happens h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}

.what-happens-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.what-happens-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.what-happens-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  margin-top: 1px;
}

.what-happens-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.what-happens-step p strong {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* --- Responsive: Internal page template --- */
@media (max-width: 900px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-portrait {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-hero { padding: 110px 1.25rem 48px; }
  .about-bio { padding: 3.5rem 1.25rem; }
  .page-bottom-cta { padding: 4rem 1.25rem; }
}
