@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #22082f;
  --purple-2: #341047;
  --charcoal: #211a24;
  --ink: #16091c;
  --night: #180720;
  --charcoal-2: #3a2d3f;
  --gold: #c9963c;
  --gold-2: #a97723;
  --coral: #d45f33;
  --blush: #f5e6dc;
  --ivory: #ffffff;
  --white: #ffffff;
  --line: #ded6c8;
  --muted: #6d6673;
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Poppins, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--purple);
  color: var(--white);
  padding: 10px 14px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  border-bottom: 1px solid rgba(201, 150, 60, 0.2);
  background: var(--night);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header::before {
  display: none;
  content: "";
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  padding: 9px 16px;
  font-weight: 500;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  display: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-name::first-letter {
  color: var(--white);
}

.brand-name span,
.brand-name em {
  color: var(--gold);
  font-style: normal;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  width: 42px;
  height: 42px;
  font-size: 22px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-1px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
}

.primary-nav a.nav-cta {
  color: var(--white);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 24px;
  box-shadow: 0 12px 30px rgba(201, 150, 60, 0.22);
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.primary-nav a.nav-cta:hover,
.primary-nav a.nav-cta:focus {
  background: var(--white);
  color: var(--purple);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(201, 150, 60, 0.34);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 26px;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
  box-shadow: 0 0 0 rgba(36, 76, 163, 0);
  isolation: isolate;
}

.nav-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(201, 150, 60, 0.2);
  transform: translateX(-105%);
  transition: transform 260ms ease;
  z-index: -1;
}

.nav-cta:hover,
.nav-cta:focus,
.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(201, 150, 60, 0.28), 0 18px 42px rgba(201, 150, 60, 0.22);
}

.nav-cta:hover::after,
.nav-cta:focus::after,
.button:hover::after,
.button:focus::after {
  transform: translateX(0);
}

.button.secondary {
  background: transparent;
  color: var(--purple);
}

