/* ===================================================
   BRS GREAT HAIR — Main Stylesheet v2
   Fonts: Barlow Condensed (display) + DM Sans (body)
   =================================================== */

:root {
  --yellow:   #FF8500;
  --orange:   #FF5200;
  --pink:     #C8005A;
  --blue:     #0097A7;
  --green:    #00B341;
  --red:      #E8180D;
  --violet:   #6B21A8;
  --cyan:     #00C4CC;
  --dark:     #111111;
  --white:    #FFFFFF;
  --whatsapp: #25D366;
  /* Glow: raise --glow-hi for a stronger highlight, --glow-lo for deeper shadows */
  --glow-hi: 0.42;
  --glow-lo: 0.28;

  --body-text: #111111;
  --muted:     #666666;
  --border:    rgba(0,0,0,0.14);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w:     1160px;
  --prose-w:   700px;
  --nav-h:     70px;
  --radius:    4px;
  --transition: 180ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: inherit;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: inherit;
}

p { max-width: 66ch; line-height: 1.78; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.prose { max-width: var(--prose-w); }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1ebc5a; }

.btn-dark   { background: var(--dark);   color: var(--white); }
.btn-dark:hover  { background: #333; }

.btn-white  { background: var(--white);  color: var(--dark); }
.btn-white:hover { background: var(--yellow); color: var(--dark); }

.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #e07000; }

.btn-orange { background: var(--orange); color: var(--dark); }
.btn-orange:hover { background: #e84800; }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 3px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 3px solid var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--dark); }

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav-brand .brand-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-brand .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-top: 1px;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem) 2rem;
  border-bottom: 4px solid var(--yellow);
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-menu.is-open { display: flex; }
.nav-links { display: flex; flex-direction: column; gap: 0.4rem; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 0.4rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: none;
    gap: 2.5rem;
    box-shadow: none;
    background: transparent;
  }
  .nav-links { flex-direction: row; gap: 2rem; }
  .nav-links a { padding: 0; min-height: auto; font-size: 1rem; }
}

/* ===================================================
   SECTION SHARED
   =================================================== */
section { padding: clamp(4.5rem, 9vw, 7rem) 0; }

.section-label {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: inherit;
}

.divider {
  width: 60px;
  height: 6px;
  background: var(--dark);
  margin: 0.75rem 0 1.75rem;
}

/* ===================================================
   HERO  — yellow background
   =================================================== */
.hero {
  background: var(--yellow);
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 5rem; }
}

.hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.55);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 2rem;
  overflow-wrap: break-word;
  text-transform: uppercase;
}
.hero-tagline .line { display: block; }
.hero-tagline .dot-1 { color: var(--orange); }
.hero-tagline .dot-2 { color: var(--pink); }
.hero-tagline .dot-3 { color: var(--blue); }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 44ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-image-wrap { width: 100%; }
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .hero-image-wrap img {
    width: 100%;
    height: auto;
  }
}

/* Image placeholder */
.img-placeholder {
  background: rgba(0,0,0,0.07);
  border: 2px dashed rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(0,0,0,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
  line-height: 1.5;
}
.img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.25; display: block; }
.img-placeholder strong { color: rgba(0,0,0,0.6); font-weight: 500; display: block; }
.hero-image-wrap .img-placeholder { aspect-ratio: 4/5; }
@media (max-width: 767px) {
  .hero-image-wrap .img-placeholder { height: 220px; aspect-ratio: unset; }
}

/* ===================================================
   SALON STRIP — orange background
   =================================================== */
.salon-strip {
  background: var(--orange);
  padding: 1.1rem 0;
}
.salon-strip p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  max-width: none;
  letter-spacing: 0.1em;
}
.salon-strip a { color: var(--dark); text-decoration: underline; text-underline-offset: 3px; }
.salon-strip a:hover { opacity: 0.7; }

/* ===================================================
   APPROACH — blue background
   =================================================== */
