/* =========================================================
   FRESH BARBER ACADEMY  —  shared stylesheet
   Palette pulled from the academy banner (cream / sand / espresso)
   ========================================================= */

:root {
  --cream:        #F4ECDE;      /* page background  */
  --cream-soft:   #FAF5EC;      /* lighter cream    */
  --sand:         #E2D2B4;      /* mid sand band    */
  --sand-deep:    #C9A876;      /* gold-ish accent  */
  --espresso:     #1B1612;      /* near-black brown */
  --coffee:       #2B2520;      /* body dark        */
  --mocha:        #5A4D3D;      /* muted brown      */
  --muted:        #6F6457;
  --line:         rgba(27,22,18,0.12);
  --line-soft:    rgba(27,22,18,0.06);
  --white:        #FFFFFF;
  --whatsapp:     #25D366;

  --radius-sm:    6px;
  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 22px 48px -28px rgba(27,22,18,0.35);
  --shadow-lg:    0 40px 80px -40px rgba(27,22,18,0.55);

  --max:          1240px;
  --gutter:       clamp(20px, 4vw, 56px);

  --serif:        "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:         "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--coffee);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--coffee);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
a:hover { color: var(--sand-deep); }

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 .4em;
  letter-spacing: -.01em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.4rem, 6.4vw, 5.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.2rem; font-family: var(--sans); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

p { margin: 0 0 1em; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--mocha);
  max-width: 60ch;
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sand-deep);
}

.italic-script {
  font-family: var(--serif);
  font-style: italic;
  color: var(--mocha);
}

/* ---------- Layout helpers ---------- */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
}

.section--tight   { padding: clamp(56px, 7vw, 96px) 0; }
.section--cream   { background: var(--cream); }
.section--soft    { background: var(--cream-soft); }
.section--sand    { background: var(--sand); }
.section--dark    { background: var(--espresso); color: #EFE3CB; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #FAF5EC; }
.section--dark .lead { color: rgba(250,245,236,0.78); }
.section--dark .eyebrow { color: var(--sand-deep); }
.section--dark .eyebrow::before { background: var(--sand-deep); }

.grid       { display: grid; gap: clamp(20px, 3vw, 36px); }
.grid--2    { grid-template-columns: repeat(2, 1fr); }
.grid--3    { grid-template-columns: repeat(3, 1fr); }
.grid--4    { grid-template-columns: repeat(4, 1fr); }
.grid--split{ grid-template-columns: 1.05fr .95fr; align-items: center; }

@media (max-width: 980px) {
  .grid--2, .grid--3, .grid--4, .grid--split { grid-template-columns: 1fr; }
}

.center      { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lead    { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid var(--espresso);
  color: var(--espresso);
  background: var(--sand-deep);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover {
  background: var(--espresso);
  color: var(--cream-soft);
  border-color: var(--sand-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--espresso);
}
.btn--ghost:hover {
  background: var(--espresso);
  color: var(--cream-soft);
}

.btn--ghost2 {
  background: transparent;
  color: white;
  border-color: white;
}
.btn--ghost2:hover {
  background: var(--espresso);
  color: var(--cream-soft);
}

.btn--light {
  background: var(--cream-soft);
  color: var(--espresso);
  border-color: var(--cream-soft);
}
.btn--light:hover {
  background: var(--sand-deep);
  border-color: var(--sand-deep);
  color: var(--espresso);
}

.btn--whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #073A1F;
}
.btn--whatsapp:hover {
  background: #1FBC5A;
  border-color: #1FBC5A;
  color: #073A1F;
}

.btn--lg { padding: 20px 38px; font-size: .98rem; }

.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Header / Nav ---------- */

.topbar {
  background: var(--espresso);
  color: rgba(250,245,236,0.78);
  font-size: .82rem;
  letter-spacing: .04em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(250,245,236,0.78); }
.topbar a:hover { color: var(--sand-deep); }
.topbar__meta { display: flex; gap: 22px; flex-wrap: wrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(244,236,222,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .18em;
  color: var(--espresso);
  text-transform: uppercase;
  line-height: 1;
}
.brand__mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}
.brand__text { display: flex; flex-direction: column; gap: 3px; }
.brand__text strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .22em;
  color: var(--espresso);
}
.brand__text small {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--mocha);
  text-transform: uppercase;
}
/* dark headers / footer use light brand */
.site-footer .brand__text strong,
.section--dark .brand__text strong { color: var(--cream-soft); }
.site-footer .brand__text small,
.section--dark .brand__text small { color: rgba(250,245,236,0.6); }
.site-footer .brand__mark img,
.section--dark .brand__mark img { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }

.nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 32px);
  align-items: center;
}
.nav a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--coffee);
  position: relative;
  padding: 8px 0;
}
.nav a.is-active,
.nav a:hover { color: var(--espresso); }
.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--sand-deep);
}
.nav__dropdown {
  position: relative;
}
.nav__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  box-shadow: var(--shadow);
}
.nav__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .9rem;
  letter-spacing: 0;
}
.nav__menu a::after { display: none; }
.nav__menu a:hover { background: var(--sand); }
.nav__dropdown:hover .nav__menu,
.nav__dropdown:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-cta {
  margin-left: 14px;
  padding: 18px 42px;
  font-size: .95rem;
  letter-spacing: .08em;
}


