:root {
  --navy: #14284a;
  --ink: #0d1b33;
  --petrol: #1d3a5f;
  --gold: #c7a45a;
  --gold-soft: #e8d6a3;
  --gray: #eef1f3;
  --mist: #f2f8fa;
  --cream: #faf9f5;
  --white: #ffffff;
  --text: #102033;
  --muted: #5d6775;
  --line: rgba(20, 40, 74, 0.12);
  --shadow: 0 20px 55px rgba(13, 27, 51, 0.12);
  --card-shadow: 0 10px 30px rgba(13, 27, 51, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Manrope", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.white {
  background: var(--white);
}

.cream {
  background: var(--cream);
}

.mist {
  background: var(--mist);
}

.dark {
  color: var(--white);
  background: radial-gradient(circle at 15% 20%, rgba(232, 214, 163, 0.12), transparent 25%),
    linear-gradient(135deg, var(--ink), var(--navy));
}

.dark h2,
.dark h3,
.dark p {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 245, 0.88);
  backdrop-filter: blur(22px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(13, 27, 51, 0.08);
}

.brand-mark img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.26rem;
  line-height: 1;
  color: var(--navy);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--navy);
}

.main-nav a.active {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--card-shadow);
}

.btn-primary:hover {
  background: var(--ink);
}

.btn-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(13, 27, 51, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(199, 164, 90, 0.7);
}

.btn-gold {
  color: var(--ink);
  background: var(--gold);
  box-shadow: var(--card-shadow);
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
  background:
    radial-gradient(circle at 14% 24%, rgba(232, 214, 163, 0.24), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(29, 58, 95, 0.08), transparent 32%),
    linear-gradient(180deg, #fffdfa 0%, #f8fbfb 62%, var(--cream) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 78% 42%, rgba(29, 58, 95, 0.1), transparent 26%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 74px;
  align-items: center;
  min-height: 520px;
}

.eyebrow,
.links-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(199, 164, 90, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--petrol);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(13, 27, 51, 0.06);
}

.dark-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-soft);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.hero h1 {
  margin-top: 24px;
  max-width: 600px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0;
}

.hero p,
.section-copy p,
.section-title p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.hero p {
  max-width: 430px;
  margin: 20px 0 0;
}

.brand-line {
  display: inline-block;
  margin-top: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: var(--petrol);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.not-found {
  max-width: 720px;
  min-height: calc(100vh - 276px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.not-found h1 {
  margin-top: 22px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.not-found p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.benefit-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--petrol);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  max-width: 560px;
  margin-left: auto;
}

.image-panel img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-logo-visual {
  width: 100%;
  max-width: 500px;
}

.hero-logo-card {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  padding: 34px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 43%, rgba(232, 214, 163, 0.32), transparent 38%),
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.78), transparent 54%);
  box-shadow: none;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 164, 90, 0.24);
  border-radius: 50%;
}

.hero-logo-card img {
  position: relative;
  width: min(430px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(13, 27, 51, 0.1));
}