.approach {
  background: var(--red);
  color: var(--white);
}
.approach h2        { color: var(--white); }
.approach .section-label { color: var(--yellow); }
.approach .divider  { background: var(--yellow); }

.approach-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .approach-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
  }
  .approach-sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }
}

.approach-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.approach-body p {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.025rem;
}
.approach-body p:last-child { margin-bottom: 0; }

/* ===================================================
   GALLERY — dark background
   =================================================== */
.section-gallery {
  background: var(--dark);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section-gallery .section-label { color: var(--yellow); }
.section-gallery .divider       { background: var(--yellow); }

.gallery-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius);
}

/* ===================================================
   REVIEWS — pink background
   =================================================== */
.section-reviews {
  background: var(--pink);
  color: var(--white);
}
.section-reviews .section-label { color: rgba(255,255,255,0.75); }
.section-reviews .divider       { background: var(--white); }

.review-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  margin-top: 2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.review-scroll::-webkit-scrollbar { height: 4px; }
.review-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 4px; }
.review-scroll img {
  height: 420px;
  width: auto;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  display: block;
}
@media (max-width: 640px) {
  .review-scroll img { height: 340px; }
}

/* Unused testimonial card styles — preserved for future use */
.testimonials-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card { background: var(--white); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.t-card .quote-mark { font-family: var(--font-display); font-size: 3.5rem; color: var(--yellow); line-height: 0.8; display: block; }
.t-card .t-text     { font-style: italic; color: var(--body-text); line-height: 1.72; flex: 1; }
.t-card .t-note     { font-size: 0.75rem; color: var(--muted); }
.testimonials-footnote { margin-top: 2rem; font-size: 0.78rem; color: var(--muted); font-style: italic; }

/* ===================================================
   NEWSLETTER — green background
   =================================================== */
.newsletter { background: var(--green); color: var(--dark); }
.newsletter h2          { color: var(--dark); }
.newsletter .section-label { color: var(--dark); }
.newsletter .divider    { background: var(--dark); }

.newsletter-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .newsletter-inner { grid-template-columns: 1fr 1fr; } }

.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  border: 3px solid var(--dark);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: box-shadow var(--transition);
}
.newsletter-form input[type="email"]:focus { box-shadow: 0 0 0 3px rgba(0,0,0,0.25); }
.newsletter-note { font-size: 0.75rem; color: rgba(0,0,0,0.6); margin-top: 0.75rem; }

@media (max-width: 560px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: 0; width: 100%; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* ===================================================
   KIT NEWSLETTER FORM
   Overrides Kit's injected styles to match site design.
   Targets the inline embed (data-uid="6bc0bc7dec").
   =================================================== */
.formkit-form { width: 100%; }

/* Hide Kit's own heading, subheading, guarantee line and branding */
.formkit-form .formkit-header,
.formkit-form .formkit-subheader,
.formkit-form .formkit-guarantee,
.formkit-form .formkit-powered-by-convertkit-container { display: none !important; }

/* Fields row — mirrors .newsletter-form flex layout */
.formkit-form .formkit-fields {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
  align-items: stretch !important;
}
.formkit-form .formkit-field {
  flex: 1 !important;
  min-width: 200px !important;
}

/* Email input — mirrors newsletter-form input */
.formkit-form .formkit-input {
  width: 100% !important;
  padding: 1rem 1.5rem !important;
  border: 3px solid var(--dark) !important;
  border-radius: 2px !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  background: var(--white) !important;
  color: var(--dark) !important;
  box-shadow: none !important;
  outline: none !important;
  transition: box-shadow var(--transition) !important;
  height: auto !important;
}
.formkit-form .formkit-input:focus {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.25) !important;
}
.formkit-form .formkit-input::placeholder { color: rgba(0,0,0,0.4) !important; }