.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--espresso);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

@media (max-width: 980px) {
  /* Prevent any accidental horizontal scroll on mobile/tablet */
  html, body { overflow-x: clip; max-width: 100%; }

  /* Hide topbar at the same breakpoint the mobile nav kicks in,
     so the fixed nav has a predictable top offset (header = 84px). */
  .topbar { display: none; }

  /* The .site-header uses backdrop-filter which would create a
     containing block for fixed-positioned descendants — disable it
     on mobile so the nav is positioned against the viewport. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream);
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 110;
  }

  /* Animate hamburger -> X when nav is open */
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    transition: transform .25s ease, top .25s ease, background .15s ease;
  }

  /* Mobile nav — hidden completely when closed (no overflow possible),
     full-screen overlay when open. */
  .nav {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 24px var(--gutter) 80px;
    gap: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
    -webkit-overflow-scrolling: touch;
    animation: navFadeIn .2s ease both;
  }
  .nav.is-open { display: flex; }

  @keyframes navFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav a {
    padding: 16px 4px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav a.is-active::after,
  .nav a:hover::after { display: none; }

  /* Dropdown becomes an inline expandable section on mobile */
  .nav__dropdown {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__dropdown > a {
    border-bottom: 0;
  }
  .nav__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0 0 8px 16px;
    min-width: 0;
  }
  .nav__menu a {
    padding: 10px 4px;
    font-size: 1rem;
    border-bottom: 0;
    color: var(--mocha);
  }

  .nav-cta {
    margin: 18px 0 0;
    align-self: stretch;
    text-align: center;
    justify-content: center;
    width: auto !important;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--cream);
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero__band {
  position: absolute;
  inset: auto 0 -40px;
  height: 220px;
  background: var(--sand);
  z-index: 0;
  transform: skewY(-2deg);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
}
.hero h1 .accent {
  display: inline;
  font-style: italic;
  color: var(--sand-deep);
  font-weight: 400;
}
.hero__meta {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__meta div { min-width: 120px; }
.hero__meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--espresso);
  line-height: 1;
}
.hero__meta span {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mocha);
}

/* ---- Hero affirmations strip (icon + label trust signals) ---- */
.hero__meta--affirm {
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.hero__affirm {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.hero__affirm i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 118, 0.16);
  color: var(--sand-deep);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
}
.hero__affirm:hover i {
  background: rgba(201, 168, 118, 0.28);
  transform: translateY(-1px);
}
.hero__affirm span {
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--espresso);
  line-height: 1.25;
}
/* Dark hero variant — invert label colour for legibility on the photo */
.hero--bg .hero__affirm span { color: var(--cream-soft); }
.hero--bg .hero__affirm i {
  background: rgba(250, 245, 236, 0.12);
  color: var(--sand-deep);
}

@media (max-width: 720px) {
  .hero__meta--affirm {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .hero__affirm span { font-size: .95rem; }
  .hero__affirm i { width: 40px; height: 40px; font-size: 1rem; }
}

.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--espresso);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  left: -24px;
  bottom: 28px;
  background: var(--cream-soft);
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--espresso);
  box-shadow: var(--shadow);
}
@media (max-width: 600px) { .hero__badge { left: 0; } }

/* ---------- Marquee ---------- */

.marquee {
  background: var(--espresso);
  color: var(--cream-soft);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: .04em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::after {
  content: "✦";
  color: var(--sand-deep);
  margin-left: 60px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- USP / feature cards ---------- */

.usp {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.usp:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sand-deep);
}
.usp__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sand-deep);
  margin-bottom: 16px;
  letter-spacing: .08em;
}
.usp h3 { margin-bottom: 12px; }
.usp p  { color: var(--mocha); margin: 0; }

/* ---------- Program cards ---------- */

.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.program {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.program:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.program--featured {
  background: var(--espresso);
  color: #EFE3CB;
  border-color: var(--espresso);
}
.program--featured h3,
.program--featured .program__price { color: var(--cream-soft); }
.program--featured .program__meta li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); }
.program--featured .btn { background: var(--sand-deep); border-color: var(--sand-deep); color: var(--espresso); }
.program--featured .btn:hover { background: var(--cream-soft); border-color: var(--cream-soft); }

.program__flag {
  position: absolute;
  top: 22px;
  right: -36px;
  background: var(--sand-deep);
  color: var(--espresso);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 44px;
  transform: rotate(35deg);
}

