/* ============================================================
   SELECT ACADEMY — Barbering Academy
   Elegant & minimalist · black + brand red (matches logo)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --cream:      #f6f6f7;
  --cream-2:    #eeeeef;
  --paper:      #ffffff;
  --ink:        #16130f;
  --ink-2:      #2a261f;
  --muted:      #8a8276;
  --line:       #e4ddd0;
  --line-2:     #d6cdbd;

  --dark:       #16130f;
  --dark-2:     #1d1a14;
  --dark-soft:  #211d16;

  --red:       #FC2240;
  --red-2:     #FF4A60;
  --red-deep:  #C20E26;
  --red-tint:  #FDE7EA;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 6px;
  --radius-lg: 14px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible {
  outline: 2px solid var(--red-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  position: relative;
}
.section--soft { background: var(--cream-2); }
.section--dark {
  background: var(--dark);
  color: var(--cream);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: .75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography primitives ---------- */
.eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red-deep);
  display: inline-flex;
  align-items: center;
  gap: .8em;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.eyebrow--light { color: var(--red-2); }

.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section__title em {
  font-style: italic;
  color: var(--red-deep);
}
.section__title--light { color: var(--cream); }
.section__title--light em { color: var(--red-2); }

.section__head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__sub {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.section--dark .section__sub { color: #b6ac9b; }

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .95rem 1.7rem;
  background: var(--bg);
  color: var(--fg);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid var(--bg);
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--red {
  --bg: var(--red);
  --fg: #ffffff;
  border-color: var(--red);
  box-shadow: 0 8px 24px -10px rgba(252,34,64,.7);
}
.btn--red:hover { --bg: var(--red-2); box-shadow: 0 14px 30px -10px rgba(252,34,64,.85); }

.btn--dark { --bg: var(--ink); --fg: var(--cream); }
.btn--dark:hover { --bg: #000; }

.btn--outline {
  background: transparent;
  --fg: var(--cream);
  border-color: rgba(255,255,255,.28);
}
.btn--outline:hover { border-color: var(--red-2); color: var(--red-2); }

.btn--ghost-light {
  background: transparent;
  --fg: var(--cream);
  border-color: rgba(246,243,238,.35);
}
.btn--ghost-light:hover { background: rgba(246,243,238,.08); border-color: var(--cream); }

.btn--sm { padding: .7rem 1.25rem; font-size: .88rem; }
.btn--block { width: 100%; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-deep), var(--red-2));
  z-index: 150;
  transition: width .1s linear;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header.is-scrolled {
  background: rgba(246,243,238,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(0,0,0,.4);
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
}
.brand__mark { color: var(--red-deep); display: grid; place-items: center; }
.header:not(.is-scrolled) .hero ~ * { }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .02em;
}
.brand__name--lg { font-size: 1.9rem; }
.brand__sub {
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .28rem;
}

/* Logo image (swaps white/black with header state) */
.brand__logo {
  height: 42px;
  width: auto;
  display: block;
  transition: height .4s var(--ease);
}
.brand__logo--dark { display: none; }
.header.is-scrolled .brand__logo { height: 34px; }
.header.is-scrolled .brand__logo--light { display: none; }
.header.is-scrolled .brand__logo--dark { display: block; }
@media (max-width: 560px) {
  .brand__logo { height: 36px; }
  .header.is-scrolled .brand__logo { height: 32px; }
}

/* Hero is dark → header text light until scrolled */
.header:not(.is-scrolled) .brand,
.header:not(.is-scrolled) .nav__link { color: var(--cream); }
.header:not(.is-scrolled) .brand__mark { color: var(--red-2); }
.header:not(.is-scrolled) .brand__sub { color: rgba(246,243,238,.6); }
.header:not(.is-scrolled) .nav-toggle span { background: var(--cream); }

.nav { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__link {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  padding: .35rem 0;
  color: var(--ink-2);
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link:hover { color: var(--red-deep); }
.header:not(.is-scrolled) .nav__link:hover { color: var(--red-2); }

.header__cta { margin-left: .5rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(252,34,64,.22), transparent 55%),
    radial-gradient(90% 80% at 0% 110%, rgba(252,34,64,.10), transparent 50%),
    linear-gradient(160deg, #14110d 0%, #1c1813 55%, #14110d 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(110% 90% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(110% 90% at 50% 30%, #000 30%, transparent 75%);
}
/* subtle barber-pole accent stripe */
.hero__pole {
  position: absolute;
  top: 0; right: clamp(2rem, 8vw, 7rem);
  width: 10px;
  height: 100%;
  opacity: .5;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 10px,
    transparent 10px 22px
  );
  mask-image: linear-gradient(#000, transparent 85%);
  -webkit-mask-image: linear-gradient(#000, transparent 85%);
}
@media (max-width: 760px) { .hero__pole { display: none; } }

.hero__inner { position: relative; z-index: 2; padding-block: 3rem; }
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--red-2); }
.hero__slogan {
  font-family: var(--sans);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-2);
  margin: -.3rem 0 1.7rem;
  display: inline-flex;
  align-items: center;
  gap: .9em;
}
.hero__slogan::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}

.hero__lead {
  max-width: 540px;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: #d8cfc0;
  font-weight: 500;
  margin-bottom: 2.2rem;
}

/* Hero portrait (bearded man) */
.hero__photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 0;
  background: #100d0a url("assets/hero-man.jpg") no-repeat left center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1100px) {
  .hero__photo {
    width: clamp(420px, 46%, 760px);
    -webkit-mask: linear-gradient(90deg, transparent 0%, #000 15%, #000 64%, transparent 100%);
            mask: linear-gradient(90deg, transparent 0%, #000 15%, #000 64%, transparent 100%);
  }
  .hero__content { max-width: 580px; }
}
@media (max-width: 1099px) {
  .hero__photo {
    width: 100%;
    opacity: 1;
    background-position: 16% center;
  }
  .hero__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(176deg, rgba(15,12,9,.82) 0%, rgba(15,12,9,.5) 48%, rgba(15,12,9,.9) 100%);
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(1.5rem, 5vw, 3.5rem);
  padding-top: 2.2rem;
  border-top: 1px solid rgba(246,243,238,.14);
  max-width: 720px;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.stat__star { color: var(--red-2); font-size: .7em; }
.stat__label {
  font-size: .78rem;
  letter-spacing: .04em;
  color: #a99e8c;
  margin-top: .5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(246,243,238,.35);
  border-radius: 20px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--red-2);
  transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 16px); }
  100% { opacity: 0; }
}
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  border-block: 1px solid rgba(252,34,64,.25);
  overflow: hidden;
  padding-block: 1.1rem;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  color: var(--cream);
  white-space: nowrap;
}
.marquee__dot { color: var(--red) !important; font-style: normal !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   DESPRE
   ============================================================ */
.despre__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.despre__intro { position: sticky; top: calc(var(--header-h) + 2rem); }
.despre__body .lead { margin-bottom: 1.3rem; }
.despre__body > p { color: var(--ink-2); }

.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
  margin-top: 2.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.value { display: flex; gap: 1rem; }
.value__icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--red-deep);
  background: var(--red-tint);
  border: 1px solid var(--line-2);
}
.value__title { font-size: 1.02rem; font-weight: 600; margin-bottom: .15rem; }
.value__text { font-size: .92rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   CURSURI
   ============================================================ */
.section__head--center { text-align: center; margin-inline: auto; }
.cursuri .section__head { max-width: 680px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1.6rem;
  background: #1c1812;
  border: 1px solid rgba(246,243,238,.1);
  border-radius: var(--radius-lg);
  transition: transform .45s var(--ease-out), border-color .45s var(--ease), background .45s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(252,34,64,.5);
  background: #211c15;
}
.card--featured {
  background: linear-gradient(180deg, #241e15, #1b170f);
  border-color: rgba(252,34,64,.45);
  box-shadow: 0 30px 60px -40px rgba(252,34,64,.5);
}
.card__ribbon {
  position: absolute;
  top: -1px; right: 1.4rem;
  transform: translateY(-50%);
  background: var(--red);
  color: #ffffff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 100px;
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.card__tag {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-2);
  border: 1px solid rgba(252,34,64,.35);
  padding: .28rem .6rem;
  border-radius: 100px;
}
.card__icon { color: var(--red-2); opacity: .9; }
.card__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
}
.card__meta {
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--red-2);
  margin-top: .35rem;
  margin-bottom: .9rem;
}
.card__desc { font-size: .92rem; color: #b8ae9d; margin-bottom: 1.1rem; }
.card__list {
  display: grid;
  gap: .55rem;
  margin-bottom: 1.5rem;
}
.card__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .88rem;
  color: #cfc6b6;
  line-height: 1.45;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 11px; height: 7px;
  border-left: 1.5px solid var(--red);
  border-bottom: 1.5px solid var(--red);
  transform: rotate(-45deg);
}
.card__foot {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(246,243,238,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}
.card__price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.card__from {
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.cursuri__note {
  text-align: center;
  margin-top: 2.6rem;
  color: #b6ac9b;
}
.cursuri__note a { color: var(--red-2); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.curriculum__lead {
  color: var(--ink-2);
  margin: 1.4rem 0 2rem;
  font-size: 1.08rem;
}
.checklist {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.checklist li {
  position: relative;
  padding: 1.05rem 1rem 1.05rem 3rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink);
  transition: padding-left .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: .75rem; top: 50%;
  width: 13px; height: 8px;
  border-left: 2px solid var(--red-deep);
  border-bottom: 2px solid var(--red-deep);
  transform: translateY(-65%) rotate(-45deg);
}
.checklist li:hover {
  padding-left: 3.4rem;
  color: var(--red-deep);
  background: linear-gradient(90deg, var(--red-tint), transparent);
}

/* ============================================================
   TRAINERI
   ============================================================ */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 680px;
  margin-inline: auto;
}
.trainer {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.trainer:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -34px rgba(0,0,0,.4);
  border-color: var(--line-2);
}
.trainer__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--red) 18%, transparent), transparent 60%),
    linear-gradient(165deg, var(--a, #26221b), var(--b, #43381f));
  display: grid;
  place-items: center;
}
.trainer__photo::after {
  content: attr(data-initials);
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--red-2);
  opacity: .92;
  letter-spacing: .02em;
}
.trainer__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
}
.trainer__info { padding: 1.4rem 1.4rem 1.6rem; }
.trainer__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.trainer__role {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin: .35rem 0 .8rem;
}
.trainer__bio { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.trainer__social { margin-top: 1rem; }
.trainer__social a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color .25s var(--ease);
}
.trainer__social a:hover { color: var(--red-deep); }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(130% 100% at 70% 0%, color-mix(in srgb, var(--red) 22%, transparent), transparent 60%),
    linear-gradient(160deg, var(--a, #1b1813), var(--b, #3a2f1d));
  border: 1px solid rgba(246,243,238,.08);
  display: grid;
  place-items: center;
  cursor: default;
}
.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  transition: opacity .4s var(--ease);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__motif {
  font-size: 3.4rem;
  color: var(--red-2);
  opacity: .5;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease);
}
.gallery__item figcaption {
  position: absolute;
  left: 1.1rem; bottom: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery__item:hover .gallery__motif { transform: scale(1.12); opacity: .8; }
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery__item:hover::after { opacity: 1; }

/* ============================================================
   TESTIMONIALE
   ============================================================ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.quote {
  margin: 0;
  padding: 2rem 1.8rem;
  background: #1d1912;
  border: 1px solid rgba(252,34,64,.2);
  border-radius: var(--radius-lg);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: .3rem; right: 1.2rem;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(252,34,64,.25);
}
.quote__stars { color: var(--red-2); letter-spacing: .15em; font-size: .9rem; margin-bottom: 1rem; }
.quote__text {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.55;
  color: #e7dfd0;
  font-style: italic;
}
.quote__by {
  margin-top: 1.3rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--cream);
}
.quote__by span { font-weight: 400; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--header-h) + 2rem); }
.faq__lead { margin-top: 1.2rem; color: var(--muted); }
.faq__lead a { color: var(--red-deep); text-decoration: underline; text-underline-offset: 3px; }

.accordion { display: grid; }
.acc {
  border-bottom: 1px solid var(--line);
}
.acc:first-child { border-top: 1px solid var(--line); }
.acc__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem .25rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--serif);
  list-style: none;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.acc__q::-webkit-details-marker { display: none; }
.acc__q:hover { color: var(--red-deep); }
.acc__ico {
  flex: none;
  position: relative;
  width: 18px; height: 18px;
}
.acc__ico::before, .acc__ico::after {
  content: "";
  position: absolute;
  background: var(--red-deep);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.acc__ico::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc__ico::after { left: 8px; top: 0; width: 2px; height: 18px; }
.acc[open] .acc__ico::after { transform: scaleY(0); }
.acc__a {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.acc[open] .acc__a { grid-template-rows: 1fr; }
.acc__a > p {
  min-height: 0;
  padding: 0 .25rem 1.4rem;
  color: var(--muted);
  font-size: .98rem;
}

/* ---- Curriculum weeks (accordion content) ---- */
.acc__a > * { min-height: 0; overflow: hidden; }
.acc__inner { padding: .2rem .25rem 1.6rem; }
.acc__wk {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red-deep); margin-right: .7rem;
}
.day { padding: 1.1rem 0; border-top: 1px solid var(--line); }
.day:first-child { border-top: 0; padding-top: .2rem; }
.day__h { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.day__lbl { font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--ink-2); margin: .8rem 0 .4rem; }
.day__list { display: grid; gap: .35rem; }
.day__list li {
  position: relative; padding-left: 1.3rem;
  font-size: .95rem; color: var(--muted); line-height: 1.5;
}
.day__list li::before {
  content: ""; position: absolute; left: .15rem; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.week-days { display: grid; gap: .65rem; }
.week-days li { font-size: .98rem; color: var(--ink-2); line-height: 1.4; }
.week-days li strong {
  display: inline-block; min-width: 4.4rem;
  color: var(--red-deep); font-weight: 600;
}

/* ============================================================
   COURSE — flagship "Barber de la zero" (dark section)
   ============================================================ */
.course {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.course__main {
  background: #1c1812;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.course__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.course__facts li { display: flex; flex-direction: column; }
.course__facts strong {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600; color: var(--red-2); line-height: 1;
}
.course__facts span { font-size: .74rem; letter-spacing: .02em; color: #a99e8c; margin-top: .4rem; }
.course__subtitle {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-2); margin-bottom: 1rem;
}

.course__cta {
  background: linear-gradient(180deg, #241712, #19120f);
  border: 1px solid rgba(252,34,64,.4);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.course__badge {
  display: inline-block;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-2);
  border: 1px solid rgba(252,34,64,.4);
  border-radius: 100px; padding: .35rem .8rem; margin-bottom: 1rem;
}
.course__date {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 600; color: var(--cream); line-height: 1.1;
}
.course__loc { font-size: .9rem; color: #b6ac9b; margin: .6rem 0 1.5rem; }
.course__note { font-size: .8rem; color: var(--muted); margin-top: .9rem; }
.course__call {
  display: block;
  margin-top: .85rem;
  font-size: .94rem;
  font-weight: 600;
  color: var(--red-2);
  transition: color .25s var(--ease);
}
.course__call:hover { color: var(--cream); }

/* Ce primești la final */
.outcomes {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.02);
}
.outcomes__title {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 600; color: var(--cream); margin-bottom: 1.2rem;
}
.outcomes__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 2rem; }
.outcomes__list li {
  position: relative; padding-left: 1.8rem;
  color: #cfc6b6; font-size: .98rem; line-height: 1.45;
}
.outcomes__list li::before {
  content: ""; position: absolute; left: .2rem; top: .35em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--red-2); border-bottom: 2px solid var(--red-2);
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .course { grid-template-columns: 1fr; }
  .course__cta { position: static; }
  .course__facts { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .outcomes__list { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__map {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(252,34,64,.28);
  background: linear-gradient(180deg, #1d1912, #181410);
  color: var(--cream);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.contact__map:hover {
  transform: translateY(-3px);
  border-color: rgba(252,34,64,.6);
  box-shadow: 0 30px 60px -40px rgba(252,34,64,.45);
}
.contact__map-pin {
  flex: none;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--red-2);
  border: 1px solid rgba(252,34,64,.35);
  background: rgba(252,34,64,.08);
}
.contact__map-text { display: flex; flex-direction: column; line-height: 1.4; }
.contact__map-text strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.contact__map-text span { color: var(--muted); font-size: .92rem; }
.contact__map-cta {
  margin-left: auto;
  font-size: .92rem;
  font-weight: 500;
  color: var(--red-2);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .contact__map { flex-wrap: wrap; gap: 1rem; }
  .contact__map-cta { margin-left: 0; width: 100%; }
}
.contact__lead { color: #c1b7a6; margin: 1.4rem 0 2rem; max-width: 420px; }

.contact__details { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.contact__details li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__ico {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--red-2);
  border: 1px solid rgba(252,34,64,.3);
}
.contact__details div { font-size: .98rem; color: #ddd4c4; line-height: 1.5; }
.contact__details a:hover { color: var(--red-2); }
.contact__k {
  display: block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .1rem;
}
.contact__socials { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.contact__socials a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding-bottom: 3px;
}
.contact__socials a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.contact__socials a:hover::after { transform: scaleX(1); }

/* Form */
.contact__form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink);
}
.form { display: grid; gap: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.field__opt { color: var(--muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: #b3aa9a; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(252,34,64,.18);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input.invalid,
.field select.invalid { border-color: #c0563f; box-shadow: 0 0 0 3px rgba(192,86,63,.14); }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--red-deep);
  border-bottom: 2px solid var(--red-deep);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 2.4rem; }

.form__note { font-size: .78rem; color: var(--muted); text-align: center; }
.form__success {
  background: var(--red-tint);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: .92rem;
  color: var(--ink);
  text-align: center;
}
.form__success strong { color: var(--red-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #100e0a;
  color: #b6ac9b;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246,243,238,.1);
}
.footer__brand .brand__name { color: var(--cream); }
.footer__logo { height: 48px; width: auto; }
.footer__tag { margin-top: .9rem; max-width: 340px; font-size: .92rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.footer__nav a { font-size: .9rem; transition: color .25s var(--ease); }
.footer__nav a:hover { color: var(--red-2); }
.footer__socials { display: flex; gap: .7rem; }
.footer__socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(246,243,238,.18);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.footer__socials a:hover { border-color: var(--red); color: var(--red-2); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  padding-top: 2rem;
  font-size: .82rem;
  color: var(--muted);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav panel */
  .nav.is-open {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    padding: 1rem var(--gutter) 2rem;
    box-shadow: 0 24px 40px -24px rgba(0,0,0,.4);
    border-bottom: 1px solid var(--line);
    animation: dropIn .35s var(--ease-out);
  }
  .nav.is-open .nav__link {
    color: var(--ink);
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }
  @keyframes dropIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: none; }
  }

  .despre__grid { grid-template-columns: 1fr; }
  .despre__intro { position: static; }
  .curriculum__grid,
  .faq__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
  .cards { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .value-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 190px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .hero__title { font-size: clamp(2.6rem, 13vw, 4rem); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
