:root {
  --color-primary: #4f1b7d;
  --color-primary-deep: #39104f;
  --color-primary-soft: #f3e3fa;
  --color-accent: #ffae1f;
  --color-surface: #f7f1e7;
  --color-surface-soft: rgba(255, 255, 255, 0.82);
  --color-body: #756b63;
  --color-body-deep: #4f4a48;
  --color-border: #e7dccf;
  --color-white: #ffffff;
  --header-height: 90px;
  --container: 1440px;
  --gutter: 28px;
  --shadow-soft: 0 20px 40px rgba(54, 17, 79, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--color-body);
  background: var(--color-white);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  position: relative;
}

.section-subtitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-subtitle::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  flex: 0 0 30px;
}

.section-subtitle--compact {
  margin-bottom: 12px;
  color: #430c63;
  gap: 0;
}

.section-subtitle--compact::before {
  display: none;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  flex: 0 0 30px;
}

.section-kicker--spaced {
  margin-bottom: 42px;
}

.section-kicker--spaced::before {
  display: none;
}

.section-title {
  margin: 0;
  font-family: "Cabin", sans-serif;
  font-size: 60px;
  line-height: 60px;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-title--light {
  color: var(--color-white);
}

.section-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-body);
}

.section-copy + .section-copy {
  margin-top: 32px;
}

.section-copy--light {
  color: rgba(255, 255, 255, 0.96);
}

.section-copy--sm {
  font-size: 14px;
  line-height: 1.72;
  color: var(--color-body-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 30px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-sticky {
  background: rgba(43, 9, 66, 0.96);
  box-shadow: 0 12px 30px rgba(21, 8, 31, 0.2);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.site-logo,
.menu-toggle {
  position: relative;
  z-index: 3;
}

.site-logo img {
  width: 60px;
  height: 60px;
/*  object-fit: cover;*/
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
    width: 100%;
}

.site-nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav__link.is-active::after,
.site-nav__link:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 8px; }
.menu-toggle span:nth-child(2) { top: 15px; }
.menu-toggle span:nth-child(3) { top: 22px; }

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.about-hero {
  position: relative;
  min-height: 703px;
  padding-top: var(--header-height);
  background: #201123;
}

@media (min-width: 1024px) {
  .about-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 110px;
  }
}

.about-hero__media,
.about-hero__veil {
  position: absolute;
  inset: 0;
}

.about-hero__media {
  overflow: hidden;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__image--mobile {
  display: none;
}

.about-hero__veil {
 /* background:
    linear-gradient(90deg, rgba(20, 5, 28, 0.72) 0%, rgba(20, 5, 28, 0.42) 43%, rgba(20, 5, 28, 0.74) 100%),
    linear-gradient(180deg, rgba(20, 5, 28, 0.1) 0%, rgba(20, 5, 28, 0.78) 100%);
*/}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 155px;
}

.about-hero__content .section-title {
  max-width: 460px;
}

.about-hero__copy {
  max-width: 626px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.56;
}

.about-hero__content .section-subtitle {
  margin-bottom: 30px;
}

.about-hero__content .section-subtitle::before {
  display: none;
}

@media (min-width: 1024px) {
  .about-hero__content {
    padding-top: 0;
  }

  .about-hero__content .section-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
  }
}

.scroll-cue {
  position: absolute;
  right: 44px;
  bottom: 0px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
}

.scroll-cue__line {
  width: 1px;
  height: 30px;
  background: var(--color-accent);
}

.scroll-cue__text {
  font-size: 12px;
  line-height: 1;
}

.belief-section {
  padding: 50px 0;
}

/*.belief-section .container {
  padding-inline: 50px;
}*/

.belief-section__layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 98px;
}

.belief-section__copy {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 0px;
}

/*.belief-section__copy .section-subtitle {
  margin-bottom: 40px;
}*/

.belief-section__copy .section-title {
  max-width: 708px;
  margin-bottom: 40px;
}

.belief-section__media {
  flex: 0 0 449px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}

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

.founder-section {
  background: var(--color-primary-soft);
  padding: 0;
}

.founder-section__layout {
  display: flex;
  align-items: stretch;
  gap: 0;
      padding-left: 0;
}

.founder-section__media {
  flex: 0 0 50%;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.founder-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.founder-section__image--mobile {
  display: none;
}

.founder-section__copy {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 50px 50px 64px 50px;
}

.founder-section__copy .section-title {
  margin-bottom: 30px;
  font-size: 60px;
  line-height: 1;
  color: #430c63;
}

.founder-section .section-subtitle--compact {
  margin-bottom: 30px;
  font-size: 14px;
  font-family: "Cabin", sans-serif;
  line-height: 1.1;
}

.founder-section .section-kicker {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.1;
}

.founder-section .section-kicker--spaced {
  margin-top: 0px;
  margin-bottom: 45px;
  font-size: 14px;
  line-height: normal;
}

.founder-section .section-copy--sm {
  max-width: 545px;
  font-size: 16px;
  line-height: 1.72;
  color: #272727;
}

.founder-section__meta {
  margin-top: 28px;
}

.meta-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary-deep);
}