.program__price {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--espresso);
  line-height: 1;
  margin-top: 4px;
}
.program__price small {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mocha);
  display: block;
  margin-top: 6px;
}
.program__meta {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
}
.program__meta li {
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: .92rem;
  color: var(--mocha);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.program__meta li:last-child { border-bottom: 1px solid var(--line-soft); }
.program__meta li strong { color: var(--coffee); font-weight: 600; }
.program .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Section labels ---------- */

.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head h2 { max-width: 22ch; }
.section-head.center h2 { margin-left: auto; margin-right: auto; }

/* ---------- About / split layouts ---------- */

.split-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--espresso);
  box-shadow: var(--shadow);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img--wide { aspect-ratio: 4 / 3; }

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist li {
  padding: 14px 0 14px 38px;
  position: relative;
  border-top: 1px solid var(--line-soft);
  color: var(--coffee);
}
.checklist li:last-child { border-bottom: 1px solid var(--line-soft); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-deep);
  color: var(--espresso);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
}
.section--dark .checklist li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.86); }

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}
.stats div {
  text-align: center;
  padding: 24px 8px;
}
.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--sand-deep);
  line-height: 1;
}
.stats span {
  display: block;
  margin-top: 10px;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.quote {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.quote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--sand-deep);
  line-height: .7;
  position: absolute;
  top: 24px;
  right: 28px;
  opacity: .6;
}
.quote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--espresso);
  margin: 0 0 20px;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: var(--mocha);
}
.quote footer strong {
  color: var(--coffee);
  display: block;
  font-family: var(--sans);
  font-weight: 600;
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--espresso);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery a:hover img { transform: scale(1.05); }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--espresso);
  color: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { color: var(--cream-soft); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.78); margin: 0; }
@media (max-width: 900px) { .cta-band { grid-template-columns: 1fr; text-align: left; } }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--espresso);
  color: rgba(250,245,236,0.78);
  padding: 80px 0 30px;
}
.site-footer h4 {
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(250,245,236,0.78); }
.site-footer a:hover { color: var(--sand-deep); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand .brand { color: var(--cream-soft); }
.footer__brand p { margin: 18px 0 0; max-width: 38ch; color: rgba(250,245,236,0.7); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 10px; font-size: .92rem; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .82rem;
  color: rgba(250,245,236,0.55);
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.socials a:hover { background: var(--sand-deep); color: var(--espresso); border-color: var(--sand-deep); }

/* ---------- Page hero (sub pages) ---------- */

.page-hero {
  background: var(--espresso);
  color: var(--cream-soft);
  padding: clamp(110px, 14vw, 200px) 0 clamp(70px, 9vw, 130px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 32px;
  background: var(--sand);
}
.page-hero h1 { color: var(--cream-soft); }
.page-hero .eyebrow { color: var(--sand-deep); }
.page-hero .eyebrow::before { background: var(--sand-deep); }
.page-hero p { color: rgba(250,245,236,0.78); max-width: 60ch; margin: 0; }

.breadcrumb {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250,245,236,0.55);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(250,245,236,0.7); }
.breadcrumb a:hover { color: var(--sand-deep); }
.breadcrumb span { margin: 0 10px; opacity: .6; }

/* ---------- Forms ---------- */

.form {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-soft);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--coffee);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--sand-deep);
  box-shadow: 0 0 0 4px rgba(201,168,118,0.18);
}
.field textarea { resize: vertical; min-height: 140px; }

.form__note {
  font-size: .82rem;
  color: var(--mocha);
  margin: 0 0 16px;
}

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--mocha);
}
.checkbox input { margin-top: 3px; }

/* ---------- FAQ ---------- */

.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq details {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 14px;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow); border-color: var(--sand-deep); }
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--espresso);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--sand-deep);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin: 14px 0 0;
  color: var(--mocha);
  line-height: 1.7;
}

/* ---------- Contact info cards ---------- */

.info-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-card h4 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 12px;
}
.info-card p, .info-card a {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--espresso);
  line-height: 1.35;
}
.info-card small {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--mocha);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  aspect-ratio: 16 / 9;
  background: var(--sand);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- WhatsApp floating button ---------- */

.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -10px rgba(37,211,102,0.6);
  transition: transform .25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Misc helpers ---------- */

.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0 !important; }
.tag {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--sand);
  color: var(--espresso);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* small reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* preserve template-style images full-bleed */
.bleed-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bleed-img img { width: 100%; height: auto; display: block; }

/* selection */
::selection { background: var(--sand-deep); color: var(--espresso); }

/* ========================================================
   v2.0 — Photo-backed sections, full-bleed hero, parallax,
   decorative watermarks, richer page heroes.
   ======================================================== */

/* ---------- Full-bleed photo hero (home) ---------- */
.hero--bg {
  position: relative;
  min-height: clamp(640px, 92vh, 880px);
  padding: 0;
  background: var(--espresso);
  color: var(--cream-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero--bg .hero__band { display: none; }
.hero--bg .hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}
.hero--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,8,0.55) 0%, rgba(15,11,8,0.55) 40%, rgba(15,11,8,0.85) 100%),
    radial-gradient(circle at 80% 20%, rgba(201,168,118,0.18) 0%, transparent 55%);
  z-index: 1;
}
.hero--bg .wrap { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 120px; }
.hero--bg .eyebrow { color: var(--sand-deep); }
.hero--bg .eyebrow::before { background: var(--sand-deep); }
.hero--bg h1 { color: var(--cream-soft); max-width: 18ch; }
.hero--bg h1 .accent { color: var(--sand-deep); }
.hero--bg .lead { color: rgba(250,245,236,0.85); max-width: 56ch; }
.hero--bg .hero__meta { border-top-color: rgba(255,255,255,0.18); }
.hero--bg .hero__meta strong { color: var(--cream-soft); }
.hero--bg .hero__meta span { color: rgba(250,245,236,0.6); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(250,245,236,0.7);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--sand-deep), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%      { opacity: 1;  transform: scaleY(1); }
}

