:root {
  --ink: #101b17;
  --pine: #12201b;
  --pine-2: #1b2e27;
  --cream: #eee7dc;
  --cream-2: #f7f0e5;
  --sand: #ddd0bd;
  --gold: #c49a5c;
  --gold-2: #d3b577;
  --text: #2e302d;
  --muted: #746f67;
  --line: rgba(16, 27, 23, 0.16);
  --shadow: 0 24px 70px rgba(16, 27, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 12%, rgba(196, 154, 92, 0.16), transparent 32%),
    radial-gradient(circle at 25% 82%, rgba(18, 32, 27, 0.08), transparent 30%),
    linear-gradient(115deg, #f5eee4 0%, #ece2d3 58%, #efe7dc 100%);
  line-height: 1.5;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.site-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: 222px;
  padding: 28px 26px;
  background: linear-gradient(180deg, #10201a 0%, #172820 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.site-sidebar__brand {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.site-sidebar__monogram,
.footer__mark {
  width: 68px;
  height: 68px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.site-sidebar__name {
  color: #fbf4e7;
  font-size: 1.28rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-sidebar__label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-sidebar__nav {
  display: grid;
  gap: 18px;
  margin: 42px 0;
}

.site-sidebar__nav a {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-sidebar__nav a:hover,
.site-sidebar__nav a:focus-visible {
  color: var(--gold-2);
}

.site-sidebar__nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.site-sidebar__bottom {
  display: grid;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-sidebar__bottom a {
  display: inline-flex;
  justify-content: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, #bd945a, #dfc181);
  color: #14221c;
  font-weight: 850;
  border-radius: 0;
}

.site-sidebar__toggle {
  display: none;
}

.site-sidebar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: #fff;
}

.page,
.footer {
  margin-left: 222px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #211e19;
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  max-width: 720px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 3.35rem);
}

h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  font-size: 0.82rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button--primary {
  background: var(--pine);
  color: #fff;
}

.button--plain {
  color: var(--pine);
  padding-inline: 10px;
}

.button--plain::after {
  content: "→";
  margin-left: 12px;
}

.hero {
  min-height: 630px;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(480px, 1.18fr);
  background: var(--cream-2);
}

.hero__copy {
  padding: clamp(46px, 6vw, 82px) clamp(34px, 6vw, 86px);
  align-self: center;
}

.hero__copy>p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: #23241f;
  font-size: 1.04rem;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.hero__metrics {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
}

.hero__metrics article {
  padding-right: 18px;
  border-right: 1px solid rgba(16, 27, 23, 0.14);
}

.hero__metrics article:last-child {
  border-right: 0;
}

.hero__metrics strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 650;
  line-height: 1;
}

.hero__metrics span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero__visual {
  position: relative;
  margin: 0;
  min-height: 630px;
  overflow: hidden;
}

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

.hero__visual figcaption {
  position: absolute;
  right: 7%;
  bottom: 12%;
  width: min(320px, 70%);
  padding: 30px;
  background: rgba(14, 23, 20, 0.83);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero__visual figcaption span {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.hero__visual figcaption strong {
  color: var(--gold-2);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.service-strip {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, minmax(150px, 1fr));
  background: #efe6d8;
  border-top: 1px solid rgba(16, 27, 23, 0.1);
  border-bottom: 1px solid rgba(16, 27, 23, 0.1);
}

.service-strip__intro,
.service-strip__item {
  padding: 42px 28px;
  border-right: 1px solid rgba(16, 27, 23, 0.12);
}

.service-strip__intro {
  padding-left: clamp(32px, 5vw, 84px);
}

.service-strip__item:last-child {
  border-right: 0;
}

.service-strip__item span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.service-strip__item h3 {
  margin-bottom: 12px;
}

.service-strip__item p {
  color: #34342f;
  font-size: 0.94rem;
}

.about {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: #f5efe5;
}

.about__impact {
  padding: 48px 34px;
  background: var(--pine);
  color: rgba(255, 255, 255, 0.82);
}

.about__impact .eyebrow {
  color: var(--gold-2);
}

.about__impact h2 {
  color: #fff;
}

.about__impact p {
  margin-top: 18px;
}

.about__impact a {
  display: inline-flex;
  margin-top: 30px;
  color: var(--gold-2);
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.about__impact a::after {
  content: "→";
  margin-left: 10px;
}

.about__gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  grid-template-rows: 1fr auto;
}

.about__media {
  margin: 0;
  min-height: 330px;
  overflow: hidden;
}

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

.about__media--wide {
  grid-row: span 2;
}

.about__note {
  padding: 38px;
  background: rgba(229, 218, 200, 0.82);
}

.about__note span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about__note p {
  margin-top: 16px;
  color: var(--ink);
}

.process {
  padding: clamp(52px, 7vw, 92px) clamp(24px, 5vw, 84px);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(480px, 1.2fr);
  gap: 54px;
  background: linear-gradient(135deg, #ece3d4 0%, #f7efe3 100%);
}

.process__header {
  align-self: start;
  position: sticky;
  top: 36px;
}

.process__steps {
  display: grid;
  gap: 18px;
}

.process__steps article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(16, 27, 23, 0.14);
}

.process__steps span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process__steps h3 {
  margin-bottom: 8px;
}

.cases {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(580px, 1.28fr);
  background: #efe7db;
}

.cases__side {
  padding: clamp(42px, 6vw, 72px) clamp(28px, 4vw, 58px);
  background: #181e1a;
  color: rgba(255, 255, 255, 0.74);
}

.cases__side .eyebrow {
  color: var(--gold-2);
}

.cases__side h2 {
  color: #fff;
}

.cases__side p {
  margin-top: 18px;
}

.cases__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
}

.case-card {
  min-height: 315px;
  border-left: 1px solid rgba(16, 27, 23, 0.12);
  border-bottom: 1px solid rgba(16, 27, 23, 0.12);
  background: #f7f0e5;
}

.case-card--large {
  grid-row: span 2;
}

.case-card figure {
  margin: 0;
  height: 50%;
  overflow: hidden;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.case-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 10px 0 12px;
}

.case-card--dark {
  display: flex;
  align-items: flex-end;
  background: var(--pine);
  color: rgba(255, 255, 255, 0.78);
}

.case-card--dark h3 {
  color: #fff;
}

.team {
  padding: clamp(52px, 7vw, 90px) clamp(24px, 5vw, 84px);
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(560px, 1.28fr);
  gap: 52px;
  background: #f6efe5;
}

.team__intro p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.team__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.coach-card {
  background: #ece2d2;
  border: 1px solid rgba(16, 27, 23, 0.12);
}

.coach-card--raised {
  margin-top: -28px;
}

.coach-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.coach-card h3 {
  padding: 20px 20px 0;
}

.coach-card p {
  padding: 4px 20px 0;
  color: var(--gold);
  font-weight: 770;
}

.coach-card span {
  display: block;
  padding: 12px 20px 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: #181e1a;
  color: rgba(255, 255, 255, 0.82);
}

.review-card {
  min-height: 220px;
  padding: 42px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #eee5d8;
  color: var(--text);
}

.review-card--dark {
  background: #181e1a;
  color: rgba(255, 255, 255, 0.84);
}

.review-card p {
  font-size: 1.12rem;
}

.review-card span {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.86rem;
}

.contact {
  display: grid;
  grid-template-columns: 420px 1fr 320px;
  background: #f7f0e5;
  border-top: 1px solid rgba(16, 27, 23, 0.12);
}

.contact__visual {
  margin: 0;
  min-height: 300px;
  overflow: hidden;
}

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

.contact__panel {
  padding: 44px 48px;
  background: rgba(180, 137, 78, 0.23);
}

.contact__panel p:not(.eyebrow) {
  margin-top: 16px;
}

.contact__form {
  padding: 40px 30px;
  display: grid;
  gap: 12px;
  border-left: 1px solid rgba(16, 27, 23, 0.12);
}

.contact__form label {
  display: grid;
  gap: 7px;
}

.contact__form span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  border: 1px solid rgba(16, 27, 23, 0.18);
  background: rgba(255, 255, 255, 0.54);
  padding: 13px 14px;
  color: var(--text);
}

.contact__form textarea {
  resize: vertical;
  min-height: 118px;
}

.contact__form button {
  border: 0;
  cursor: pointer;
}

.contact__details {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 22px clamp(24px, 5vw, 84px);
  background: #efe7db;
  color: var(--pine);
  font-weight: 720;
}

.footer {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px clamp(24px, 5vw, 84px);
  background: var(--pine);
  color: rgba(255, 255, 255, 0.74);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__mark {
  width: 54px;
  height: 54px;
}

.footer__brand strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__brand small {
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.footer__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer__policies a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.cookie {
  position: fixed;
  left: calc(222px + 28px);
  right: 28px;
  bottom: 18px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(247, 240, 229, 0.96);
  border: 1px solid rgba(16, 27, 23, 0.18);
  box-shadow: var(--shadow);
}

.cookie.is-visible {
  display: flex;
}

.cookie p {
  flex: 1;
  font-size: 0.9rem;
}

.cookie a {
  text-decoration: underline;
  font-weight: 750;
}

.cookie div {
  display: flex;
  gap: 10px;
}

.cookie button {
  min-width: 110px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.cookie button:first-child {
  background: var(--pine);
  color: #fff;
}

@media (max-width: 1180px) {
  .site-sidebar {
    inset: 0 0 auto 0;
    width: auto;
    height: 80px;
    padding: 12px 18px;
    flex-direction: row;
    align-items: center;
  }

  .site-sidebar__brand {
    grid-auto-flow: column;
    justify-items: start;
    text-align: left;
  }

  .site-sidebar__monogram {
    width: 46px;
    height: 46px;
  }

  .site-sidebar__label {
    display: none;
  }

  .site-sidebar__name {
    font-size: 0.98rem;
  }

  .site-sidebar__toggle {
    display: block;
    border: 0;
    background: transparent;
    padding: 8px;
  }

  .site-sidebar__nav {
    display: none;
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    margin: 0;
    padding: 20px;
    background: #10201a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-sidebar__nav.is-open {
    display: grid;
  }

  .site-sidebar__bottom {
    display: none;
  }

  .page,
  .footer {
    margin-left: 0;
  }

  .hero {
    padding-top: 80px;
  }

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

  .service-strip__intro {
    grid-column: 1 / -1;
    padding-left: 34px;
  }

  .about,
  .cases,
  .team,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .contact__details {
    grid-column: auto;
  }

  .cookie {
    left: 18px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.55rem);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__visual {
    min-height: 420px;
  }

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

  .hero__metrics article:nth-child(2) {
    border-right: 0;
  }

  .service-strip,
  .process,
  .about__gallery,
  .cases__grid,
  .team__cards,
  .reviews {
    grid-template-columns: 1fr;
  }

  .process__header {
    position: static;
  }

  .process__steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about__media--wide {
    grid-row: auto;
  }

  .coach-card--raised {
    margin-top: 0;
  }

  .footer__policies {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {

  .hero__copy,
  .process,
  .team,
  .contact__panel,
  .contact__form,
  .review-card {
    padding: 28px 20px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__visual figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    padding: 20px;
  }

  .service-strip__intro,
  .service-strip__item,
  .about__impact,
  .about__note,
  .cases__side,
  .case-card div {
    padding: 26px 20px;
  }

  .contact__details {
    padding: 22px 20px;
  }

  .cookie {
    left: 10px;
    right: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .site-sidebar__name {
    font-size: 0.84rem;
  }

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

  .hero__metrics article {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 27, 23, 0.12);
    padding-bottom: 12px;
  }

  .cookie div {
    grid-template-columns: 1fr;
  }
}