:root {
  --bg: #f4e7d4;
  --bg-soft: #f8efe5;
  --surface: rgba(255, 248, 240, 0.72);
  --surface-strong: rgba(255, 250, 245, 0.9);
  --ink: #2a1b1b;
  --muted: #6f5d5c;
  --plum: #5d274f;
  --plum-deep: #351429;
  --gold: #d2a65f;
  --gold-soft: #ebc98d;
  --line: rgba(74, 33, 53, 0.12);
  --shadow: 0 30px 80px rgba(68, 31, 51, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(210, 166, 95, 0.34), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(93, 39, 79, 0.14), transparent 24%),
    linear-gradient(180deg, #f7eddf 0%, #f2e1cd 52%, #f8efe6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 18px,
      rgba(93, 39, 79, 0.015) 18px,
      rgba(93, 39, 79, 0.015) 36px
    );
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 40px;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 241, 0.76);
  box-shadow: var(--shadow);
  position: sticky;
  top: 20px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--plum), #7f4b6c);
  color: #fff5eb;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 24px rgba(93, 39, 79, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.83rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--plum);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(93, 39, 79, 0.08);
  border: 1px solid rgba(93, 39, 79, 0.08);
}

.lang-button {
  min-width: 46px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.lang-button.is-active {
  background: linear-gradient(135deg, var(--plum), #7a4566);
  color: #fff8f1;
  box-shadow: 0 10px 20px rgba(93, 39, 79, 0.22);
}

.lang-button:focus-visible {
  outline: 2px solid rgba(93, 39, 79, 0.24);
  outline-offset: 2px;
}

.lang-button:not(.is-active):hover,
.lang-button:not(.is-active):focus-visible {
  color: var(--plum);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(93, 39, 79, 0.1);
  color: var(--plum);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 74px 0 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Prata", serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.85rem, 5vw, 5.4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead,
.section-copy p,
.format-card__body p,
.result-grid p,
.testimonial-grid p,
.mentor-card__copy p,
.cta-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--plum), #783f64);
  color: #fffaf3;
  box-shadow: 0 18px 36px rgba(93, 39, 79, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 42px rgba(93, 39, 79, 0.32);
}

.button-secondary {
  border: 1px solid rgba(93, 39, 79, 0.16);
  background: rgba(255, 252, 248, 0.68);
  color: var(--plum);
}

.hero-meta {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(93, 39, 79, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--surface-strong);
}

.hero-portrait {
  inset: 0 60px 70px 0;
  animation: floatUp 1200ms ease both;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-detail {
  right: 0;
  bottom: 0;
  width: min(340px, 72%);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.92), rgba(247, 231, 212, 0.92));
  animation: floatUp 1200ms 180ms ease both;
}

.quote-mark {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Prata", serif;
  font-size: 4rem;
  line-height: 0.8;
}

.hero-detail p:last-child {
  margin: 0;
  color: var(--plum-deep);
  line-height: 1.65;
}

.stats,
.section,
.site-footer {
  margin-top: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stats article,
.section,
.cta-card,
.mentor-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stats article {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.stats strong {
  display: block;
  font-size: 1.08rem;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  border-radius: 34px;
  padding: 38px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.check-grid,
.result-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

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

.check-grid article,
.result-grid article,
.testimonial-grid article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 247, 0.72);
  border: 1px solid rgba(93, 39, 79, 0.08);
}

.check-grid p,
.result-grid p {
  margin: 10px 0 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.section-heading.narrow {
  max-width: 860px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.format-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 251, 247, 0.78);
  border: 1px solid rgba(93, 39, 79, 0.08);
}

.format-card__media {
  aspect-ratio: 16 / 10;
}

.format-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-card__body {
  padding: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(93, 39, 79, 0.08);
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-card__body h3 {
  margin-top: 16px;
  font-size: 1.45rem;
}

.format-card__body p {
  margin: 14px 0 0;
}

.format-card__body ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.result-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  gap: 18px;
  grid-auto-rows: 210px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(68, 31, 51, 0.12);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.gallery-grid__tall {
  grid-row: span 2;
}

.gallery-grid__wide {
  grid-column: span 2;
}

.testimonial-grid article {
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.88), rgba(245, 232, 214, 0.88));
}

.testimonial-grid p {
  margin: 0;
  color: var(--plum-deep);
  font-weight: 700;
  font-size: 1.04rem;
}

.testimonial-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mentor-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  border-radius: 30px;
  padding: 22px;
}

.mentor-card__photo {
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.mentor-card__photo img {
  height: 100%;
  object-fit: cover;
}

.mentor-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-card__copy p {
  margin: 16px 0 0;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: 32px;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(210, 166, 95, 0.26), transparent 35%),
    linear-gradient(135deg, rgba(93, 39, 79, 0.96), rgba(56, 21, 38, 0.96));
  color: #fff7ef;
}

.cta-card .eyebrow,
.cta-card p,
.cta-card .contact-link {
  color: rgba(255, 247, 239, 0.8);
}

.cta-card h2 {
  max-width: 12ch;
}

.cta-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta-links .button-primary {
  background: linear-gradient(135deg, #f7d9aa, var(--gold));
  color: var(--plum-deep);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
}

.contact-link {
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 8px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .mentor-card,
  .cta-card,
  .format-grid,
  .result-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero h1,
  .section-heading h2,
  .cta-card h2 {
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-grid__wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 16px;
  }

  .site-header {
    gap: 14px;
    padding: 12px 14px;
    border-radius: 26px;
    align-items: flex-start;
    flex-wrap: wrap;
    top: 10px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 0.88rem;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy span {
    font-size: 0.78rem;
  }

  .header-tools {
    width: auto;
    gap: 10px;
  }

  .lang-switch {
    padding: 4px;
    gap: 4px;
  }

  .lang-button {
    min-width: 40px;
    height: 36px;
    font-size: 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 40px;
    padding: 10px 14px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .hero {
    gap: 22px;
    padding: 32px 0 20px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
    line-height: 0.98;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.82rem, 9.6vw, 2.7rem);
  }

  .lead {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button,
  .cta-links .button {
    width: 100%;
  }

  .hero-meta {
    margin-top: 18px;
    gap: 8px;
  }

  .hero-meta li {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 0;
  }

  .hero-portrait {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .hero-detail {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: 240px;
    margin: -52px 0 0 10px;
    padding: 18px;
  }

  .stats,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    padding: 18px;
  }

  .section {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .check-grid article,
  .result-grid article,
  .testimonial-grid article {
    padding: 18px;
  }

  .format-grid {
    gap: 16px;
  }

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

  .format-card__body {
    padding: 20px 18px;
  }

  .format-card__body h3 {
    font-size: 1.24rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 12px;
  }

  .gallery-grid__tall {
    grid-row: span 2;
  }

  .gallery-grid__wide {
    grid-column: span 2;
  }

  .mentor-card {
    gap: 16px;
    padding: 16px;
  }

  .cta-card {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .cta-links {
    width: 100%;
    align-items: stretch;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 12px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100% - 14px), var(--max-width));
  }

  h2 {
    font-size: clamp(1.7rem, 9.5vw, 2.4rem);
  }

  .gallery-grid {
    grid-auto-rows: 132px;
  }

  .hero-portrait {
    width: 100%;
  }

  .hero-detail {
    margin: -44px 0 0 8px;
    max-width: 220px;
  }

  .mentor-card {
    grid-template-columns: 1fr;
  }

  .mentor-card__photo {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