.founder-section .meta-title {
  color: #430c63;
  margin-bottom: 20px;
}

.meta-copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-body-deep);
}

.founder-section .meta-copy {
  font-size: 14px;
  line-height: normal;
}

.process-section {
  padding: 50px 0;
  background: #f7f4ef;
}

.process-section__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
}

.process-section__heading {
  flex: 0 0 46%;
}

.process-section__heading .section-title {
  max-width: 444px;
}

.process-section__lede {
  flex: 0 0 46%;
  /*padding-bottom: 18px;
  margin-right: 34px;*/
  font-size: 20px;
  line-height: normal;
}

.process-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border);
}

.process-item__index,
.process-item__title,
.process-item__copy {
  margin: 0;
}

.process-item__index {
  flex: 0 0 74px;
  font-size: 16px;
  line-height: normal;
  color: #7A6E65;
  font-weight: 700;
}

.process-item__title {
  flex: 0 0 43%;
  font-size: 16px;
  font-weight: 700;
  font-family: "Cabin", sans-serif;
  line-height: 1.5;
  color: #7a6e65;
}

.process-item__copy {
  flex: 0 0 43%;
  font-size: 16px;
  line-height: 1.5;
}

.drive-section {
  position: relative;
  overflow: hidden;
}

.drive-section__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.drive-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drive-section__image--mobile {
  display: none;
}

.drive-section .container {
  position: relative;
  z-index: 1;
  padding-top: 58px;
  padding-bottom: 54px;
}

.drive-card {
  width: min(100%, 670px);
  padding: 30px;
  background: var(--color-surface-soft);
  box-shadow: var(--shadow-soft);
}

.drive-card .section-subtitle {
  margin-bottom: 30px;
}

.drive-card .section-title {
  margin-bottom: 30px;
}

.drive-card .section-copy {
  font-size: 20px;
  color: #7a6e65;
}

.contact-section {
  padding: 78px 0 90px;
}

.contact-section__layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.contact-section__copy {
  flex: 0 1 470px;
}

.contact-section__copy .section-title {
  max-width: 470px;
}

.contact-section__form-wrap {
  flex: 0 1 716px;
  min-width: 0;
  padding-top: 130px;
}

.contact-section__lede {
  max-width: 716px;
  margin-bottom: 50px;
}

.contact-form__row {
  display: flex;
  gap: 30px;
}

.contact-form__field {
  display: block;
  flex: 1 1 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #eedfca;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-body);
  outline: none;
}

.contact-form input {
  height: 50px;
  padding: 0 18px;
}

.contact-form textarea {
  height: 100px;
  padding: 15px 18px;
  margin-top: 20px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c6b7a5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
}

.contact-form__submit {
  width: 343px;
  min-width: 190px;
  margin-top: 30px;
}

.site-footer {
  background: var(--color-primary-deep);
  color: var(--color-white);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  flex-wrap: wrap;
  min-height: 193px;
  padding-block: 34px 28px;
}

.site-footer__logo {
  flex: 0 0 93px;
}

.site-footer__logo img {
  width: 93px;
  height: 93px;
/*  object-fit: cover;*/
}