.hero-logo-card span {
  position: relative;
  margin-top: 28px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.hero-logo-card p {
  position: relative;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.floating-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.floating-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-map-section {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, var(--cream), var(--white));
}

.home-pathways {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.home-pathways h2 {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.site-map-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.site-map-card,
.page-card,
.review-card,
.course-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.site-map-card {
  min-height: 160px;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.site-map-card.featured {
  color: var(--white);
  border-color: rgba(199, 164, 90, 0.54);
  background:
    linear-gradient(135deg, rgba(13, 27, 51, 0.96), rgba(20, 40, 74, 0.9)),
    radial-gradient(circle at 84% 18%, rgba(199, 164, 90, 0.22), transparent 30%);
}

.site-map-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 164, 90, 0.55);
  box-shadow: var(--shadow);
}

.site-map-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-map-card strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.site-map-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.site-map-card.featured strong,
.site-map-card.featured small {
  color: var(--white);
}

.site-map-card.featured span {
  color: var(--gold-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background:
    radial-gradient(circle at 16% 18%, rgba(199, 164, 90, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, #f7fbfb 58%, var(--cream) 100%);
}

.page-hero::before {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.page-hero-copy h1 {
  margin-top: 22px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.page-hero-copy .btn {
  margin-top: 30px;
}

.page-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  box-shadow: 0 24px 68px rgba(13, 27, 51, 0.12);
}

.page-card-grid,
.review-grid,
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-card,
.review-card,
.course-card {
  padding: 28px;
}

.page-card h3,
.course-card h3 {
  font-size: 1.55rem;
}

.page-card p,
.review-card p,
.course-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.review-card span,
.course-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.course-card {
  min-height: 235px;
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.compact-footer {
  margin-top: 0;
}

.footer-mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 28px 0 0;
}

.footer-mini-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-mini-nav a:hover {
  color: var(--white);
  border-color: rgba(199, 164, 90, 0.46);
}

.split {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.section-copy h2,
.section-title h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.section-copy p,
.section-title p {
  margin: 20px 0 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.mini-card-grid,
.company-grid,
.method-grid,
.service-grid,
.plan-grid,
.team-grid,
.audience-grid,
.compare-grid,
.stats-grid {
  display: grid;
  gap: 20px;
}

.mini-card-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.mini-card-grid article,
.service-card,
.plan-card,
.team-card,
.method-grid article,
.compare-card,
.stats-grid article,
.wide-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.mini-card-grid article {
  padding: 22px;
}

.mini-card-grid h3,
.image-card h3,
.service-card h3,
.plan-card h3,
.team-card h3,
.method-grid h3,
.company-grid h3 {
  font-size: 1.45rem;
}

.mini-card-grid p,
.image-card p,
.service-card p,
.plan-card p,
.team-card p,
.method-grid p,
.company-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.image-card:hover,
.service-card:hover,
.plan-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 164, 90, 0.56);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: top;
}

.image-card div {
  padding: 26px;
}

.image-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--petrol);
  font-weight: 900;
}

.service-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 52px;
}

.service-card {
  min-height: 248px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.service-icon,
.bio-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--petrol);
  background: var(--mist);
  font-size: 1.05rem;
  font-weight: 900;
}

.wide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 30px;
}

.wide-cta h3 {
  font-size: 1.8rem;
}

.wide-cta p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.plan-card {
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.plan-card.featured {
  color: var(--white);
  border-color: rgba(199, 164, 90, 0.75);
  background: var(--navy);
}

.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured li {
  color: var(--white);
}

.plan-card ul,
.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li,
.compare-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.plan-card li::before,
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.plan-card .btn {
  width: 100%;
  margin-top: 28px;
}

.note,
.stats-note {
  max-width: 860px;
  margin: 28px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(199, 164, 90, 0.34);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--muted);
  text-align: center;
  line-height: 1.75;
}

.company-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 34px 0;
}

.company-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.company-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.company-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.method-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
}

.method-grid article {
  padding: 28px;
}

.method-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.team-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.team-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: top;
}

.team-card div {
  padding: 26px;
}

.team-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card strong {
  display: block;
  margin-top: 8px;
  color: var(--petrol);
  font-size: 0.9rem;
}

.team-card .btn {
  width: 100%;
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(13, 27, 51, 0.75));
}

.compare-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 52px;
}

.compare-card {
  padding: 34px;
}

.compare-card h3 {
  font-size: 1.85rem;
}

.compare-card.deep {
  color: var(--white);
  background: var(--navy);
}

.compare-card.deep h3,
.compare-card.deep li {
  color: var(--white);
}

.statement {
  margin: 24px 0 0;
  padding: 26px;
  border: 1px solid rgba(199, 164, 90, 0.36);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
}

.stats-grid article {
  padding: 28px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.map-panel {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.map-panel img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  opacity: 0.56;
}

.map-panel div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(12px);
}

.map-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: start;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(13, 27, 51, 0.05);
}

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

.faq-question span {
  color: var(--gold);
  font-size: 1.35rem;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

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

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

.faq-answer div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background: var(--ink);
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 51, 0.78);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
}

.final-cta-card {
  max-width: 850px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(20, 40, 74, 0.92), rgba(13, 27, 51, 0.84));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.final-cta-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.final-cta-card h2 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.final-cta-card p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 0.9fr;
  gap: 44px;
  padding: 64px 0;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-tagline {
  color: var(--gold-soft);
  font-size: 1.1rem;
  font-weight: 800;
}

.site-footer h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.25rem;
}

.site-footer a:not(.brand):not(.btn),
.site-footer p {
  display: block;
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.links-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -10%, rgba(199, 164, 90, 0.22), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(29, 58, 95, 0.18), transparent 34%),
    linear-gradient(180deg, #f7fbfc 0%, var(--mist) 48%, var(--cream) 100%);
}

.links-shell {
  min-height: 100vh;
  padding: 28px 20px 34px;
}

.links-container {
  width: min(760px, 100%);
  margin: 0 auto;
}

.links-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(13, 27, 51, 0.08);
  backdrop-filter: blur(18px);
}

.links-brand strong {
  color: var(--navy);
}

.links-brand small {
  color: var(--muted);
}