/* Submit button — mirrors .btn.btn-dark */
.formkit-form .formkit-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.25rem !important;
  border-radius: 2px !important;
  background: var(--dark) !important;
  color: var(--white) !important;
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  width: auto !important;
  height: auto !important;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
}
.formkit-form .formkit-submit:hover {
  background: #333 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25) !important;
}
.formkit-form .formkit-submit:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}

/* Hide spinner (loading dots Kit shows during submission) */
.formkit-form .formkit-spinner { display: none !important; }

/* Error/validation alerts */
.formkit-form .formkit-alert {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 2px !important;
  list-style: none !important;
  margin: 0 0 0.5rem !important;
}
.formkit-form .formkit-alert-error {
  background: rgba(0,0,0,0.12) !important;
  color: var(--dark) !important;
}

/* Mobile — stack input and button */
@media (max-width: 560px) {
  .formkit-form .formkit-field { min-width: 0 !important; width: 100% !important; }
  .formkit-form .formkit-submit { width: 100% !important; }
}

/* ===================================================
   CONTACT — dark background
   =================================================== */
.contact {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}
.contact h2          { color: var(--white); }
.contact .section-label { color: var(--yellow); }
.contact .divider    { background: var(--yellow); }

.contact-grid { display: grid; gap: 3rem; margin-top: 3rem; }
@media (min-width: 768px)  { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr 1.4fr; } }

.contact-block h3 { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; color: var(--yellow); margin-bottom: 1rem; }
.contact-block p,
.contact-block address { line-height: 1.85; font-size: 0.95rem; }
.contact-block a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.contact-block a:hover { color: var(--yellow); }

.contact-tel {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.5rem; font-size: 1.05rem; font-weight: 500;
  color: var(--white); min-height: 44px; padding: 0.25rem 0;
}
.contact-tel:hover { color: var(--yellow); }

.social-list  { display: flex; flex-direction: column; gap: 0.6rem; }
.social-item  {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
  transition: color var(--transition); min-height: 44px; padding: 0.2rem 0;
}
.social-item:hover { color: var(--yellow); }
.social-item .platform {
  display: inline-flex; align-items: center; flex-shrink: 0;
  color: rgba(255,255,255,0.4); min-width: 28px;
}
.social-item .handle { color: inherit; }

