/* Homepage — Phase 5.2 */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(90deg, rgba(5,5,5,0.90) 0%, rgba(5,5,5,0.76) 30%, rgba(5,5,5,0.40) 50%, rgba(5,5,5,0.14) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.4) 100%),
    url("Foto/anoir-hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 62% 23%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 20%, rgba(231,165,27,0.18), transparent 24rem),
    radial-gradient(circle at 18% 78%, rgba(255,255,255,0.06), transparent 30rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 220px;
  background: linear-gradient(0deg, rgba(0,0,0,0.56), transparent);
  pointer-events: none;
}

.hero__glow {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  padding-block: clamp(68px, 9vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.hero__copy {
  max-width: min(640px, 100%);
  padding-block: 24px;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(3.15rem, 6.2vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: #e0ddd7;
  font-size: clamp(1.02rem, 1.7vw, 1.19rem);
  line-height: 1.72;
}

.hero__features {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  color: #f0ece4;
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}

.hero__features span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(231,165,27,0.12);
}

.hero__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual,
.hero__visual::before,
.hero__portrait-frame,
.hero__portrait-frame::after,
.hero__portrait,
.hero__portrait-caption {
  display: none;
}

.programmes-section {
  padding: clamp(76px, 10vw, 120px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(231,165,27,0.07), transparent 33rem),
    #080808;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.programme-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #151515, #0e0e0e);
  box-shadow: var(--shadow-sm);
}

.programme-card__image {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: center;
}

.programme-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.programme-card__topline {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.programme-card__duration {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(231,165,27,0.07);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.programme-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}


.programme-card__price strong {
  color: var(--gold-light);
  font-size: 1.42rem;
  line-height: 1;
}

.programme-card h3 {
  margin: 18px 0 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.programme-card__summary {
  min-height: 64px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.programme-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.programme-card__highlights span {
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(255,255,255,0.055);
  color: #d6d2ca;
  font-size: 0.76rem;
  font-weight: 700;
}

.programme-details {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.programme-card.is-expanded .programme-details {
  display: block;
}

.programme-details h4 {
  margin: 18px 0 8px;
  color: var(--gold-light);
  font-size: 0.91rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.programme-details h4:first-child {
  margin-top: 0;
}

.programme-details p,
.programme-details ul {
  margin: 0;
  color: #c9c5bd;
  font-size: 0.9rem;
}

.programme-details ul {
  list-style: none;
  padding: 0;
}

.programme-details li {
  position: relative;
  margin: 7px 0;
  padding-left: 20px;
}

.programme-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.programme-details p + p {
  margin-top: 10px;
}

.programme-toggle {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255,255,255,0.035);
  color: var(--text);
  font-weight: 750;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.programme-toggle:hover {
  border-color: var(--gold-border);
  background: rgba(231,165,27,0.06);
}

.programme-card__cta {
  width: 100%;
  margin-top: 12px;
}

.guide-section {
  padding: clamp(76px, 9vw, 112px) 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(231,165,27,0.08), transparent 26rem),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.03), transparent 24rem),
    #080808;
}

.guide-card {
  overflow: hidden;
  border: 1px solid rgba(231,165,27,0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(231,165,27,0.10), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    #111111;
  box-shadow: 0 28px 60px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.03);
}

.guide-card__intro {
  padding: clamp(28px, 5vw, 54px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.guide-card__intro h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.guide-card__intro > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.mistake-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  padding: 18px;
}

.mistake {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    #141414;
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.mistake:last-child {
  border-right: 1px solid rgba(255,255,255,0.07);
}

.mistake__number {
  color: var(--gold-light);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.mistake h3 {
  margin: 26px 0 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.mistake p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-card__footer {
  padding: 18px clamp(28px, 5vw, 54px) 38px;
}

.guide-card__footer > p {
  max-width: 700px;
  margin: 0;
  color: #d5d1c9;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.motivation-section {
  position: relative;
  padding: clamp(112px, 14vw, 168px) 0 72px;
  background:
    linear-gradient(180deg, rgba(6,6,6,0.12) 0%, rgba(6,6,6,0.24) 45%, rgba(6,6,6,0.64) 100%),
    linear-gradient(90deg, rgba(6,6,6,0.34) 0%, rgba(6,6,6,0.18) 38%, rgba(6,6,6,0.06) 100%),
    url("Foto/motivation-view.jpg") center 34% / cover no-repeat;
}

.motivation-section .container {
  min-height: min(72svh, 760px);
  display: flex;
  align-items: flex-end;
}

.motivation-card {
  max-width: 560px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.motivation-card h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.05rem, 4.4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.motivation-copy {
  max-width: 540px;
  margin: 18px 0 0;
  color: #ece8e1;
  font-size: clamp(1rem, 1.5vw, 1.06rem);
  line-height: 1.72;
  text-shadow: 0 4px 18px rgba(0,0,0,0.32);
}

.motivation-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.motivation-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #f0ece4;
  font-size: 0.82rem;
  font-weight: 750;
}

.motivation-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(231,165,27,0.12);
}

.motivation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-section {
  padding: clamp(82px, 10vw, 126px) 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(231,165,27,0.07), transparent 24rem),
    linear-gradient(180deg, #090909 0%, #080808 100%);
}

.about-shell {
  display: grid;
  gap: clamp(34px, 6vw, 56px);
}

.about-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(28px, 6vw, 68px);
}

.about-main-photo {
  position: relative;
  margin: 0;
}

.about-main-photo > img {
  width: 100%;
  max-height: 640px;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-main-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(6,6,6,0.62);
  backdrop-filter: blur(8px);
}

.about-main-badge strong {
  color: #fff;
  font-size: 1rem;
}

.about-main-badge span {
  color: #ddd8cf;
  font-size: 0.82rem;
  font-weight: 650;
}

.about-content h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about-intro {
  max-width: 710px;
  margin: 18px 0 0;
  color: #ddd8cf;
  font-size: 1.02rem;
  line-height: 1.78;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-pillar {
  min-height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.about-pillar h3,
.about-why h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.about-pillar p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.64;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.about-highlights span,
.about-credentials span {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: #d3cec5;
  font-size: 0.78rem;
  font-weight: 750;
}

.about-why {
  margin-top: 24px;
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.about-benefits li {
  position: relative;
  min-height: 100%;
  padding: 0 0 0 24px;
  color: #e5e1d9;
}

.about-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-gallery--editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
  gap: 14px;
}

.about-gallery__feature,
.about-gallery__stack {
  margin: 0;
}

.about-gallery__feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #101010;
}

.about-gallery__feature img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: center 18%;
}

.about-gallery__feature figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(6,6,6,0.62);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f1ede6;
  font-size: 0.77rem;
  font-weight: 700;
}

.about-gallery__stack {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-gallery__stack img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.reviews-section {
  padding: clamp(78px, 10vw, 122px) 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(231,165,27,0.08), transparent 22rem),
    linear-gradient(180deg, #101010 0%, #0c0c0c 100%);
}

.reviews-heading > p:last-child {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.testimonial-stack {
  display: grid;
  gap: 16px;
}

.testimonial {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)), #131313;
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

.testimonial--featured {
  padding: clamp(32px, 4vw, 42px);
  background:
    radial-gradient(circle at 100% 0%, rgba(231,165,27,0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    #141414;
}

.testimonial__quote-mark {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(231,165,27,0.20);
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
}

.stars {
  margin: 0;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.testimonial blockquote {
  margin: 18px 0 24px;
  color: #dedbd3;
  font-size: 1rem;
  line-height: 1.74;
}

.testimonial--featured blockquote {
  max-width: 40ch;
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  line-height: 1.82;
}

.testimonial__author {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.testimonial__author span {
  margin-left: 7px;
  color: var(--muted-2);
  font-size: 0.84rem;
  font-weight: 600;
}

.review-proof {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), #0f0f0f;
}

.review-proof__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.eyebrow--small {
  margin-bottom: 10px;
  font-size: 0.72rem;
}

.review-proof__heading h3 {
  margin: 0;
  font-size: 1.25rem;
}

.review-proof__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.review-gallery img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: top center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.reviews-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.reviews-cta p {
  margin: 0;
  color: #ddd8cf;
  font-size: 1rem;
}

.faq-wrap {
  padding: clamp(78px, 10vw, 122px) 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(231,165,27,0.08), transparent 22rem),
    linear-gradient(180deg, #0a0a0a 0%, #090909 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(34px, 6vw, 74px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.faq-intro > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.faq-help-card {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(231,165,27,0.12), transparent 14rem),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    #111111;
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.faq-help-card__eyebrow {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-help-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.faq-help-card p:last-of-type {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-help-card__cta {
  width: 100%;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)), #111111;
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question__main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-number {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  background: rgba(231,165,27,0.08);
  border: 1px solid rgba(231,165,27,0.18);
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.faq-item.active {
  border-color: rgba(231,165,27,0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(231,165,27,0.10), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    #131313;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer > p {
  padding: 0 22px 22px 58px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(231,165,27,0.16);
  border-color: rgba(231,165,27,0.28);
}

.contact-section {
  padding: clamp(86px, 11vw, 132px) 0 28px;
  background:
    radial-gradient(circle at 78% 30%, rgba(231,165,27,0.08), transparent 26rem),
    #080808;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(231,165,27,0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(231,165,27,0.12), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
    #101010;
  box-shadow: 0 28px 66px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.035);
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -145px;
  border-radius: 50%;
  background: rgba(231,165,27,0.08);
  filter: blur(12px);
  pointer-events: none;
}

.contact-copy,
.contact-side {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 4.45rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
}

.contact-copy__lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #cbc6bd;
  font-size: 1.02rem;
  line-height: 1.75;
}

.contact-primary {
  margin-top: 30px;
  max-width: 430px;
}

.contact-whatsapp {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 20px;
}

.contact-whatsapp__label {
  font-weight: 850;
}

.contact-whatsapp__arrow {
  font-size: 1.15rem;
  line-height: 1;
}

.contact-primary__note {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 0.85rem;
  line-height: 1.55;
}

.contact-side {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: rgba(6,6,6,0.38);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  backdrop-filter: blur(8px);
}

.contact-side__title {
  margin: 0 0 15px;
  color: #e7e2da;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-link {
  min-width: 0;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  color: var(--text);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(231,165,27,0.25);
  background: rgba(231,165,27,0.055);
}

.contact-link__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(231,165,27,0.20);
  background: rgba(231,165,27,0.08);
  color: var(--gold-light);
  font-weight: 850;
}

.contact-link__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-link__text small {
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 700;
}

.contact-link__text strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #f2eee7;
  font-size: 0.9rem;
}

.contact-link__arrow {
  color: var(--gold-light);
  font-size: 0.95rem;
}

.contact-reassurance {
  margin-top: 16px;
  padding: 14px 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-reassurance__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(231,165,27,0.10);
}

.contact-reassurance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 2000;
  width: min(620px, calc(100% - 24px));
  padding: 14px 14px 14px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(17,17,17,0.98);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
  color: #d4d0c8;
  font-size: 0.88rem;
}

.cookie-banner .btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 16px;
}

@media (max-width: 1020px) {
  .programme-grid { grid-template-columns: 1fr; }
  .programme-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0,1.28fr);
  }
  .programme-card__image { height: 100%; aspect-ratio: auto; }
  .programme-card__summary { min-height: auto; }
  .mistake-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mistake:nth-child(2) { border-right: 0; }
  .about-grid { grid-template-columns: minmax(280px,0.8fr) minmax(0,1.2fr); }
}

@media (max-width: 820px) {
  .hero {
    background-position: 60% 18%;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__copy { max-width: 470px; }
  .hero h1 { max-width: 455px; font-size: clamp(2.65rem, 6vw, 4.25rem); }
  .hero__lead { max-width: 440px; }

  .about-grid,
  .faq-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 560px;
  }

  .faq-intro {
    position: static;
  }

  .review-proof__heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    align-items: stretch;
    background:
      linear-gradient(180deg,
        rgba(5,5,5,0.08) 0%,
        rgba(5,5,5,0.05) 28%,
        rgba(5,5,5,0.12) 46%,
        rgba(5,5,5,0.38) 62%,
        rgba(5,5,5,0.82) 80%,
        rgba(5,5,5,0.96) 100%),
      url("Foto/anoir-hero.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 60% 8%;
  }

  .hero__content {
    position: relative;
    min-height: inherit;
    padding: clamp(430px, 60svh, 520px) 0 24px;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 0;
  }

  .hero__copy {
    max-width: 100%;
    padding-block: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__copy .eyebrow {
    position: absolute;
    top: 14px;
    left: 0;
    margin: 0;
    font-size: 0.74rem;
  }

  .hero__actions {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 18px;
    gap: 7px;
  }

  .hero__actions .btn {
    width: min(180px, 50vw);
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.84rem;
    justify-content: center;
  }

  .hero h1 {
    order: 2;
    max-width: 265px;
    font-size: clamp(1.6rem, 8vw, 2.1rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 0;
  }

  .hero__lead {
    order: 3;
    max-width: 280px;
    margin-top: 10px;
    font-size: 0.83rem;
    line-height: 1.44;
  }

  .hero__features {
    order: 4;
    margin-top: 11px;
    gap: 5px;
  }

  .hero__features span {
    padding: 4px 7px;
    font-size: 0.64rem;
  }

  .hero__visual {
    display: none;
  }

  .programme-card {
    display: block;
  }

  .programme-card__image {
    height: auto;
    aspect-ratio: 1.35 / 1;
  }


  .programme-card__summary {
    min-height: auto;
  }

  .mistake-grid {
    grid-template-columns: 1fr;
  }

  .mistake {
    min-height: auto;
    border-right: 0;
  }

  .mistake h3 {
    margin-top: 18px;
  }

  .about-gallery {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .review-gallery {
    grid-template-columns: 1fr;
  }

  .review-gallery img {
    height: auto;
    max-height: 520px;
  }


  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .motivation-section {
    background-position: 56% 30%;
  }

  .motivation-section .container {
    min-height: 68svh;
  }
}

@media (max-width: 680px) {
  .motivation-section {
    padding: 110px 0 42px;
    background:
      linear-gradient(180deg, rgba(6,6,6,0.05) 0%, rgba(6,6,6,0.22) 38%, rgba(6,6,6,0.72) 100%),
      linear-gradient(90deg, rgba(6,6,6,0.18) 0%, rgba(6,6,6,0.08) 100%),
      url("Foto/motivation-view.jpg") center 20% / cover no-repeat;
  }

  .motivation-section .container {
    min-height: 72svh;
    align-items: flex-end;
  }

  .motivation-card {
    max-width: 100%;
    padding: 0;
  }

  .motivation-card h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.8rem);
  }

  .motivation-copy {
    max-width: 100%;
  }

  .motivation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .about-main {
    grid-template-columns: 1fr;
  }

  .about-gallery--editorial {
    grid-template-columns: 1fr;
  }

  .about-gallery__stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 820px) {
  .about-section {
    padding: 76px 0;
  }

  .about-main-photo {
    max-width: 560px;
  }

  .about-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .about-content h2 {
    font-size: clamp(2.05rem, 8vw, 3rem);
  }

  .about-intro {
    font-size: 0.98rem;
  }

  .about-pillars {
    gap: 12px;
  }

  .about-pillar {
    padding: 16px;
  }

  .about-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-gallery__stack {
    grid-template-columns: 1fr;
  }

  .about-gallery__feature img {
    aspect-ratio: 1.08 / 1;
  }
}

@media (max-width: 1020px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .review-proof__heading {
    align-items: start;
    flex-direction: column;
  }

  .reviews-cta {
    align-items: stretch;
  }

  .reviews-cta .btn {
    width: 100%;
  }
}

@media (max-width: 1020px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .faq-question {
    padding: 18px 18px;
    min-height: 66px;
  }

  .faq-question__main {
    gap: 12px;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .faq-item.active .faq-answer > p {
    padding: 0 18px 18px 18px;
  }
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-primary {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .contact-section {
    padding-top: 72px;
  }

  .contact-card {
    padding: 24px 20px;
    border-radius: 24px;
    gap: 26px;
  }

  .contact-copy h2 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .contact-copy__lead {
    font-size: 0.96rem;
  }

  .contact-side {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-link {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    padding: 13px 14px;
  }

  .contact-link__icon {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 420px) {
  .programme-card__body,
  .testimonial,
  .review-proof {
    padding: 20px;
  }

  .programme-card__topline {
    align-items: flex-start;
  }

  .guide-card__intro,
  .guide-card__footer {
    padding-inline: 22px;
  }

  .mistake {
    padding: 24px 22px;
  }
}


/* Phase 4 — homepage disclosure and narrow-screen hardening */
.programme-toggle {
  min-height: 46px;
}

.faq-question {
  min-height: 52px;
}

@media (max-width: 680px) {
  .programme-card__topline {
    flex-wrap: wrap;
  }

  .programme-card__price {
    white-space: normal;
  }

  .programme-toggle {
    display: block;
  }

  .contact-card {
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .hero__content {
    padding-top: clamp(420px, 60svh, 500px);
  }

  .hero__actions .btn {
    width: min(165px, 48vw);
    min-height: 38px;
    font-size: 0.8rem;
  }

  .hero h1 {
    max-width: 235px;
    font-size: clamp(1.5rem, 8.3vw, 1.9rem);
  }

  .hero__portrait-caption {
    left: 18px;
    right: 18px;
    bottom: 17px;
  }

  .programme-card__body,
  .testimonial,
  .review-proof {
    padding: 18px;
  }

  .contact-card {
    padding: 22px 16px;
  }
}

/* Phase 5.3.16 — Final UI polish
   Small spacing and responsive consistency refinements only. */

@media (min-width: 681px) and (max-width: 1020px) {
  .motivation-section {
    padding-top: 96px;
    padding-bottom: 58px;
  }

  .motivation-section .container {
    min-height: 60svh;
  }

  .about-main-photo {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .about-content {
    width: min(100%, 820px);
  }

  .faq-help-card {
    max-width: 620px;
  }

  .contact-card {
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .programmes-section,
  .guide-section,
  .about-section,
  .reviews-section,
  .faq-wrap {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .programme-grid {
    gap: 16px;
  }

  .programme-card__body {
    padding: 22px;
  }

  .guide-card {
    border-radius: 22px;
  }

  .mistake-grid {
    gap: 12px;
    padding: 14px;
  }

  .motivation-section {
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .about-main-photo {
    width: 100%;
    margin-inline: auto;
  }

  .about-main-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .about-gallery--editorial,
  .about-gallery__stack {
    gap: 12px;
  }

  .reviews-layout,
  .testimonial-stack {
    gap: 14px;
  }

  .review-proof {
    margin-top: 26px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question__main {
    align-items: flex-start;
  }

  .faq-number {
    flex: 0 0 auto;
    padding-top: 2px;
  }

  .faq-help-card {
    margin-top: 22px;
  }

  .contact-section {
    padding-top: 68px;
  }
}

@media (max-width: 420px) {
  .section-heading h2 {
    font-size: clamp(1.95rem, 10vw, 2.6rem);
  }

  .programme-card__body,
  .testimonial,
  .review-proof {
    padding: 20px;
  }

  .guide-card__intro,
  .guide-card__footer {
    padding-inline: 20px;
  }

  .faq-help-card {
    padding: 18px;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-item.active .faq-answer > p {
    padding: 0 16px 16px;
  }

  .testimonial__author span {
    display: block;
    margin: 3px 0 0;
  }

  .contact-card {
    padding: 22px 18px;
  }

  .contact-side {
    padding: 17px;
  }
}

@media (max-width: 360px) {
  .site-brand__name {
    letter-spacing: 0.035em;
  }

  .faq-question__main {
    gap: 10px;
  }

  .faq-number {
    font-size: 0.7rem;
  }

  .about-main-badge span {
    font-size: 0.75rem;
  }

  .contact-link {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-link__arrow {
    display: none;
  }

  .contact-whatsapp {
    padding-inline: 14px;
    gap: 10px;
  }
}

/* Phase 5.3.22 — definitive mobile About gallery layout
   Keeps the editorial desktop gallery, but turns the three supporting images
   into a compact mobile collage so portrait photos cannot create giant panels. */
@media (max-width: 680px) {
  .about-section {
    overflow: clip;
  }

  .about-gallery--editorial {
    display: block;
    width: 100%;
  }

  .about-gallery__feature {
    width: 100%;
    margin: 0 0 12px;
  }

  .about-gallery__feature img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    object-position: center 22%;
  }

  .about-gallery__stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 12px;
    width: 100%;
    height: auto;
  }

  .about-gallery__stack img {
    display: block;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
  }

  .about-gallery__stack img:nth-child(1) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
    object-position: center 35%;
  }

  .about-gallery__stack img:nth-child(2) {
    object-position: center 20%;
  }

  .about-gallery__stack img:nth-child(3) {
    object-position: center 18%;
  }

  .reviews-section {
    position: relative;
    z-index: 1;
    clear: both;
  }
}


/* Phase 5.3.23 — Mobile motivation composition
   Keep Anoir's shoulders/back unobstructed by moving the intro into the sky area on phones. */
.motivation-intro {
  max-width: 560px;
}

@media (max-width: 680px) {
  .motivation-section {
    padding-top: 28px;
    padding-bottom: 34px;
    background:
      linear-gradient(180deg, rgba(6,6,6,0.50) 0%, rgba(6,6,6,0.16) 26%, rgba(6,6,6,0.10) 52%, rgba(6,6,6,0.72) 100%),
      linear-gradient(90deg, rgba(6,6,6,0.16) 0%, rgba(6,6,6,0.05) 100%),
      url("Foto/motivation-view.jpg") center 20% / cover no-repeat;
  }

  .motivation-section .container {
    min-height: 78svh;
    align-items: stretch;
  }

  .motivation-card {
    width: 100%;
    min-height: 78svh;
    display: flex;
    flex-direction: column;
  }

  .motivation-intro {
    width: min(100%, 390px);
    margin: 0;
    padding-top: 8px;
  }

  .motivation-intro .eyebrow {
    margin-bottom: 8px;
  }

  .motivation-card h2 {
    max-width: 360px;
    font-size: clamp(1.78rem, 8.2vw, 2.35rem);
    line-height: 1.02;
  }

  .motivation-copy {
    max-width: 350px;
    margin-top: 12px;
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .motivation-points {
    margin-top: auto;
    padding-top: 24px;
  }

  .motivation-actions {
    margin-top: 18px;
  }
}


/* Phase 5.3.24 — Mobile motivation subtitle placement
   Keep the eyebrow/title in the sky area, but move the supporting copy lower
   so Anoir's head and shoulders remain visually unobstructed. */
@media (max-width: 680px) {
  .motivation-intro {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
  }

  .motivation-copy {
    margin-top: auto;
    padding-top: 18px;
    max-width: 350px;
  }

  .motivation-points {
    margin-top: 14px;
    padding-top: 0;
  }
}
