:root {
  --ink: #101b2a;
  --ink-soft: #516070;
  --navy: #08111f;
  --navy-light: #0d1b2e;
  --navy-muted: #13253a;
  --paper: #f5f2eb;
  --white: #ffffff;
  --line: rgba(16, 27, 42, 0.13);
  --gold: #bd9858;
  --gold-light: #ddc28f;
  --green: #1f8b62;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 17, 31, 0.92);
  box-shadow: 0 12px 36px rgba(2, 7, 14, 0.2);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(221, 194, 143, 0.65);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
}

.site-menu > a:not(.nav-cta) {
  transition: color 160ms ease;
}

.site-menu > a:not(.nav-cta):hover,
.site-menu > a:not(.nav-cta):focus-visible {
  color: var(--gold-light);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(221, 194, 143, 0.6);
  color: var(--gold-light);
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--navy);
  background: var(--gold-light);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  padding: 150px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(189, 152, 88, 0.13), transparent 28%),
    linear-gradient(140deg, #07101d 0%, #0a1728 54%, #0d2134 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, transparent, black 42%, black);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(221, 194, 143, 0.12);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 118px;
  right: -230px;
  width: 690px;
  height: 690px;
}

.hero-orbit-two {
  top: 223px;
  right: -126px;
  width: 480px;
  height: 480px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 1.18fr) minmax(370px, 0.82fr);
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.eyebrow.dark {
  color: #92713a;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.6vw, 82px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.urgent-cta {
  display: grid;
  width: min(100%, 650px);
  min-height: 82px;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(237, 180, 105, 0.45);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(132, 51, 39, 0.52), rgba(112, 42, 34, 0.3)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  grid-template-columns: auto minmax(0, 1fr) auto;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.urgent-cta:hover,
.urgent-cta:focus-visible {
  border-color: rgba(237, 180, 105, 0.78);
  background:
    linear-gradient(90deg, rgba(151, 56, 42, 0.68), rgba(119, 44, 35, 0.42)),
    rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.urgent-cta-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #ffd8a8;
  background: rgba(255, 216, 168, 0.11);
}

.urgent-cta-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.urgent-cta-copy {
  display: grid;
  gap: 3px;
}

.urgent-cta-copy strong {
  color: #ffd8a8;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.urgent-cta-copy small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.urgent-cta-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffd8a8;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.urgent-cta-action svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button-primary {
  color: var(--navy);
  background: var(--gold-light);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ead2a5;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.88);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.hero-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 600px;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  scroll-margin-top: 94px;
  border: 1px solid rgba(221, 194, 143, 0.2);
  background: #0a1523;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
  aspect-ratio: 0.72;
}

.hero-portrait::before,
.hero-portrait::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero-portrait::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-portrait::after {
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 10, 18, 0.98) 0%, rgba(4, 10, 18, 0.2) 44%, transparent 66%),
    linear-gradient(to right, rgba(4, 10, 18, 0.18), transparent 42%);
}

.hero-portrait picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(0.88) contrast(1.04);
}

.portrait-seal {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(233, 210, 166, 0.7);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(6, 15, 27, 0.58);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  place-items: center;
  backdrop-filter: blur(12px);
}

.hero-portrait figcaption {
  position: absolute;
  right: 44px;
  bottom: 42px;
  left: 44px;
  z-index: 3;
  margin: 0;
}

.hero-portrait figcaption::before {
  display: block;
  width: 38px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--gold-light);
  content: "";
}

.hero-portrait figcaption span,
.hero-portrait figcaption strong {
  display: block;
}

.hero-portrait figcaption span {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-portrait figcaption strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-portrait figcaption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  color: var(--white);
  background: #0e1e30;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-grid strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 38px;
  margin-bottom: 54px;
  grid-template-columns: 0.45fr 1.2fr 0.75fr;
}

.section-heading .eyebrow {
  align-self: start;
  margin-top: 9px;
}

.section-heading h2,
.method h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

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

.practice-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.practice-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.practice-card:hover {
  border-color: rgba(189, 152, 88, 0.42);
  box-shadow: 0 22px 60px rgba(16, 27, 42, 0.1);
  transform: translateY(-6px);
}

.practice-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.practice-card.featured {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 26px 70px rgba(8, 17, 31, 0.18);
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 50px;
  place-items: center;
  border: 1px solid rgba(16, 27, 42, 0.14);
  color: #92713a;
}

.featured .card-icon {
  border-color: rgba(221, 194, 143, 0.35);
  color: var(--gold-light);
}

.card-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.card-number {
  margin: 0 0 12px;
  color: #9a7a42;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.practice-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.practice-card > p:not(.card-number) {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.practice-card.featured > p:not(.card-number) {
  color: rgba(255, 255, 255, 0.6);
}

.practice-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}