.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-placeholder-block {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  color: rgba(255,255,255,0.4); font-size: 0.82rem; text-align: center; padding: 2rem;
}
.map-placeholder-block .ph-icon { font-size: 2rem; opacity: 0.4; }
.map-placeholder-block a { color: var(--yellow); text-decoration: underline; font-size: 0.8rem; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #000;
  color: rgba(255,255,255,0.45);
  padding: 1.75rem 0;
  font-size: 0.78rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.footer-brand { color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.85rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a {
  color: rgba(255,255,255,0.45); transition: color var(--transition);
  display: inline-flex; align-items: center;
}
.footer-links a:hover { color: var(--yellow); }

/* ===================================================
   INNER PAGE HEADER
   =================================================== */
.page-header {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--dark);
  color: var(--white);
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.0;
}
.page-header .section-label { color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.page-header .page-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  margin-top: 1rem; max-width: 60ch; line-height: 1.7;
}
.page-header .page-lead a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.page-header .page-lead a:hover { opacity: 0.8; }

/* About: blue header */
.page-header--blue {
  background: var(--blue);
  color: var(--white);
}
.page-header--blue .section-label { color: var(--yellow); }
.page-header--blue h1 { color: var(--white); }
.page-header--blue .page-lead { color: rgba(255,255,255,0.85); }
.page-header--blue .page-lead a { color: var(--yellow); }

/* Charges: teal header */
.page-header--orange {
  background: var(--blue);
  color: var(--white);
}
.page-header--orange .section-label { color: var(--yellow); }
.page-header--orange h1 { color: var(--white); }
.page-header--orange .page-lead { color: rgba(255,255,255,0.85); }
.page-header--orange .page-lead a { color: var(--yellow); font-weight: 600; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.bio-section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.bio-section:nth-of-type(odd)  { background: var(--yellow); color: var(--dark); }
.bio-section:nth-of-type(even) { background: var(--green);  color: var(--dark); }
.bio-section .section-label { color: var(--dark); }
.bio-section .divider       { background: var(--dark); }

.bio-layout { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) {
  .bio-layout { grid-template-columns: 280px 1fr; gap: 5rem; }
  .bio-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }
}
@media (min-width: 1024px) {
  .bio-layout { grid-template-columns: 320px 1fr; }
}

.bio-image img {
  width: 100%; height: auto; display: block; margin-bottom: 1.5rem;
}
.bio-image .img-placeholder { aspect-ratio: 3/4; margin-bottom: 1.5rem; }
@media (max-width: 767px) {
  .bio-image .img-placeholder { height: 260px; aspect-ratio: unset; }
}

.bio-meta { font-size: 0.78rem; color: rgba(0,0,0,0.6); line-height: 1.8; }
.bio-meta strong {
  color: var(--dark); display: block; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.1em;
}

.bio-content h2       { margin-bottom: 0.5rem; }
.bio-content > .divider { margin-top: 0; }
.bio-content p {
  margin-bottom: 1.5rem; font-size: 1.025rem;
  color: var(--dark); line-height: 1.82;
}
.bio-content p:last-child { margin-bottom: 0; }
.brand-ref { font-weight: 700; color: var(--dark); letter-spacing: 0.02em; }

.pull-quote {
  margin: 2.5rem 0;
  padding: 2rem 2.25rem;
  border-left: 6px solid var(--dark);
  background: rgba(0,0,0,0.1);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  line-height: 1.3;
  max-width: none;
  margin: 0;
}

/* ===================================================
   CHARGES PAGE
   =================================================== */

/* Intro — yellow */
.charges-intro { background: var(--yellow); color: var(--dark); }
.charges-intro h2           { color: var(--dark); }
.charges-intro .section-label { color: var(--dark); }
.charges-intro .divider     { background: var(--dark); }

.charges-copy p {
  margin-bottom: 1.25rem; font-size: 1.025rem;
  color: var(--dark); line-height: 1.78;
}
.charges-copy p:last-child { margin-bottom: 0; }
.charges-copy a { color: var(--dark); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.charges-copy a:hover { opacity: 0.7; }

.gender-callout {
  margin: 3rem 0 0;
  padding: 2rem 2.25rem;
  background: rgba(0,0,0,0.1);
  border-left: 6px solid var(--dark);
  max-width: 680px;
}
.gender-callout p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  font-style: italic;
  color: var(--dark);
  line-height: 1.2;
  max-width: none;
  margin: 0;
}

/* Big price — dark */
.price-hero {
  background: var(--dark);
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-label {
  font-size: 0.22em;
  color: rgba(255,255,255,0.65);
  font-weight: 800;
  letter-spacing: 0.08em;
  vertical-align: middle;
  margin-left: 0.2em;
}
.price-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1.5rem;
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
}
.price-note p { max-width: none; }

/* Pricing — violet */
.pricing-section { background: var(--violet); color: var(--white); }
.pricing-section h2           { color: var(--white); }
.pricing-section .section-label { color: var(--yellow); }
.pricing-section .divider     { background: var(--white); opacity: 0.5; }

.pricing-intro { margin-bottom: 3rem; max-width: 680px; }
.pricing-intro p { font-size: 1rem; color: rgba(255,255,255,0.85); }

.pricing-grid { display: grid; gap: 1.75rem; }
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.p-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.p-card-head {
  padding: 1.4rem 1.5rem;
  background: var(--dark);
}
.p-card-head h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.p-card-head .subhead { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.35rem; line-height: 1.5; }

.p-table { width: 100%; border-collapse: collapse; }
.p-table td {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.92rem;
  vertical-align: middle;
  color: var(--dark);
}
@media (min-width: 480px) {
  .p-card-head { padding: 1.5rem 1.75rem; }
  .p-table td  { padding: 0.9rem 1.75rem; }
  .p-card-foot { padding: 0.85rem 1.75rem; }
}
.p-table tr:last-child td { border-bottom: none; }
.p-table .price {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}
.p-card-foot {
  padding: 0.85rem 1.5rem;
  background: rgba(0,0,0,0.04);
  font-size: 0.78rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.55;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Typical appointments — cyan */
.typical-section { background: var(--cyan); color: var(--dark); }
.typical-section h2           { color: var(--dark); }
.typical-section .section-label { color: var(--dark); }
.typical-section .divider     { background: var(--dark); }

.typical-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px)  { .typical-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .typical-grid { grid-template-columns: repeat(4, 1fr); } }

.appt-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 6px solid var(--yellow);
}
.appt-card h3 { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; color: var(--dark); }
.appt-card .appt-time { font-size: 0.8rem; color: var(--muted); }
.appt-card .appt-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-top: auto;
  padding-top: 1rem;
}