.button.gold {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.hero {
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(520px, 0.48fr);
  gap: 0;
  align-items: stretch;
  min-height: min(760px, calc(100svh - 86px));
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.hero-copy {
  max-width: none;
  padding: clamp(56px, 6vw, 88px) clamp(44px, 5vw, 82px) clamp(48px, 5.4vw, 74px) max(56px, calc((100vw - 1500px) / 2 + 72px));
  color: var(--purple);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pretitle {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.05;
  color: var(--purple);
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: clamp(78px, 8vw, 132px);
  max-width: 820px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 500;
}

h3 {
  font-size: 31px;
  font-weight: 700;
}

p {
  margin: 0;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 33px);
  line-height: 1.52;
  color: var(--charcoal-2);
  margin-top: 24px;
  max-width: 690px;
}

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

.hero-media {
  border-left: 0;
  padding-left: 0;
  background: var(--night);
  display: flex;
}

.portrait-panel {
  min-height: min(760px, calc(100svh - 86px));
  width: 100%;
  background: var(--night);
  border: 0;
  position: relative;
  overflow: hidden;
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  border: 0;
  background: url("../img/Coach-adella-PFP-text.jpg?v=12") center / contain no-repeat;
  filter: saturate(0.96) contrast(1.02);
}

.portrait-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: rgba(17, 25, 39, 0.34);
}

.portrait-lines {
  display: none;
}

.portrait-lines::after {
  display: none;
}

.hero .pretitle {
  color: var(--gold-2);
}

.hero .lead {
  color: var(--purple);
  line-height: 1.34;
  max-width: 760px;
}

.hero-note {
  max-width: 740px;
  margin-top: 14px;
  color: var(--charcoal-2);
  font-size: 15px;
  line-height: 1.75;
}

.hero .button.secondary {
  color: var(--gold-2);
  border-color: var(--gold);
}

.section {
  padding: 86px 24px;
}

.service-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal-left {
  transform: translateX(-46px);
}

.reveal-right {
  transform: translateX(46px);
}

.reveal-down {
  transform: translateY(-34px);
}

.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.hero-copy,
.hero-media {
  opacity: 1;
  animation-duration: 850ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.hero-copy {
  animation-name: fadeUp;
}

.hero-media {
  animation-name: fadeRight;
  animation-delay: 140ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section.ivory {
  background: var(--ivory);
}

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

.section.purple {
  background: var(--night);
  color: var(--white);
}

.section.purple h2,
.section.purple h3 {
  color: var(--white);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
}

.section.purple .section-heading {
  border-color: rgba(255, 255, 255, 0.22);
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
  margin-bottom: 42px;
}

.editorial-heading.compact {
  margin-bottom: 34px;
}

.heading-label {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.heading-label span {
  display: block;
  font-family: var(--serif);
  color: var(--gold-2);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 18px;
}

.heading-label p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.6;
  text-transform: uppercase;
}

.editorial-heading h2 {
  max-width: 780px;
}

.editorial-heading p:not(.pretitle) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading p,
.copy-block p,
.card p,
.faq-answer,
.resource-card p {
  color: var(--muted);
}

.section.purple .section-heading p,
.section.purple .copy-block p,
.section.purple .card p {
  color: rgba(255, 255, 255, 0.78);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  background: transparent;
  border: 0;
}

.card {
  background: var(--white);
  padding: 38px;
  min-height: 260px;
  border: 1px solid rgba(222, 214, 200, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(32, 42, 57, 0.11);
}

.belief-strip {
  background: var(--night);
  color: var(--gold);
  padding: 28px 24px;
  border-top: 1px solid rgba(201, 150, 60, 0.26);
  border-bottom: 1px solid rgba(201, 150, 60, 0.26);
}

.belief-strip .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.belief-strip strong {
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.12;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 500;
}

.belief-strip .button {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.video-band {
  background: var(--night);
  color: var(--white);
  padding: clamp(58px, 7vw, 96px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  align-items: center;
  border-top: 1px solid rgba(201, 150, 60, 0.28);
  border-bottom: 1px solid rgba(201, 150, 60, 0.28);
}

.video-band-copy {
  padding: 0 clamp(28px, 5vw, 78px) 0 max(56px, calc((100vw - 1500px) / 2 + 72px));
}

.video-band h2 {
  color: var(--white);
  font-size: clamp(38px, 4.4vw, 74px);
  max-width: 560px;
}

.video-band p:not(.pretitle) {
  margin-top: 20px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.youtube-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050208;
  border-left: 1px solid rgba(201, 150, 60, 0.36);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.youtube-placeholder {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: url("../img/Trifecrtra-COver-Video-banner.jpg?v=12") center / contain no-repeat;
  cursor: pointer;
}

.youtube-placeholder.compact {
  min-height: 430px;
}

.youtube-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 7, 32, 0.58);
  pointer-events: none;
}

.youtube-placeholder::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.play-button {
  width: 86px;
  height: 86px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(24, 7, 32, 0.72);
  box-shadow: 0 0 46px rgba(201, 150, 60, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
  z-index: 1;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--gold);
  margin-left: 5px;
}

.youtube-placeholder:hover .play-button,
.youtube-placeholder:focus .play-button {
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(201, 150, 60, 0.4), 0 0 62px rgba(201, 150, 60, 0.36);
}

.inline-video-player {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  background: #050208;
}

.about-video-hero .page-hero-grid {
  align-items: center;
}

.about-video-card {
  border: 1px solid var(--line);
  background: var(--night);
  box-shadow: 0 30px 70px rgba(24, 7, 32, 0.16);
  overflow: hidden;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.gallery-section {
  padding-top: 76px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 138px;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--night);
  min-height: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 7, 32, 0.18);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-item.tall {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item.wide {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item:not(.tall):not(.wide) {
  grid-column: span 3;
  grid-row: span 2;
}

.guess-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 76px;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  color: var(--charcoal-2);
  font-size: 18px;
}

.check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--coral);
  color: var(--coral);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
}

.possibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.possibility {
  background: var(--ivory);
  padding: 38px 28px;
  text-align: center;
}

.possibility-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--charcoal);
  text-decoration: none;
  display: grid;
  min-height: 420px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(17, 25, 39, 0.14);
}

.service-card-media {
  min-height: 170px;
  background: var(--night);
  position: relative;
  overflow: hidden;
}

.service-card:nth-child(1) .service-card-media {
  background: var(--white) url("../img/Coaching-best.jpg?v=12") center / contain no-repeat;
}

.service-card:nth-child(2) .service-card-media {
  background: var(--white) url("../img/Speaking PFP.jpg?v=12") center / contain no-repeat;
}

.service-card:nth-child(3) .service-card-media {
  background: var(--white) url("../img/Speaker-best2.jpg?v=12") center / contain no-repeat;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 25, 39, 0.56);
}

.section.purple .button.gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.service-card-body {
  padding: 30px;
}

.service-card-body p {
  color: var(--muted);
  margin-top: 12px;
}

.service-card-body span {
  display: inline-block;
  margin-top: 24px;
  color: var(--purple);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quote-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: center;
}

.quote-mark {
  color: var(--gold);
  font-size: 76px;
  line-height: 1;
}

.quote-text {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.25;
  color: var(--charcoal);
  font-weight: 500;
}

.quote-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 34px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  border: 0;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(24, 7, 32, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonial-card.featured {
  grid-column: span 2;
  background: var(--night);
  color: var(--white);
  min-height: 320px;
}

.testimonial-card::before {
  content: "“";
  font-family: var(--serif);
  color: rgba(201, 150, 60, 0.22);
  font-size: 96px;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 8px;
  pointer-events: none;
}

.testimonial-card.featured p,
.testimonial-card.featured strong {
  color: var(--white);
}

.testimonial-card p {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.28;
}

.testimonial-card strong {
  display: block;
  margin-top: 28px;
  color: var(--gold-2);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}

.media-frame,
.video-frame {
  min-height: 390px;
  background: var(--night);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-frame img,
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.video-frame::after {
  content: "Play Reel";
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 104px;
  height: 104px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  background: rgba(24, 7, 32, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 38px rgba(201, 150, 60, 0.26);
}

.media-kicker {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.section.purple .card {
  background: #183b86;
}

.card-number {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 36px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 22px;
}

.ruled-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.ruled-list li {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-row {
  background: var(--white);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-row:hover,
.service-row:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(32, 42, 57, 0.1);
  z-index: 1;
}

.service-row:hover h3,
.service-row:focus h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.service-row span {
  color: var(--gold-2);
  font-weight: 700;
}

.page-hero {
  max-width: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-hero > :not(.page-hero-grid) {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-hero > .pretitle {
  padding-top: 70px;
}

.page-hero > .lead {
  padding-bottom: 58px;
}

.page-hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 24px;
  min-height: min(640px, calc(100svh - 86px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.page-hero h1 {
  color: var(--purple);
  font-size: clamp(46px, 5vw, 78px);
}

.page-hero .lead {
  max-width: 840px;
  font-size: clamp(22px, 2vw, 30px);
}

.page-hero-media {
  min-height: 430px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: var(--night);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 64px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 34px;
}

.article-body h2 {
  margin-top: 20px;
}

.article-body ul {
  margin: 0;
  padding-left: 22px;
}

.article-body li + li {
  margin-top: 10px;
}

.sidebar {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  display: grid;
  gap: 28px;
  position: sticky;
  top: 110px;
}

.sidebar-box {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.sidebar-box h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: transparent;
  border: 0;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 34px;
  align-items: start;
}

.faq-panel {
  background: var(--night);
  color: var(--white);
  padding: clamp(34px, 4vw, 54px);
  min-height: 100%;
  border: 1px solid rgba(201, 150, 60, 0.34);
}

.faq-panel h2 {
  color: var(--white);
  font-size: clamp(38px, 4vw, 62px);
}

.faq-panel p:not(.pretitle) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 23px 26px;
  font-family: var(--sans);
  color: var(--purple);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.faq-answer {
  padding: 0 26px 26px;
  display: none;
}

.faq-question span {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.faq-item.open .faq-answer {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font: inherit;
  color: var(--charcoal);
  background: var(--white);
  border-radius: 0;
}

textarea {
  min-height: 150px;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 24px 30px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 58px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-grid p {
  margin-top: 18px;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin-top: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 150, 60, 0.42);
  display: grid;
  place-items: center;
  margin-top: 0;
  color: var(--gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: var(--white);
  text-decoration: underline;
}

.footer-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  padding-top: 24px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 34px;
  background: var(--white);
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.resource-card h2 {
  font-size: 26px;
  line-height: 1.18;
}

.resource-card p {
  margin: 0;
}

.resource-card p + p {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.resource-card a {
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.resource-card a:hover,
.resource-card a:focus {
  color: var(--gold-2);
}

.assessment-band {
  border: 1px solid var(--line);
  padding: 34px;
  background: var(--ivory);
}

.contact-sidebar .sidebar-box {
  margin-bottom: 20px;
}

.accent-box {
  background: var(--night);
  color: var(--white);
  border-color: rgba(201, 150, 60, 0.42);
}

.accent-box h3,
.accent-box p {
  color: var(--white);
}

.compact-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.compact-list li + li {
  margin-top: 8px;
}

.small {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: var(--night);
    padding: 22px 24px;
    border-bottom: 1px solid rgba(201, 150, 60, 0.24);
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav.open {
    display: flex;
  }

  .hero,
  .page-hero-grid,
  .section-heading,
  .editorial-heading,
  .video-band,
  .faq-shell,
  .split,
  .guess-layout,
  .quote-layout,
  .media-split,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 0;
  }

  .hero-copy {
    padding: 64px 24px 44px;
  }

  .hero-media {
    border-left: 0;
    padding-left: 0;
  }

  .grid-3,
  .possibility-grid,
  .service-card-grid,
  .testimonial-grid,
  .faq,
  .resource-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item:not(.tall):not(.wide) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonial-card.featured {
    grid-column: span 1;
  }

  .page-hero-grid {
    min-height: auto;
    padding: 52px 24px;
  }

  .page-hero-media,
  .media-frame,
  .video-frame {
    min-height: 340px;
  }

  .belief-strip .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .guess-layout,
  .quote-layout {
    gap: 38px;
  }

  .service-card {
    min-height: 0;
  }

  .video-band-copy {
    padding: 0 24px 34px;
  }

  .youtube-frame {
    border-left: 0;
    border-top: 1px solid rgba(201, 150, 60, 0.36);
  }

  .editorial-heading {
    gap: 22px;
  }

  .faq-panel {
    min-height: auto;
  }

  .sidebar {
    position: static;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 30px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-name {
    font-size: 31px;
  }

  .header-inner,
  .hero,
  .page-hero,
  .content,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero .lead {
    font-size: 28px;
  }

  .editorial-heading p:not(.pretitle),
  .video-band p:not(.pretitle) {
    font-size: 16px;
  }

  .heading-label {
    padding-top: 14px;
  }

  .portrait-panel {
    min-height: 420px;
  }

  .portrait-panel::after {
    width: 36%;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Hostinger image visibility overrides: show complete uploaded images without cropping. */
.hero-media,
.portrait-panel,
.service-card-media,
.youtube-placeholder,
.gallery-item,
.media-frame,
.video-frame,
.page-hero-media {
  background-color: var(--white);
}

.portrait-panel::after,
.service-card-media::after {
  display: none;
}

.service-card-media {
  min-height: 230px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.youtube-placeholder,
.portrait-panel::before {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.gallery-item img,
.media-frame img,
.video-frame img,
.page-hero-media img {
  object-fit: contain !important;
  background: var(--white);
}

.gallery-item:hover img {
  transform: none;
}