.links-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--mist);
  font-size: 0.84rem;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.links-back:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}

.links-hero-card {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: clamp(30px, 6vw, 52px);
  border-radius: 18px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(13, 27, 51, 0.95), rgba(20, 40, 74, 0.9)),
    url("assets/about-praxis.png") center 40% / cover;
  box-shadow: 0 24px 70px rgba(13, 27, 51, 0.18);
}

.links-hero-card::before {
  content: none;
  position: absolute;
  inset: 0;
}

.links-hero-card > * {
  position: relative;
  z-index: 1;
}

.links-eyebrow {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.links-hero-card h1 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.5rem, 8vw, 4.2rem);
}

.links-hero-card p {
  margin: 12px auto 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.links-hero-card > strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: 0.94rem;
}

.bio-banner-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.bio-banner {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(13, 27, 51, 0.12);
  text-align: left;
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border 0.28s ease;
}

.bio-banner:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 164, 90, 0.86);
  box-shadow: 0 28px 70px rgba(13, 27, 51, 0.24);
}

.bio-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.02);
  transition: transform 0.45s ease;
  z-index: -2;
}

.bio-banner:hover img {
  transform: scale(1.08);
}

.bio-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 27, 51, 0.92) 0%, rgba(20, 40, 74, 0.78) 48%, rgba(20, 40, 74, 0.22) 100%),
    linear-gradient(180deg, rgba(13, 27, 51, 0.1), rgba(13, 27, 51, 0.44));
  z-index: -1;
}

.bio-banner.featured .bio-banner-overlay {
  background:
    linear-gradient(90deg, rgba(13, 27, 51, 0.94) 0%, rgba(20, 40, 74, 0.82) 50%, rgba(199, 164, 90, 0.16) 100%),
    linear-gradient(180deg, rgba(13, 27, 51, 0.04), rgba(13, 27, 51, 0.48));
}

.bio-banner-content {
  min-height: 190px;
  width: min(72%, 460px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.bio-banner-content small {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bio-banner-content strong {
  margin-top: 8px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.08;
}

.bio-banner-content em {
  max-width: 430px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-style: normal;
  line-height: 1.55;
}

.bio-banner-content span {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
}

.links-footer {
  padding: 34px 0 6px;
  text-align: center;
}

.links-footer p {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.links-footer small {
  display: block;
  max-width: 480px;
  margin: 8px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-grid,
  .stats-grid,
  .site-map-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-bottom: 1px solid transparent;
    background: var(--white);
    transition: max-height 0.25s ease, padding 0.25s ease, border 0.25s ease;
  }

  .main-nav.open {
    max-height: 520px;
    padding: 16px 20px 20px;
    border-bottom-color: var(--line);
  }

  .main-nav a {
    padding: 13px;
    border-radius: var(--radius);
  }

  .main-nav a:hover {
    background: var(--mist);
  }

  .hero-grid,
  .split,
  .split.reverse,
  .faq-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    max-width: 100%;
    margin: 0;
  }

  .audience-grid,
  .plan-grid,
  .team-grid,
  .compare-grid,
  .page-card-grid,
  .review-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .mini-card-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

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

  .home-pathways {
    display: block;
  }

  .home-pathways .btn {
    margin-top: 22px;
  }

  .bio-banner-content {
    width: 82%;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .image-panel img,
  .page-hero-image img {
    height: 500px;
  }

  .hero-logo-card {
    min-height: 330px;
    padding: 34px 22px;
  }

  .hero-logo-card img {
    width: min(340px, 94%);
  }

  .floating-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta-content {
    width: min(100% - 28px, 1120px);
  }

  .final-cta-card {
    padding: 28px 20px;
  }

  .service-grid,
  .method-grid,
  .stats-grid,
  .gallery-grid,
  .site-map-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .wide-cta,
  .footer-bottom {
    display: block;
  }

  .wide-cta .cta-actions {
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

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

  .brand strong {
    font-size: 1.08rem;
  }

  .links-shell {
    padding: 28px 14px;
  }

  .bio-banner {
    min-height: 230px;
  }

  .bio-banner-overlay,
  .bio-banner.featured .bio-banner-overlay {
    background:
      linear-gradient(180deg, rgba(13, 27, 51, 0.2) 0%, rgba(13, 27, 51, 0.9) 72%),
      linear-gradient(90deg, rgba(20, 40, 74, 0.38), rgba(20, 40, 74, 0.1));
  }

  .bio-banner-content {
    min-height: 230px;
    width: 100%;
    justify-content: flex-end;
    padding: 22px;
  }

  .bio-banner-content em {
    max-width: 100%;
  }
}
