:root {
  --white: #FFFFFF;
  --soft: #F7F7F5;
  --ink: #2D3748;
  --brand: #1F4E5F;
  --brand-deep: #173D4B;
  --gold: #B8905A;
  --gold-deep: #9B7748;
  --line: #E6E7E3;
  --muted: #65717D;
  --shadow: 0 24px 70px rgba(31, 78, 95, 0.13);
  --radius: 24px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  color: var(--brand);
  font-family: var(--serif);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
}

h3 {
  line-height: 1.3;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: -100px;
  left: 20px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--brand);
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
}

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

.section {
  padding: 120px 0;
}

.section-alt {
  background: var(--soft);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #E4C99F;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 144, 90, 0.42);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.8rem;
}

.button-gold {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(184, 144, 90, 0.23);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-deep);
  box-shadow: 0 16px 34px rgba(184, 144, 90, 0.32);
}

.button-outline {
  color: var(--brand);
  background: transparent;
  border-color: rgba(31, 78, 95, 0.32);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(45, 55, 72, 0.06);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  color: var(--brand);
  line-height: 1.1;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #44505B;
  font-size: 0.8rem;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--brand);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 112px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -210px;
  width: 620px;
  height: 620px;
  background: rgba(247, 247, 245, 0.82);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 95px);
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.76fr);
}

.credentials {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.65;
  text-transform: uppercase;
}

.credentials span {
  margin: 0 6px;
  color: var(--gold);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 31px;
  color: #596570;
  font-size: 1.04rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 38px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
}

.hero-note-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  padding: 0 0 34px 25px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  background: var(--soft);
  border-radius: 180px 180px 24px 24px;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 170px 170px 17px 17px;
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.portrait-card {
  position: absolute;
  right: -22px;
  bottom: 0;
  width: min(290px, 76%);
  padding: 20px 23px;
  color: var(--white);
  background: var(--brand);
  border-left: 4px solid var(--gold);
  box-shadow: 0 16px 40px rgba(31, 78, 95, 0.22);
}

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

.portrait-card strong {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.25;
}

.portrait-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.problem-grid {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 0.85fr 1.15fr;
}

.section-heading p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.centered p:last-child {
  margin-inline: auto;
}

.problem-content {
  padding-top: 17px;
}

.problem-content > p {
  max-width: 680px;
  color: #596570;
  font-size: 1.08rem;
}

.problem-content blockquote {
  position: relative;
  margin: 34px 0 0;
  padding: 31px 34px 31px 41px;
  color: var(--brand);
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 16px 40px rgba(45, 55, 72, 0.06);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.55;
}

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

.help-card {
  min-height: 170px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.help-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 144, 90, 0.52);
  box-shadow: 0 18px 45px rgba(31, 78, 95, 0.08);
}

.help-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--gold-deep);
  background: rgba(184, 144, 90, 0.1);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.help-card p {
  margin: 0;
  color: var(--brand);
  font-weight: 600;
  line-height: 1.45;
}

.method-intro {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1fr 0.9fr;
}

.method-intro h2 {
  margin-bottom: 0;
}

.method-intro h2 span {
  display: block;
  color: var(--gold-deep);
  font-size: 0.86em;
  letter-spacing: 0.015em;
}

.method-intro > p {
  margin-bottom: 9px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  line-height: 1.45;
}

.method-description {
  max-width: 760px;
  margin-top: 42px;
  color: var(--muted);
}

.method-path {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 62px;
  grid-template-columns: repeat(4, 1fr);
}

.method-path::before {
  position: absolute;
  top: 29px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(184, 144, 90, 0.45);
  content: "";
}

.method-step {
  position: relative;
  padding: 0 26px;
  text-align: center;
}

.method-step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 23px;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border: 7px solid var(--soft);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(184, 144, 90, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
}

.method-step h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.method-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.method-quote {
  max-width: 850px;
  margin: 75px auto 0;
  padding: 0 0 0 28px;
  color: var(--brand);
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.5;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
  grid-template-columns: minmax(330px, 0.85fr) 1.15fr;
}

.about-visual {
  position: relative;
  padding: 0 0 28px 28px;
}

.about-visual::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 82%;
  background: var(--soft);
  border-radius: 20px;
  content: "";
}

.about-visual img {
  width: 100%;
  aspect-ratio: 0.91;
  object-fit: cover;
  object-position: 48% 45%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -24px;
  bottom: 0;
  max-width: 215px;
  padding: 20px 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(31, 78, 95, 0.1);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.experience-badge strong {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.experience-badge span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-content p:not(.eyebrow) {
  max-width: 650px;
  color: #596570;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

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

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

.video-cta {
  color: rgba(255, 255, 255, 0.75);
  background: var(--brand);
}

.video-cta-inner {
  display: grid;
  align-items: center;
  gap: 35px;
  grid-template-columns: auto 1fr auto;
}

.video-cta h2 {
  max-width: 650px;
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.video-cta p:last-child {
  max-width: 710px;
  margin-bottom: 0;
}

.video-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.video-icon span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--gold);
}

.contact {
  text-align: center;
}

.contact-inner {
  max-width: 850px;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: var(--muted);
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 75px 0 25px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--brand-deep);
}

.footer-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.8fr 0.8fr 0.8fr;
}

.brand-light span,
.footer-nav h3 {
  color: var(--white);
}

.brand-light small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  max-width: 390px;
  margin-top: 24px;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.83rem;
}

.footer-nav h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-nav a {
  width: fit-content;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1040px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-step {
    padding: 0 12px;
  }

  .about-grid {
    gap: 65px;
  }
}

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

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

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - 72px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px 30px;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(45, 55, 72, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

  .main-nav .button {
    margin-top: 20px;
  }

  .hero {
    padding: 55px 0 90px;
  }

  .hero-grid,
  .problem-grid,
  .method-intro,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(520px, 95%);
    margin-inline: auto;
  }

  .problem-grid,
  .method-intro {
    gap: 25px;
  }

  .problem-content {
    padding-top: 0;
  }

  .method-path {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  .method-path::before {
    display: none;
  }

  .video-cta-inner {
    justify-items: center;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .video-cta p:last-child {
    margin-inline: auto;
  }

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

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .brand span {
    font-size: 1.16rem;
  }

  .brand small {
    letter-spacing: 0.1em;
  }

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

  .credentials span {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

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

  .hero-note {
    align-items: flex-start;
  }

  .hero-visual {
    width: 100%;
    padding: 0 0 29px;
  }

  .portrait-frame {
    aspect-ratio: 0.9;
    border-radius: 130px 130px 19px 19px;
  }

  .portrait-card {
    right: -5px;
    width: 80%;
    padding: 16px 18px;
  }

  .problem-content blockquote {
    padding: 24px 24px 24px 28px;
  }

  .help-grid,
  .method-path,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .help-card {
    min-height: 0;
    padding: 23px;
  }

  .help-card span {
    margin-bottom: 17px;
  }

  .method-step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 0;
    text-align: left;
  }

  .method-step span {
    margin-bottom: 0;
    grid-row: span 2;
  }

  .method-step h3 {
    margin-top: 3px;
  }

  .method-quote {
    margin-top: 55px;
    padding-left: 20px;
  }

  .about-grid {
    gap: 55px;
  }

  .about-visual {
    padding-left: 0;
  }

  .experience-badge {
    right: -5px;
    max-width: 195px;
  }

  .video-icon {
    width: 72px;
    height: 72px;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

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

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

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