.practice-card li {
  position: relative;
  padding-left: 17px;
}

.practice-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.practice-card.featured ul {
  color: rgba(255, 255, 255, 0.57);
}

.practice-card > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #775a2c;
  font-size: 12px;
  font-weight: 600;
}

.practice-card.featured > a {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
}

.practice-card > a span {
  transition: transform 160ms ease;
}

.practice-card > a:hover span {
  transform: translate(3px, -3px);
}

.video-library {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(189, 152, 88, 0.14), transparent 30%),
    #0b1726;
}

.video-library-heading {
  display: grid;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.video-library-heading .eyebrow {
  color: var(--gold-light);
}

.video-library-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.video-library-intro {
  display: grid;
  gap: 22px;
}

.video-library-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.7;
}

.youtube-channel-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.youtube-channel-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 160ms ease;
}

.youtube-channel-link:hover svg,
.youtube-channel-link:focus-visible svg {
  transform: translateX(3px);
}

.video-rail {
  display: grid;
  gap: 18px;
  padding: 2px 0 24px;
  overflow-x: auto;
  grid-auto-columns: minmax(260px, 320px);
  grid-auto-flow: column;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(221, 194, 143, 0.55) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.video-rail::-webkit-scrollbar {
  height: 7px;
}

.video-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.video-rail::-webkit-scrollbar-thumb {
  background: rgba(221, 194, 143, 0.55);
}

.video-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  scroll-snap-align: start;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #050b12;
  aspect-ratio: 9 / 16;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-copy {
  min-height: 116px;
  padding: 20px;
}

.video-card-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-card-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.video-swipe-hint {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.method {
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(189, 152, 88, 0.1), transparent 30%),
    var(--navy);
}

.method-layout {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: 0.85fr 1.15fr;
}

.method-copy {
  position: sticky;
  top: 130px;
}

.method-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.57);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(221, 194, 143, 0.6);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.method-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 50px 1fr;
}

.method-steps li:first-child {
  padding-top: 0;
}

.method-steps > li > span {
  width: 40px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.method-steps h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.49);
  font-size: 14px;
}

.about {
  background: #eeebe3;
}

.about-layout {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about-visual {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(189, 152, 88, 0.22);
  background: #0d1b2b;
  box-shadow: 0 30px 80px rgba(16, 27, 42, 0.16);
}

.about-visual::before,
.about-visual::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.about-visual::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-visual::after {
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 12, 21, 0.94) 0%, rgba(5, 12, 21, 0.12) 48%, transparent 70%),
    linear-gradient(to right, rgba(5, 12, 21, 0.18), transparent 50%);
}

.about-visual picture {
  position: absolute;
  inset: 0;
  display: block;
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.84) contrast(1.04);
}

.about-visual .about-main img {
  object-position: 50% 77%;
}

.about-visual .about-inset {
  z-index: 3;
  top: 26px;
  right: 26px;
  bottom: auto;
  left: auto;
  width: 34%;
  height: auto;
  overflow: hidden;
  border: 4px solid rgba(238, 235, 227, 0.94);
  background: #d8d1c4;
  box-shadow: 0 20px 50px rgba(5, 12, 21, 0.3);
  aspect-ratio: 0.78;
}

.about-visual .about-inset img {
  object-position: 50% 35%;
  filter: saturate(0.88) contrast(1.03);
}

.about-monogram {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 34px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(221, 194, 143, 0.72);
  color: var(--gold-light);
  background: rgba(6, 15, 27, 0.58);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.about-caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-caption span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-caption strong {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.about-copy blockquote {
  margin: 32px 0 0;
  padding: 18px 0 18px 24px;
  border-left: 2px solid var(--gold);
  color: #26394d;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
}

.portrait-editorial {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(189, 152, 88, 0.13), transparent 30%),
    #071423;
}

.portrait-editorial::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(221, 194, 143, 0.12);
  content: "";
  pointer-events: none;
}

.portrait-editorial-layout {
  position: relative;
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: 0.88fr 1.12fr;
}

.portrait-editorial-copy {
  max-width: 650px;
}

.portrait-editorial-copy .eyebrow {
  color: rgba(255, 255, 255, 0.56);
}

.portrait-editorial-copy h2 {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.02;
}

.portrait-editorial-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.portrait-editorial-signature {
  display: grid;
  gap: 8px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.portrait-editorial-signature span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-editorial-signature strong {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
}

.portrait-editorial-gallery {
  position: relative;
  min-height: 660px;
}

.portrait-editorial-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 194, 143, 0.28);
  background: #0d1b2b;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.portrait-editorial-photo-primary {
  inset: 0 0 0 auto;
  width: 77%;
}

.portrait-editorial-photo-secondary {
  z-index: 2;
  bottom: 34px;
  left: 0;
  width: 39%;
  height: 56%;
  border: 5px solid #071423;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.portrait-editorial-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 12, 21, 0.86), transparent 42%);
  content: "";
  pointer-events: none;
}