/* ---------- Page hero with photo background (sub pages) ---------- */
.page-hero--bg {
  background: var(--espresso);
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 18vw, 230px) 0 clamp(90px, 12vw, 150px);
}
.page-hero--bg .page-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05);
}
.page-hero--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,8,0.65), rgba(15,11,8,0.85)),
    radial-gradient(circle at 85% 30%, rgba(201,168,118,0.15) 0%, transparent 55%);
  z-index: 1;
}
.page-hero--bg .wrap { position: relative; z-index: 2; }
.page-hero--bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--cream));
  z-index: 2;
}

/* ---------- Page hero with photo background (sub pages) ---------- */
.page-hero--bg2 {
  background: var(--espresso);
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 18vw, 230px) 0 clamp(90px, 12vw, 150px);
}
.page-hero--bg2 .page-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05);
}
.page-hero--bg2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,8,0.65), rgba(15,11,8,0.85)),
    radial-gradient(circle at 85% 30%, rgba(201,168,118,0.15) 0%, transparent 55%);
  z-index: 1;
}
.page-hero--bg2 .wrap { position: relative; z-index: 2; }
.page-hero--bg2::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0px;
  background: linear-gradient(180deg, transparent, var(--cream));
  z-index: 2;
}

/* ---------- Photo-backed section (parallax) ---------- */
.section--photo {
  position: relative;
  background-color: var(--espresso);
  color: var(--cream-soft);
  overflow: hidden;
}
.section--photo .section__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,11,8,0.78), rgba(15,11,8,0.92));
  z-index: 1;
}
.section--photo .wrap { position: relative; z-index: 2; }
.section--photo h2,
.section--photo h3 { color: var(--cream-soft); }
.section--photo .lead { color: rgba(250,245,236,0.82); }
.section--photo .eyebrow { color: var(--sand-deep); }
.section--photo .eyebrow::before { background: var(--sand-deep); }
.section--photo .stats strong { color: var(--sand-deep); }
.section--photo .checklist li { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.86); }

/* Disable fixed attachment on mobile for performance */
@media (max-width: 900px) {
  .section--photo .section__photo { background-attachment: scroll; }
}

/* ---------- Decorative brand watermark ---------- */
.brand-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 1;
  filter: brightness(2);
}
.brand-watermark--right { right: -60px; top: 50%; transform: translateY(-50%); width: 460px; }
.brand-watermark--left  { left: -80px; bottom: -40px; width: 380px; }

/* ---------- v2 USP — number-led cards with hover lift ---------- */
.usp--v2 {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.usp--v2::before {
  content: attr(data-num);
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  color: var(--sand);
  opacity: .45;
  pointer-events: none;
  transition: color .3s ease, opacity .3s ease;
}
.usp--v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sand-deep);
}
.usp--v2:hover::before { color: var(--sand-deep); opacity: .55; }
.usp--v2 h3 { position: relative; z-index: 2; }
.usp--v2 p  { position: relative; z-index: 2; color: var(--mocha); margin: 0; }
.usp--v2__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--espresso);
  color: var(--sand-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

/* ---------- v2 Program card with photo ---------- */
.program--photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--espresso);
  color: var(--cream-soft);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
}
.program--photo .program__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
  z-index: 0;
}
.program--photo:hover .program__bg { transform: scale(1.06); }
.program--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,11,8,0.15) 0%, rgba(15,11,8,0.7) 55%, rgba(15,11,8,0.95) 100%);
  z-index: 1;
}
.program--photo > * { position: relative; z-index: 2; }
.program--photo h3 { color: var(--cream-soft); font-size: 1.8rem; padding: 0 32px; }
.program--photo .program__price {
  color: var(--cream-soft);
  font-size: 2rem;
  padding: 0 32px;
}
.program--photo .program__price small { color: rgba(250,245,236,0.65); }
.program--photo .program__meta { padding: 0 32px; }
.program--photo .program__meta li {
  border-color: rgba(255,255,255,0.12);
  color: rgba(250,245,236,0.78);
}
.program--photo .program__meta li strong { color: var(--cream-soft); }
.program--photo .program__bottom {
  padding: 0 32px 32px;
}
.program--photo .btn {
  background: var(--sand-deep);
  border-color: var(--sand-deep);
  color: var(--espresso);
}
.program--photo .btn:hover {
  background: var(--cream-soft);
  border-color: var(--cream-soft);
  color: var(--espresso);
}

/* ---------- v2 CTA band with photo ---------- */
.cta-band--photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--espresso);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: grid;
  align-items: center;
}
.cta-band--photo .cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  filter: grayscale(0.4);
}
.cta-band--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,11,8,0.85) 0%, rgba(15,11,8,0.55) 100%);
}
.cta-band--photo .cta__inner {
  position: relative;
  z-index: 2;
  align-items: center;
  padding: clamp(48px, 6vw, 80px);
}
.cta-band--photo h2 { color: var(--cream-soft); }
.cta-band--photo p  { color: rgba(255,255,255,0.82); margin: 0; }
@media (max-width: 900px) { .cta-band--photo .cta__inner { grid-template-columns: 1fr; text-align: left; } }