/* CTA — green */
.charges-cta {
  background: var(--green);
  color: var(--dark);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.charges-cta h2           { color: var(--dark); margin-bottom: 1rem; }
.charges-cta .section-label { color: var(--dark); }
.charges-cta p { margin-bottom: 2rem; max-width: 52ch; margin-inline: auto; color: rgba(0,0,0,0.7); }

/* ===================================================
   GLOW TREATMENT
   Each block has a bright zone (upper-right) and a deeper shadow (lower-left),
   giving the colour internal tonal variation.
   Adjust --glow-hi and --glow-lo in :root to tune intensity.
   =================================================== */
:is(.hero, .approach, .section-gallery, .section-reviews, .newsletter, .contact,
    .page-header, .bio-section, .charges-intro, .price-hero,
    .pricing-section, .typical-section, .charges-cta) {
  position: relative;
  isolation: isolate;
}
:is(.hero, .approach, .section-gallery, .section-reviews, .newsletter, .contact,
    .page-header, .bio-section, .charges-intro, .price-hero,
    .pricing-section, .typical-section, .charges-cta)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 85% 70% at 75% 18%, rgba(255 255 255 / var(--glow-hi)) 0%, transparent 100%),
    radial-gradient(ellipse 40% 30% at 28% 12%, rgba(255 255 255 / 0.14) 0%, transparent 100%),
    radial-gradient(ellipse 60% 75% at 8% 92%,  rgba(0 0 0 / var(--glow-lo)) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ===================================================
   SECTION COLOUR BLENDING
   The top of each coloured section fades in from the
   preceding section's colour, softening the hard edge.
   All sit at z-index:-1 (above glow, below content).
   =================================================== */
.approach::after,
.section-gallery::after,
.section-reviews::after,
.newsletter::after,
.contact::after,
.bio-section::after,
.charges-intro::after,
.price-hero::after,
.pricing-section::after,
.typical-section::after,
.charges-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: -1;
}

/* index: yellow→red→dark→pink→green→dark */
.approach::after        { background: linear-gradient(to bottom, rgba(255,133,0,  0.38), transparent); }
.section-gallery::after { background: linear-gradient(to bottom, rgba(232,24,13,  0.38), transparent); }
.section-reviews::after { background: linear-gradient(to bottom, rgba(17,17,17,   0.50), transparent); }
.newsletter::after      { background: linear-gradient(to bottom, rgba(200,0,90,   0.38), transparent); }
.contact::after         { background: linear-gradient(to bottom, rgba(0,179,65,   0.50), transparent); }