.portrait-editorial-photo picture,
.portrait-editorial-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.portrait-editorial-photo img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.portrait-editorial-photo-primary img {
  object-position: 50% 40%;
}

.portrait-editorial-photo-secondary img {
  object-position: 50% 28%;
}

.portrait-editorial-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.portrait-editorial-photo-primary figcaption {
  left: 30%;
}

.portrait-editorial-photo figcaption span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-editorial-photo figcaption strong {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.7fr 1.3fr;
}

.section-heading.compact {
  display: block;
  margin: 0;
}

.section-heading.compact h2 {
  font-size: clamp(36px, 3.6vw, 50px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: #91703a;
  font-size: 24px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 0 25px;
  padding-right: 48px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  color: var(--white);
  background: #9b7840;
}

.contact-shape {
  position: absolute;
  top: -240px;
  left: 45%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.contact-shape::before {
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.contact-layout {
  position: relative;
  display: grid;
  align-items: end;
  gap: 90px;
  grid-template-columns: 1.3fr 0.7fr;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.contact h2 {
  max-width: 760px;
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-action {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: #f8f2e6;
}

.contact-action small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 60px 0 26px;
  color: var(--white);
  background: #07101c;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  display: grid;
  align-items: start;
  gap: 24px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  grid-template-columns: 0.75fr 1.2fr 1.05fr;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(221, 194, 143, 0.7);
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  width: auto;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 36px rgba(8, 17, 31, 0.24);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  box-shadow: 0 20px 42px rgba(8, 17, 31, 0.3);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 25px;
  fill: currentColor;
}

.floating-whatsapp span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  :root {
    --container: min(100% - 36px, 820px);
  }

  .site-menu {
    gap: 18px;
  }

  .site-menu > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 80px;
  }

  .hero-layout {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-portrait {
    max-width: 520px;
    min-height: 620px;
    justify-self: start;
    aspect-ratio: 0.84;
  }

  .section-heading {
    gap: 24px;
    grid-template-columns: 1fr 2fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .practice-cards {
    grid-template-columns: 1fr;
  }

  .video-library-heading {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: auto;
  }

  .method-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .portrait-editorial-layout {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .portrait-editorial-gallery {
    width: min(100%, 620px);
    min-height: 720px;
  }

  .method-copy {
    position: static;
  }

  .about-visual {
    max-width: 700px;
  }

  .faq-layout {
    gap: 44px;
  }

  .contact-action {
    max-width: 480px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom a {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 32px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 100px 28px 30px;
    background: rgba(7, 16, 29, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-menu > a:not(.nav-cta) {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-display);
    font-size: 23px;
  }

  .site-menu .nav-cta {
    margin-top: 28px;
    padding: 16px 20px;
    text-align: center;
  }

  .hero {
    padding: 132px 0 66px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    letter-spacing: -0.055em;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .urgent-cta {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .urgent-cta-action {
    grid-column: 2;
  }

  .hero-portrait {
    min-height: 430px;
    aspect-ratio: 0.8;
  }

  .hero-portrait img {
    object-position: 50% 18%;
  }

  .portrait-seal {
    top: 26px;
    right: 26px;
  }

  .hero-portrait figcaption {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 88px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .method h2,
  .about h2,
  .portrait-editorial h2,
  .contact h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .section-heading > p:last-child {
    margin-top: 20px;
  }

  .practice-card {
    padding: 28px;
  }

  .video-library-heading {
    margin-bottom: 34px;
  }

  .video-library-heading h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .video-rail {
    margin-right: -16px;
    grid-auto-columns: minmax(246px, 78vw);
  }

  .card-icon {
    margin-bottom: 38px;
  }

  .method-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    gap: 46px;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-visual .about-inset {
    top: 20px;
    right: 20px;
    width: 38%;
    border-width: 3px;
  }

  .about-visual img {
    object-position: 50% 34%;
  }

  .about-visual .about-main img {
    object-position: 50% 76%;
  }

  .about-visual .about-inset img {
    object-position: 50% 35%;
  }

  .about-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-caption strong {
    text-align: left;
  }

  .portrait-editorial {
    padding: 82px 0;
  }

  .portrait-editorial::before {
    inset: 12px;
  }

  .portrait-editorial-layout {
    gap: 42px;
  }

  .portrait-editorial-gallery {
    min-height: 590px;
  }

  .portrait-editorial-photo-primary {
    width: 84%;
  }

  .portrait-editorial-photo-secondary {
    bottom: 26px;
    width: 46%;
    height: 43%;
    border-width: 4px;
  }

  .portrait-editorial-photo figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .portrait-editorial-photo-primary figcaption {
    left: 34%;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .contact {
    padding: 76px 0;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom a {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