/* ---------- Hero badge restyled ---------- */
.hero__badge {
  background: rgba(244,236,222,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ---------- Big italic section numbers ---------- */
.section-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: .9;
  color: var(--sand-deep);
  opacity: .9;
  margin-bottom: 18px;
  display: block;
}

/* ---------- Split-img with corner badge ---------- */
.split-img__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--cream-soft);
  color: var(--espresso);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  z-index: 2;
  box-shadow: var(--shadow);
}

/* ---------- Gallery upgrade ---------- */
.gallery--v2 a { position: relative; }
.gallery--v2 a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,11,8,0.7));
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
}
.gallery--v2 a:hover::after { opacity: 1; }
.gallery--v2 a span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: var(--cream-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  z-index: 2;
}
.gallery--v2 a:hover span { opacity: 1; transform: translateY(0); }

/* ---------- Section divider rule ---------- */
.divider-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
}
.divider-rule::before,
.divider-rule::after {
  content: "";
  height: 1px;
  background: var(--sand-deep);
  flex: 1;
  opacity: .5;
}
.divider-rule span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sand-deep);
  font-size: 1.1rem;
}

/* ---------- Featured price box ---------- */
.price-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--sand-deep), transparent 60%);
  opacity: 0;
  z-index: -1;
  transition: opacity .3s ease;
}

/* ---------- Subtle frame for split images ---------- */
.split-img--framed {
  position: relative;
  padding: 14px;
  background: var(--cream-soft);
  border-radius: calc(var(--radius-lg) + 14px);
  box-shadow: var(--shadow);
}
.split-img--framed img { border-radius: var(--radius-lg); }
.split-img--framed::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sand-deep);
  border-radius: calc(var(--radius-lg) + 14px);
  top: 18px;
  left: 18px;
  z-index: -1;
  opacity: .8;
}

/* ---------- Stats with vertical dividers ---------- */
.stats--v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}
.stats--v2 div {
  text-align: center;
  padding: 32px 16px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stats--v2 div:first-child { border-left: 0; }
@media (max-width: 720px) {
  .stats--v2 div { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .stats--v2 div:first-child { border-top: 0; }
}

/* ---------- Site header tweak: bigger shadow on scroll could go here, base now ---------- */
.site-header { transition: box-shadow .3s ease, background .3s ease; }
.site-header.is-scrolled {
  background: rgba(244,236,222,0.98);
  box-shadow: 0 12px 28px -22px rgba(0,0,0,0.25);
}

/* ---------- Reveal animation variants ---------- */
.reveal-up   { transform: translateY(32px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right{ transform: translateX(32px); }
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible { transform: none; }

/* ---------- Hero on smaller viewport ---------- */
@media (max-width: 820px) {
  .hero--bg { min-height: 100vh; }
  .hero--bg .wrap { padding-top: 100px; padding-bottom: 100px; }
  .brand__mark { width: 42px; height: 42px; flex-basis: 80px; }
  .brand__text strong { font-size: 1rem; letter-spacing: .18em; }
}

.barber-school-teachers-section {
      background-color: #f5f5f5;
      padding: 80px 40px 120px;
      position: relative;
      overflow: hidden;
    }

    .barber-school-teachers-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 80px;
    }

    .barber-school-title-column {
      flex: 1;
      min-width: 0;
    }

.barber-school-title-main {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 0.9;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 10px;
}

    .barber-school-title-subtitle {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
      line-height: 0.9;
      font-weight: 700;
      color: #1a1a1a;
      text-transform: uppercase;
    }

    .barber-school-content-column {
      flex: 1;
      min-width: 0;
    }

    .barber-school-content-column p {
      font-size: 1.1rem;
      line-height: 1.65;
      color: #333;
    }

    /* Decorative brush stroke */
    .barber-school-teachers-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 45%;
      height: 120px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
      clip-path: polygon(0 100%, 100% 60%, 100% 100%, 0 100%);
      opacity: 0.85;
      z-index: 1;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .barber-school-teachers-wrapper {
        gap: 50px;
      }
    }

    @media (max-width: 768px) {
      .barber-school-teachers-section {
        padding: 60px 20px 100px;
      }
      
      .barber-school-teachers-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
      }
    }

    @media (max-width: 480px) {
      .barber-school-teachers-section {
        padding: 50px 15px 90px;
      }
    }

/* =========================================================
   FULL-WIDTH / FULL-BLEED LAYOUTS
   ========================================================= */

/* Flush helpers — remove section padding to let bands butt together */
.section--flush         { padding-top: 0; padding-bottom: 0; }
.section--flush-top     { padding-top: 0; }
.section--flush-bottom  { padding-bottom: 0; }

/* Full-bleed: breaks out of any centered container to span 100vw */
.fullbleed {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ---------- USP band: 3 cards spanning the full viewport ---------- */
.usp-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}
.usp-cell {
  position: relative;
  padding: clamp(48px, 6vw, 96px) clamp(28px, 4vw, 64px);
  background: var(--cream-soft);
  border-right: 1px solid var(--line-soft);
  overflow: hidden;
  transition: background .35s ease, transform .35s ease;
}
.usp-cell:last-child { border-right: 0; }
.usp-band .usp-cell:nth-child(even) { background: var(--cream); }
.usp-cell:hover { background: var(--sand); }
.usp-cell::before {
  content: attr(data-num);
  position: absolute;
  top: 18px;
  right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4.5rem, 7vw, 7rem);
  line-height: 1;
  color: var(--sand-deep);
  opacity: .35;
  pointer-events: none;
  transition: opacity .3s ease, color .3s ease;
}
.usp-cell:hover::before { opacity: .55; }
.usp-cell .usp--v2__icon { margin-bottom: 22px; position: relative; z-index: 2; }
.usp-cell h3 { position: relative; z-index: 2; margin-bottom: .6em; }
.usp-cell p  { position: relative; z-index: 2; color: var(--mocha); margin: 0; max-width: 42ch; }