/* about: blue→yellow→green */
.bio-section:nth-of-type(odd)::after  { background: linear-gradient(to bottom, rgba(0,151,167,  0.38), transparent); }
.bio-section:nth-of-type(even)::after { background: linear-gradient(to bottom, rgba(255,133,0,  0.38), transparent); }

/* charges: blue→yellow→dark→violet→cyan→green */
.charges-intro::after   { background: linear-gradient(to bottom, rgba(0,151,167,  0.38), transparent); }
.price-hero::after      { background: linear-gradient(to bottom, rgba(255,133,0,  0.38), transparent); }
.pricing-section::after { background: linear-gradient(to bottom, rgba(17,17,17,   0.50), transparent); }
.typical-section::after { background: linear-gradient(to bottom, rgba(107,33,168, 0.38), transparent); }
.charges-cta::after     { background: linear-gradient(to bottom, rgba(0,196,204,  0.38), transparent); }

/* ===================================================
   ABOUT: GREEN BIO SECTION — ALTERNATE GLOW DIRECTION
   Flips highlight to lower-left, shadow to upper-right
   so it reads distinctly from the yellow section above.
   =================================================== */
.bio-section:nth-of-type(even)::before {
  background-image:
    radial-gradient(ellipse 85% 70% at 25% 82%, rgba(255 255 255 / var(--glow-hi)) 0%, transparent 100%),
    radial-gradient(ellipse 40% 30% at 72% 88%, rgba(255 255 255 / 0.14) 0%, transparent 100%),
    radial-gradient(ellipse 60% 75% at 92% 8%,  rgba(0 0 0 / var(--glow-lo)) 0%, transparent 65%);
}

/* ===================================================
   MOBILE OVERRIDES  (max-width: 767px)
   =================================================== */
@media (max-width: 767px) {

  /* --- Nav --- */
  .nav-menu .btn { width: 100%; justify-content: center; }
  .footer-links a { min-height: 44px; padding-inline: 0.35rem; }

  /* --- Vertical rhythm ---
     Default section clamp = 72px each side at 375px. Cut to 48px. */
  section          { padding: 3rem 0; }
  .bio-section     { padding: 2.5rem 0; }
  .section-gallery { padding: 2rem 0; }
  .hero            { padding: 2.5rem 0 2rem; }
  .price-hero      { padding: 2rem 0; }
  .charges-cta     { padding: 2.5rem 0; }

  /* --- Hero --- */
  .hero-inner      { gap: 2rem; }

  /* --- Inner page headers --- */
  .page-header     { padding: 2.5rem 0 2rem; }
  .page-header h1  { font-size: clamp(1.8rem, 8vw, 3.5rem); }

  /* --- Section labels + dividers --- */
  .section-label   { font-size: 1.1rem; }
  .divider         { margin: 0.5rem 0 1.25rem; }

  /* --- Bio portraits: aspect-ratio matches natural 700×981 proportions --- */
  .bio-image img {
    aspect-ratio: 3 / 4;
    width: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* --- Pull-quotes and callouts --- */
  .pull-quote       { margin: 1.5rem 0; padding: 1.25rem; }
  .gender-callout   { padding: 1.25rem; }

  /* --- Body copy spacing --- */
  .approach-body p  { margin-bottom: 1.25rem; }
  .bio-content p    { margin-bottom: 1.25rem; }

  /* --- Contact: map 4:3 = ~447px tall → 16:9 = ~188px --- */
  .map-wrap         { aspect-ratio: 16 / 9; }
  .contact-grid     { gap: 2rem; margin-top: 1.5rem; }

  /* --- Gallery: 2-column portrait grid on mobile ---
     Inline style kept for ≥768px; overridden here for mobile.
     3rd image spans full width so no orphaned half-row. */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  .gallery-img { aspect-ratio: 3 / 4; }

  /* --- Charges: typical appointments --- */
  .typical-grid     { gap: 1rem; }

  /* --- Newsletter --- */
  .newsletter-inner { gap: 1.5rem; }

}