.site-footer__nav {
  display: flex;
  flex: 1 1 0;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer__copyright {
  flex: 0 0 100%;
  order: 4;
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.site-footer__socials {
  flex: 0 0 auto;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer__socials img {
  width: 30px;
  height: 30px;
}

@media (max-width: 1023px) {
  :root {
    --gutter: 15px;
  }

  .site-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(78vw, 320px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: unset;
        gap: 22px;
        padding: 110px 30px 40px;
        background: rgba(255, 255, 255, 0.98);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        background: rgba(25, 3, 38, 0.95);
    }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav__link::after {
    left: 0;
    right: auto;
    width: 100%;
    bottom: -8px;
  }

  .menu-toggle {
    display: block;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.08;
  }

  .section-subtitle {
    gap: 10px;
    margin-bottom: 30px;
    font-size: 11px;
  }

  .section-copy,
  .section-copy--sm {
    font-size: 14px;
    line-height: 1.58;
  }

  .section-copy + .section-copy {
    margin-top: 20px;
  }

  .section-kicker {
    gap: 10px;
    margin-bottom: 10px;
    font-size: 10px;
  }

  .section-kicker::before {
    width: 18px;
    flex-basis: 18px;
  }

  .section-kicker--spaced {
    margin-bottom: 24px;
  }

  .about-hero {
    min-height: 700px;
  }

  .about-hero__image--desktop {
    display: none;
  }

  .about-hero__image--mobile {
    display: block;
  }

  .about-hero__veil {
    background:
      linear-gradient(180deg, rgba(25, 8, 33, 0.42) 0%, rgba(25, 8, 33, 0.78) 100%),
      linear-gradient(90deg, rgba(25, 8, 33, 0.55) 0%, rgba(25, 8, 33, 0.28) 100%);
  }

  .about-hero__content {
    max-width: 414px;
    padding-top: 216px;
  }

  .about-hero__content .section-title {
    max-width: 275px;
  }

  .about-hero__copy {
    max-width: 280px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
  }

  .scroll-cue {
    right: auto;
   margin-top: 106px;
       position: relative;
  }

  .scroll-cue__line {
    height: 20px;
  }

  .scroll-cue__text {
    font-size: 10px;
  }

  .belief-section {
    padding: 50px 0;
  }

  /*.belief-section__copy .section-subtitle {
    margin-bottom: 30px;
  }*/

  .belief-section .section-copy {
    line-height: normal;
  }

  .belief-section__layout,
  .founder-section__layout,
  .process-section__intro,
  .contact-section__layout,
  .contact-form__row,
  .site-footer__inner {
    flex-direction: column;
    gap: 26px;
  }

  .belief-section__copy {
    padding-top: 0;
  }

  .belief-section__copy .section-title {
    max-width: 312px;
    margin-bottom: 30px;
  }

  .belief-section__media {
    flex-basis: auto;
    order: 2;
  }

  .belief-section__media img {
    aspect-ratio: auto;
  }

  .founder-section__layout {
    gap: 0;
  }

  .founder-section__media {
    flex-basis: auto;
    margin-inline: calc(-1 * var(--gutter));
  }

  .founder-section__image--desktop {
    display: none;
  }

  .founder-section__image--mobile {
    display: block;
  }

  .founder-section__image {
    width: 100%;
    height: auto;
  }

  .founder-section__copy {
    padding: 0 15px 33px;
  }

  .founder-section__copy .section-title {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .founder-section .section-subtitle--compact {
    padding-top: 30px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .founder-section .section-kicker {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .founder-section .section-kicker--spaced {
    margin-top: 8px;
    margin-bottom: 22px;
  }

  .meta-title,
  .meta-copy {
    font-size: 14px;
    line-height: 1.5;
  }

  .process-section {
    padding: 30px 0;
  }

  .process-section .section-subtitle {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .process-section__intro {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .process-section__heading {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .process-section__heading,
  .process-section__lede,
  .process-item__title,
  .process-item__copy {
    flex: none;
  }

  .process-section__heading .section-title {
    max-width: none;
  }

  .process-section__lede {
    margin-right: 0;
    padding-bottom: 0;
    color: #7a6e65;
  }

  .process-item {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .process-item__index,
  .process-item__title,
  .process-item__copy {
    flex: none;
    font-size: 16px;
    line-height: normal;
  }

  .process-item__title {
    font-weight: 700;
  }

  .drive-section__image--desktop {
    display: none;
  }

  .drive-section__image--mobile {
    display: block;
  }

  .drive-section .container {
    padding-top: 49px;
    padding-bottom: 32px;
    height: 700px;
  }

  .drive-card {
    width: min(100%, 100%);
    padding: 30px;
  }

  .drive-card .section-title {
    margin-bottom: 30px;
  }

  .drive-card .section-copy {
    font-size: 14px;
  }

  .contact-section {
    padding: 50px 0 50px;
  }

  .contact-section__copy .section-title {
    max-width: 300px;
  }

  .contact-section__lede {
    margin-bottom: 16px;
  }

  .contact-form__row {
    gap: 10px;
  }

  .contact-form textarea {
    margin-top: 10px;
  }

  .contact-form__submit {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
  }

  .site-footer__inner {
    align-items: flex-start;
    gap: 0;
    min-height: auto;
    padding: 50px 30px;
  }

  .site-footer__logo {
    margin-bottom: 50px;
  }

  .site-footer__nav {
  flex: 0 1 auto;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px 30px;
        font-size: 14px;
        margin-bottom: 50px;
        width: 289px;
  }

  .site-footer__copyright {
    order: 0;
    text-align: left;
    font-size: 12px;
    margin-bottom: 30px;
  }

  .site-footer__socials {
    justify-content: flex-start;
    gap: 30px;
  }

  .contact-section__copy {
  flex: 0 1 100px;
}
.contact-section__form-wrap {
    flex: 0 1 365px;
    padding-top: 0px;
}
}

/* 1.1.25: About owns its scroll-cue geometry; Home styles must never leak here. */
body.about-page .about-hero .scroll-cue {
  position: absolute;
  left: auto;
  right: 44px;
  bottom: 0;
  flex-direction: row;
  align-items: center;
  transform: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1023px) {
  body.about-page .about-hero .scroll-cue {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    flex-direction: row;
    transform: none;
    margin-top: 106px;
    padding-bottom: 0;
  }
}