@media (max-width: 980px) {
  .usp-band { grid-template-columns: 1fr; }
  .usp-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .usp-cell:last-child { border-bottom: 0; }
}

/* ---------- Full-bleed 50/50 split (image one side, text other) ---------- */
.split-fullbleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.split-fullbleed__media {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  min-height: clamp(420px, 60vw, 720px);
}
.split-fullbleed__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-fullbleed__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 120px) clamp(28px, 6vw, 110px);
  background: var(--cream);
}
.split-fullbleed--reverse .split-fullbleed__media   { order: 2; }
.split-fullbleed--reverse .split-fullbleed__content { order: 1; background: var(--cream-soft); }

/* Dark variant — high contrast panel beside the photo */
.split-fullbleed--dark .split-fullbleed__content {
  background: var(--espresso);
  color: rgba(250,245,236,0.86);
}
.split-fullbleed--dark .split-fullbleed__content h1,
.split-fullbleed--dark .split-fullbleed__content h2,
.split-fullbleed--dark .split-fullbleed__content h3 { color: var(--cream-soft); }
.split-fullbleed--dark .split-fullbleed__content .lead    { color: rgba(250,245,236,0.82); }
.split-fullbleed--dark .split-fullbleed__content .eyebrow { color: var(--sand-deep); }
.split-fullbleed--dark .split-fullbleed__content .eyebrow::before { background: var(--sand-deep); }
.split-fullbleed--dark .split-fullbleed__content .checklist li {
  border-color: rgba(255,255,255,0.10);
  color: rgba(250,245,236,0.88);
}
.split-fullbleed--dark .split-fullbleed__content .checklist li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.split-fullbleed--dark .split-fullbleed__content .checklist li strong { color: var(--cream-soft); }
.split-fullbleed--dark .split-fullbleed__content .btn {
  background: var(--sand-deep);
  border-color: var(--sand-deep);
  color: var(--espresso);
}
.split-fullbleed--dark .split-fullbleed__content .btn:hover {
  background: var(--cream-soft);
  border-color: var(--cream-soft);
  color: var(--espresso);
}

@media (max-width: 980px) {
  .split-fullbleed { grid-template-columns: 1fr; }
  .split-fullbleed__media { min-height: 320px; order: 0 !important; }
  .split-fullbleed__content { order: 0 !important; }
}

/* ---------- Full-width programs grid ---------- */
.programs--full {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}
.programs--full .program {
  border-radius: 0;
  border: 0;
  min-height: 520px;
}
.programs--full .program--photo { border-right: 1px solid rgba(255,255,255,0.06); }
.programs--full .program--photo:last-child { border-right: 0; }
.programs--full .program:hover { transform: none; }
.programs--full .program--photo:hover .program__bg { transform: scale(1.08); }

@media (max-width: 1180px) {
  .programs--full { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .programs--full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .programs--full { grid-template-columns: 1fr; }
}

/* ---------- Section-head padding when used outside .wrap ---------- */
.section-head--padded {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FAQ inline (used inside split-fullbleed panel) ---------- */
.faq--inline { max-width: none; margin: 0; }
.faq--inline details {
  padding: 16px 22px;
  margin-bottom: 10px;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.faq--inline summary {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.35;
}
.faq--inline summary::after { font-size: 1.3rem; }
.faq--inline p { font-size: .95rem; margin-top: 10px; }

/* When inside the dark split variant — adjust palette */
.split-fullbleed--dark .faq--inline details {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}
.split-fullbleed--dark .faq--inline summary { color: var(--cream-soft); }
.split-fullbleed--dark .faq--inline summary::after { color: var(--sand-deep); }
.split-fullbleed--dark .faq--inline p { color: rgba(250,245,236,0.78); }

/* ---------- Values band — full-width "Vakmanschap" relocation ---------- */
.values-band {
  background: var(--sand);
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
}
.values-band__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 var(--gutter);
}
.values-band__head .eyebrow { justify-content: center; }
.values-band__head .lead { margin-left: auto; margin-right: auto; }
.values-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}
.values-band__item {
  text-align: center;
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2.4vw, 36px);
  border-right: 1px solid rgba(27,22,18,0.12);
  position: relative;
}
.values-band__item:last-child { border-right: 0; }
.values-band__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--sand-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}
.values-band__item h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  margin-bottom: 6px;
}
.values-band__item p {
  color: var(--coffee);
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.values-band__cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
  padding: 0 var(--gutter);
}

@media (max-width: 980px) {
  .values-band__grid { grid-template-columns: repeat(2, 1fr); }
  .values-band__item { border-bottom: 1px solid rgba(27,22,18,0.12); }
  .values-band__item:nth-child(2) { border-right: 0; }
  .values-band__item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .values-band__grid { grid-template-columns: 1fr; }
  .values-band__item { border-right: 0; border-bottom: 1px solid rgba(27,22,18,0.12); }
  .values-band__item:last-child { border-bottom: 0; }
}

/* =========================================================
   PROGRAMS EXPLORER — sidebar tabs + active detail panel
   ========================================================= */
.programs-explorer {
  display: grid;
  grid-template-columns: minmax(300px, 34%) 1fr;
  gap: 0;
  width: 100%;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.programs-explorer__list {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-right: 1px solid var(--line-soft);
}

/* ---- Sidebar tab card ---- */
.program-tab {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(24px, 2.8vw, 40px) clamp(60px, 6vw, 84px) clamp(24px, 2.8vw, 40px) clamp(24px, 3vw, 48px);
  cursor: pointer;
  color: var(--coffee);
  font-family: inherit;
  transition: background .25s ease, padding-left .25s ease;
  flex: 1;
}
.program-tab:last-child { border-bottom: 0; }
.program-tab:hover { background: var(--cream-soft); }
.program-tab:focus-visible {
  outline: 2px solid var(--sand-deep);
  outline-offset: -2px;
}
.program-tab.is-active {
  background: var(--cream-soft);
  padding-left: calc(clamp(24px, 3vw, 48px) + 6px);
}
.program-tab.is-active::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--sand-deep);
}

/* Right-arrow indicator — signals each tab is clickable */
.program-tab::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: clamp(20px, 2.5vw, 32px);
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--mocha);
  opacity: .32;
  line-height: 1;
  transition: opacity .25s ease, transform .3s ease, color .25s ease;
  pointer-events: none;
}
.program-tab:hover::after {
  opacity: .85;
  color: var(--sand-deep);
  transform: translate(6px, -50%);
}
.program-tab.is-active::after {
  opacity: 1;
  color: var(--espresso);
  background: var(--sand-deep);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px -10px rgba(27,22,18,0.5);
}

.program-tab__flag {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--sand-deep);
  color: var(--espresso);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.program-tab__title {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.9vw, 1.95rem);
  font-weight: 500;
  color: var(--espresso);
  display: block;
  margin: 0 0 8px;
  letter-spacing: -.01em;
  line-height: 1.1;
}

.program-tab__sub {
  display: block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 18px;
}

.program-tab__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.program-tab__rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  font-size: .92rem;
  color: var(--mocha);
}
.program-tab__rows li:last-child { border-bottom: 1px solid var(--line-soft); }
.program-tab__rows strong {
  color: var(--coffee);
  font-weight: 600;
}

/* ---- Detail panel (right side) ---- */
.programs-explorer__detail {
  position: relative;
  background: var(--espresso);
  color: var(--cream-soft);
  min-height: 720px;
  overflow: hidden;
}

.program-detail-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease;
  display: flex;
  flex-direction: column;
}
.program-detail-panel.is-active {
  opacity: 1;
  visibility: visible;
}

.program-detail-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 8s ease-out;
  filter: brightness(0.5) saturate(0.9);
}
.program-detail-panel.is-active .program-detail-panel__bg {
  transform: scale(1.08);
}
.program-detail-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,11,8,0.45) 0%,
    rgba(15,11,8,0.65) 35%,
    rgba(15,11,8,0.92) 100%);
  z-index: 1;
}

.program-detail-panel__inner {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: clamp(36px, 4.5vw, 80px);
}
.program-detail-panel__inner .eyebrow { color: var(--sand-deep); margin-bottom: 1rem; }
.program-detail-panel__inner .eyebrow::before { background: var(--sand-deep); }
.program-detail-panel h3 {
  color: var(--cream-soft);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 14px;
  line-height: 1.05;
}
.program-detail-panel .lead {
  color: rgba(250,245,236,0.86);
  max-width: 62ch;
  margin: 0;
}

.program-detail-panel__columns {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 3.2vw, 56px);
  margin-top: clamp(28px, 3.2vw, 44px);
}
.program-detail-panel__col h4 {
  color: var(--sand-deep);
  font-size: .78rem;
  margin: 0 0 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
}
.program-detail-panel__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.program-detail-panel__col li {
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(250,245,236,0.88);
  font-size: .93rem;
  line-height: 1.5;
}
.program-detail-panel__col li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.program-detail-panel__col li strong {
  color: var(--cream-soft);
  font-weight: 600;
  margin-right: 4px;
}

.program-detail-panel__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 3vw, 40px);
}
.program-detail-panel__cta .btn--outline {
  background: transparent;
  color: var(--cream-soft);
  border-color: rgba(255,255,255,0.45);
}
.program-detail-panel__cta .btn--outline:hover {
  background: var(--cream-soft);
  color: var(--espresso);
  border-color: var(--cream-soft);
}

/* Responsive ---- */
@media (max-width: 1100px) {
  .programs-explorer { grid-template-columns: minmax(280px, 38%) 1fr; }
}
@media (max-width: 980px) {
  .programs-explorer { grid-template-columns: 1fr; }
  .programs-explorer__list {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .programs-explorer__detail { min-height: 560px; position: relative; }
  .program-tab.is-active::before {
    top: auto; bottom: 0; left: 0; right: 0;
    width: auto; height: 4px;
  }
  .program-tab.is-active { padding-left: clamp(24px, 3vw, 48px); }
}
@media (max-width: 640px) {
  .program-detail-panel__columns { grid-template-columns: 1fr; gap: 24px; }
  .programs-explorer__detail { min-height: 720px; }
}

/* =========================================================
   MOBILE-ONLY OVERRIDES (phones, <= 768px)
   ========================================================= */

/* Mobile prev/next nav for programs explorer — hidden by default,
   shown only on mobile via the breakpoint below */
.programs-explorer__mobile-nav { display: none; }

@media (max-width: 768px) {

  /* ---- Hide top contact bar on mobile ---- */
  .topbar { display: none; }

  /* ---- Hero tweaks ---- */
  /* Hide the row of 5 opleiding labels under the hero buttons */
  .hero__meta { display: none; }

  /* Hide the "Direct aanmelden" secondary button */
  .hero .btn-row .btn--light { display: none; }

  /* Shrink the "Bekijk opleidingen" primary button */
  .hero .btn-row .btn--lg {
    padding: 13px 22px;
    font-size: .82rem;
    letter-spacing: .04em;
  }

  /* ---- "Jouw volgende stap" CTA buttons smaller ---- */
  .section--photo .btn--lg {
    padding: 12px 20px;
    font-size: .78rem;
    letter-spacing: .04em;
  }
  /* The inline margin-right: 20px on Aanmelden gets tightened */
  .section--photo .btn--lg[href*="aanmelden"] {
    margin-right: 8px !important;
    margin-bottom: 10px;
  }

  /* ---- Programs explorer: mobile carousel pattern ---- */
  /* Hide the full sidebar list of 5 tabs on mobile */
  .programs-explorer__list { display: none; }

  /* Force single column (mobile nav + active detail panel only) */
  .programs-explorer { grid-template-columns: 1fr; }
  .programs-explorer__detail { min-height: 620px; }

  /* Show the mobile prev/next nav */
  .programs-explorer__mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 16px;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .program-nav-arrow {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    border: 0;
    background: var(--sand-deep);
    color: var(--espresso);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px -12px rgba(27,22,18,0.5);
    transition: background .25s ease, color .25s ease, transform .15s ease;
  }
  .program-nav-arrow:hover {
    background: var(--espresso);
    color: var(--cream-soft);
  }
  .program-nav-arrow:active { transform: scale(0.92); }

  .program-nav-current {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 0 4px;
  }
  .program-nav-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--espresso);
    line-height: 1.15;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .program-nav-count {
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mocha);
    margin-top: 3px;
  }
}

/* =========================================================
   MOBILE-ONLY: SECTION REORDER + FAQ TWEAKS
   ========================================================= */

/* New CTA button under FAQ — hidden on desktop, shown on mobile */
.btn-onze-opleidingen { display: none; }
.btn-onze-opleidingen .btn-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}
.btn-onze-opleidingen .btn-stack strong {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.btn-onze-opleidingen .btn-stack small {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  opacity: .85;
  margin-top: 2px;
}

@media (max-width: 768px) {

  /* ---- FAQ: hide image, swap buttons ---- */
  #faq-home .split-fullbleed__media { display: none; }
  #faq-home .btn-meer-info          { display: none; }
  .btn-onze-opleidingen {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    text-transform: none;
    letter-spacing: 0;
  }

  /* ---- Reorder sections via flex on body ---- */
  body {
    display: flex;
    flex-direction: column;
  }
  /* header keeps default order 0 — stays at the top.
     Hidden elements (.topbar, .quote) retain order 0 but render nothing. */
  body > .hero                         { order: 1; }
  body > #faq-home                     { order: 2; }
  body > #opleidingen-overview         { order: 3; }
  body > #usp-band-section             { order: 4; }
  body > #baangarantie-stats           { order: 5; }
  body > #traject-inbegrepen-section   { order: 6; }
  body > #process-section              { order: 7; }
  body > #cta-stats                    { order: 8; }
  body > .site-footer                  { order: 9; }
}

.subtitleBox {
  margin-left: 20px;
  font-weight: 700;
  font-size: 20px;
}

/* =========================================================
   Mobile: full-width CTA buttons
   - Opleiding detail pages: Aanmelden + Vraag stellen row
   - Pre-footer "Jouw volgende stap" band: Aanmelden + Contact opnemen
   Desktop is untouched.
   ========================================================= */
@media (max-width: 720px) {

  /* 1) Opleiding detail page — the .btn-row right after .program__meta */
  .program__meta ~ .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .program__meta ~ .btn-row .btn {
    width: 100%;
    justify-content: center;
    margin: 0 !important;
  }

  /* 2) "Jouw volgende stap" pre-footer CTA on every page that has it */
  #cta-stats .btn {
    width: 100%;
    justify-content: center;
    margin: 0 0 12px 0 !important;
  }
  #cta-stats .btn:last-child {
    margin-bottom: 0 !important;
  }
}
