/* =====================================================
   SASHA GLOBAL STYLES
====================================================== */


/* =====================================================
   FONT
====================================================== */

@import url(
  "https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&display=swap"
);


/* =====================================================
   GLOBAL VARIABLES
====================================================== */

:root {

  /* -------------------------------------------------
     CORE COLOURS
  -------------------------------------------------- */

  --sasha-navy: #262262;
  --sasha-purple: #392c75;
  --sasha-lavender: #4f50a2;
  --sasha-pink: #f282aa;
  --sasha-white: #ffffff;


  /* -------------------------------------------------
     TRANSPARENT WHITES
  -------------------------------------------------- */

  --sasha-white-04: rgba(255, 255, 255, 0.04);
  --sasha-white-06: rgba(255, 255, 255, 0.06);
  --sasha-white-08: rgba(255, 255, 255, 0.08);
  --sasha-white-10: rgba(255, 255, 255, 0.10);
  --sasha-white-14: rgba(255, 255, 255, 0.14);
  --sasha-white-18: rgba(255, 255, 255, 0.18);
  --sasha-white-25: rgba(255, 255, 255, 0.25);
  --sasha-white-40: rgba(255, 255, 255, 0.40);


  /* -------------------------------------------------
     PAGE WIDTH AND SPACING
  -------------------------------------------------- */

  --sasha-container-width: 1080px;

  --sasha-content-padding:
    clamp(1.25rem, 4vw, 3rem);

  --sasha-section-space:
    clamp(4rem, 8vw, 7.5rem);


  /* -------------------------------------------------
     BORDER RADII
  -------------------------------------------------- */

  --sasha-radius-small: 14px;
  --sasha-radius-medium: 22px;
  --sasha-radius-large: 32px;

}


/* =====================================================
   PAGE FOUNDATION
====================================================== */

html {
  box-sizing: border-box;
}


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


/* =====================================================
   BODY
====================================================== */

body {
  margin: 0;

  min-height: 100vh;

  background:
    radial-gradient(
      circle at 78% 70%,
      rgba(79, 80, 162, 0.23),
      transparent 34rem
    ),
    linear-gradient(
      180deg,
      var(--sasha-purple) 0%,
      var(--sasha-navy) 100%
    );

  color: var(--sasha-white);

  font-family:
    "Figtree",
    sans-serif;

  font-size: 16px;
  line-height: 1.45;
}


/* =====================================================
   GLOBAL ELEMENTS
====================================================== */

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


a {
  color: inherit;
}


button,
input,
textarea,
select {
  font: inherit;
}


/* =====================================================
   GLOBAL PAGE CONTAINER
====================================================== */

.sasha-container {
  position: relative;

  width:
    min(
      calc(
        100% -
        (var(--sasha-content-padding) * 2)
      ),
      var(--sasha-container-width)
    );

  margin: 0 auto;
}


/* =====================================================
   GLOBAL SECTION SPACING
====================================================== */

.sasha-section {
  position: relative;

  padding:
    var(--sasha-section-space)
    0;
}


/* =====================================================
   ACCESSIBILITY
====================================================== */

.visually-hidden {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  white-space: nowrap;

  border: 0;

  clip:
    rect(0, 0, 0, 0);
}


/* =====================================================
   GLOBAL FOCUS STATE
====================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline:
    3px solid
    var(--sasha-pink);

  outline-offset: 4px;
}


/* =====================================================
   SASHA HOMEPAGE SERVICES
===================================================== */

.sasha-home-services {
  position: relative;

  padding:
    clamp(4.5rem, 8vw, 7rem)
    0
    clamp(5rem, 9vw, 8rem);

  color: var(--sasha-white);
}

/* =====================================================
   SASHA MAIN CONTENT
====================================================== */

.sasha-main-content {
  position: relative;
  z-index: 1;

  width: 100%;

  margin: 0;
  padding: 0;
  margin-top: 5rem;
}


/* =====================================================
   SERVICES LIST
===================================================== */

.sasha-home-services-list {
  display: grid;

  gap: clamp(2.75rem, 5vw, 4rem);

  width: min(100%, 760px);

  margin: 0 auto;
}


/* =====================================================
   SERVICE ROW
===================================================== */

.sasha-home-service {
  display: grid;

  grid-template-columns:
    202px
    minmax(0, 1fr);

  align-items: stretch;

  gap: 36px;
}


/* =====================================================
   SERVICE FEATURE CARD
===================================================== */

.sasha-home-service-feature {
  display: flex;

  min-height: 196px;

  align-items: center;
  justify-content: flex-start;
  flex-direction: column;

  padding:
    1.15rem
    1rem
    0.9rem;

  color: var(--sasha-white);
  background: rgba(255, 255, 255, 0.025);

  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;

  text-align: center;
  text-decoration: none;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}


.sasha-home-service-feature:hover {
  background: var(--sasha-white-06);
  border-color: var(--sasha-white-40);
  transform: translateY(-2px);
}


.sasha-home-service-feature:focus-visible {
  outline: 3px solid var(--sasha-pink);
  outline-offset: 4px;
}


.sasha-home-service-feature h3 {
  margin: 0;

  color: var(--sasha-white);

  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;

  text-transform: uppercase;
}


.sasha-home-service-feature img {
  width: auto;
  height: 125px;

  margin-top: 0.5rem;

  object-fit: contain;
}


/* =====================================================
   PROMPT PANEL
===================================================== */

.sasha-home-service-prompt {
  display: flex;

  min-width: 0;
  min-height: 196px;

  align-items: center;

  padding:
    2rem
    2.1rem;

  background: rgba(255, 255, 255, 0.025);

  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 44px;
}


/* =====================================================
   PROMPT BUTTON
===================================================== */

.sasha-home-service-prompt-button {
  display: grid;

  grid-template-columns:
    1.8rem
    minmax(0, 1fr);

  align-items: center;

  gap: 0.65rem;

  width: 100%;
  min-height: 62px;

  margin: 0;

  padding:
    0.65rem
    1rem;

  color: var(--sasha-white);

  background:
    linear-gradient(
      90deg,
      rgba(162, 151, 221, 0.92) 0%,
      rgba(56, 77, 144, 0.96) 100%
    );

  border: 2px solid var(--sasha-white);
  border-radius: 999px;

  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.18;

  text-align: left;

  cursor: pointer;

  transition:
    filter 180ms ease,
    transform 180ms ease;
}


.sasha-home-service-prompt-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}


.sasha-home-service-prompt-button:focus-visible {
  outline: 3px solid var(--sasha-pink);
  outline-offset: 4px;
}


/* =====================================================
   PLUS ICON
===================================================== */

.sasha-home-service-plus {
  position: relative;

  display: block;

  width: 1.5rem;
  height: 1.5rem;
}


.sasha-home-service-plus::before,
.sasha-home-service-plus::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 1.2rem;
  height: 2px;

  background: var(--sasha-white);

  transform:
    translate(-50%, -50%);
}


.sasha-home-service-plus::after {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}


/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 900px) {

  .sasha-home-services-list {
    width: min(100%, 720px);
  }


  .sasha-home-service {
    grid-template-columns:
      185px
      minmax(0, 1fr);

    gap: 1.75rem;
  }


  .sasha-home-service-feature,
  .sasha-home-service-prompt {
    min-height: 185px;
  }


  .sasha-home-service-prompt {
    padding:
      1.75rem
      1.6rem;
  }


  .sasha-home-service-feature img {
    height: 115px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 680px) {

  .sasha-home-services {
    padding:
      4rem
      0
      5rem;
  }


  .sasha-home-services-list {
    width: min(100%, 430px);

    gap: 2.5rem;
  }


  .sasha-home-service {
    grid-template-columns: 1fr;

    gap: 1rem;
  }


  .sasha-home-service-feature {
    min-height: 210px;

    padding-top: 1.3rem;
  }


  .sasha-home-service-feature img {
    height: 145px;
  }


  .sasha-home-service-prompt {
    min-height: auto;

    padding:
      1.35rem
      1.25rem;

    border-radius: 30px;
  }


  .sasha-home-service-prompt-button {
    min-height: 64px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media screen and (max-width: 460px) {

  .sasha-home-services-list {
    width: 100%;
  }


  .sasha-home-service-feature {
    min-height: 195px;
  }


  .sasha-home-service-feature img {
    height: 130px;
  }


  .sasha-home-service-prompt {
    padding:
      1rem
      0.9rem;
  }


  .sasha-home-service-prompt-button {
    grid-template-columns:
      1.6rem
      minmax(0, 1fr);

    padding:
      0.75rem
      0.85rem;

    font-size: 0.9rem;
  }

}



/* =====================================================
   SASHA HOMEPAGE LEARNING / CAPABILITIES
===================================================== */

.sasha-home-learning {
  position: relative;

  padding:
    clamp(3.25rem, 6vw, 5rem)
    0
    clamp(4.5rem, 8vw, 7rem);

  color: var(--sasha-white);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.sasha-home-learning-heading {
  width: min(100%, 980px);

  margin:
    0
    auto
    clamp(2.5rem, 5vw, 4rem);

  text-align: center;
}


.sasha-home-learning-eyebrow {
  margin:
    0
    0
    0.55rem;

  color: var(--sasha-pink);

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  text-transform: uppercase;
}


.sasha-home-learning-heading h2 {
  margin: 0;

  color: var(--sasha-white);

  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}


/* =====================================================
   CAPABILITY GRID
===================================================== */

.sasha-home-learning-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: clamp(1.5rem, 3vw, 2.25rem);

  width: min(100%, 1040px);

  margin: 0 auto;
}


/* =====================================================
   CAPABILITY CARD
===================================================== */

.sasha-home-learning-card {
  display: flex;

  min-width: 0;
  min-height: 390px;

  align-items: center;
  justify-content: flex-start;
  flex-direction: column;

  padding:
    clamp(2rem, 4vw, 3rem)
    clamp(1.4rem, 2.5vw, 2rem)
    clamp(2rem, 4vw, 2.75rem);

  text-align: center;

  background: rgba(255, 255, 255, 0.025);

  border: 2px solid rgba(255, 255, 255, 0.31);
  border-radius: 18px;
}


/* =====================================================
   CAPABILITY NUMBER
===================================================== */

.sasha-home-learning-number {
  margin: 0;

  color: var(--sasha-pink);

  font-size: clamp(3.8rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.92;
}


/* =====================================================
   CAPABILITY TITLE
===================================================== */

.sasha-home-learning-card h3 {
  margin:
    1.25rem
    0
    0;

  color: var(--sasha-white);

  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 800;
  line-height: 1.15;

  text-transform: uppercase;
}


/* =====================================================
   CAPABILITY TAGLINE
===================================================== */

.sasha-home-learning-tagline {
  margin:
    0.8rem
    0
    0;

  color: var(--sasha-white);

  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
}


/* =====================================================
   CAPABILITY DESCRIPTION
===================================================== */

.sasha-home-learning-description {
  margin:
    1.5rem
    0
    0;

  color: var(--sasha-white);

  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.5;
}


/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 900px) {

  .sasha-home-learning-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    width: min(100%, 720px);

    gap: 1.75rem;
  }


  .sasha-home-learning-card {
    min-height: 360px;

    padding:
      2.5rem
      1.5rem
      2.25rem;
  }


  .sasha-home-learning-card:last-child {
    grid-column: 1 / -1;

    width: calc(50% - 0.875rem);

    justify-self: center;
  }


  .sasha-home-learning-number {
    font-size: clamp(4rem, 9vw, 5.25rem);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 680px) {

  .sasha-home-learning {
    padding:
      3.5rem
      0
      4.5rem;
  }


  .sasha-home-learning-heading {
    margin-bottom: 2.5rem;
  }


  .sasha-home-learning-grid {
    grid-template-columns: 1fr;

    width: min(100%, 430px);

    gap: 1.5rem;
  }


  .sasha-home-learning-card,
  .sasha-home-learning-card:last-child {
    grid-column: auto;

    width: 100%;
    min-height: 330px;

    padding:
      2.5rem
      1.5rem
      2.25rem;
  }


  .sasha-home-learning-number {
    font-size: 4.5rem;
  }


  .sasha-home-learning-card h3 {
    font-size: 1.3rem;
  }


  .sasha-home-learning-description {
    font-size: 1rem;
    line-height: 1.45;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media screen and (max-width: 460px) {

  .sasha-home-learning-grid {
    width: 100%;
  }


  .sasha-home-learning-card,
  .sasha-home-learning-card:last-child {
    min-height: 310px;

    padding:
      2.25rem
      1rem
      2rem;

    border-radius: 16px;
  }


  .sasha-home-learning-number {
    font-size: 4rem;
  }


  .sasha-home-learning-card h3 {
    font-size: 1.15rem;
  }


  .sasha-home-learning-tagline {
    font-size: 1rem;
  }


  .sasha-home-learning-description {
    margin-top: 1.25rem;

    font-size: 0.95rem;
  }

}

/* =====================================================
   SASHA HOMEPAGE BENEFITS
===================================================== */

.sasha-home-benefits {
  position: relative;

  color: var(--sasha-white);
}


/* =====================================================
   BENEFITS LAYOUT
===================================================== */

.sasha-home-benefits-layout {
  display: grid;

  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(0, 2.1fr);

  grid-template-rows:
    auto
    1fr;

  column-gap: clamp(3rem, 6vw, 6rem);
  row-gap: clamp(2rem, 4vw, 3rem);

  align-items: stretch;

  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}


/*
   This allows the heading and benefit grid to participate
   directly in the main two-column grid.
*/

.sasha-home-benefits-content {
  display: contents;
}


/* =====================================================
   SASHA CHARACTER
===================================================== */

.sasha-home-benefits-character {
  position: relative;

  grid-column: 1;
  grid-row: 1 / 3;

  min-width: 0;
  min-height: 100%;

  align-self: stretch;
}


.sasha-home-benefits-character img {
  position: absolute;

  left: 50%;
  bottom: 0;

  display: block;

  width: auto;
  height: 100%;

  max-width: none;
  max-height: none;

  transform: translateX(-50%);

  object-fit: contain;
  object-position: center bottom;
}


/* =====================================================
   INTRODUCTORY CONTENT
===================================================== */

.sasha-home-benefits-heading {
  grid-column: 2;
  grid-row: 1;

  align-self: end;

  min-width: 0;
  margin: 0;
}


.sasha-home-benefits-greeting {
  margin:
    0
    0
    0.35rem;

  color: var(--sasha-white);

  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
}


.sasha-home-benefits-heading h1 {
  display: grid;

  gap: 0.15rem;

  margin: 0;

  color: var(--sasha-white);

  line-height: 1.1;
}


.sasha-home-benefits-heading h1 strong {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}


.sasha-home-benefits-heading h1 span {
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
  font-weight: 400;
}


/* =====================================================
   BENEFIT GRID
===================================================== */

.sasha-home-benefits-grid {
  grid-column: 2;
  grid-row: 2;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  align-items: stretch;

  gap: clamp(1.75rem, 4vw, 3.5rem);

  min-width: 0;
}


/* =====================================================
   INDIVIDUAL BENEFIT
===================================================== */

.sasha-home-benefit {
  display: grid;

  grid-template-rows:
    6rem
    auto
    1fr;

  align-content: start;

  min-width: 0;
}


.sasha-home-benefit-icon {
  display: flex;

  align-items: center;
  justify-content: flex-start;

  height: 12rem;

  color: var(--sasha-white-18);
}


.sasha-home-benefit-icon img {
  display: block;

  width: 12rem;
  height: auto;

  max-width: none;

  margin-left: -30px;
  margin-bottom: -10px;
}


.sasha-home-benefit h2 {
  margin:
    0
    0
    1rem;

  color: var(--sasha-white);

  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 800;
  line-height: 1.12;

  text-transform: uppercase;
}


.sasha-home-benefit p {
  margin: 0;

  color: var(--sasha-white);

  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
}


/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 900px) {

  .sasha-home-benefits-layout {
    grid-template-columns:
      minmax(230px, 0.75fr)
      minmax(0, 1.8fr);

    column-gap: 2.5rem;
    row-gap: 2rem;

    padding-top: 4rem;
    padding-bottom: 4rem;
  }


  .sasha-home-benefits-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }


  .sasha-home-benefit {
    grid-template-columns:
      4.5rem
      minmax(0, 1fr);

    grid-template-rows:
      auto
      auto;

    column-gap: 1rem;
  }


  .sasha-home-benefit-icon {
    grid-row: 1 / 3;

    align-items: flex-start;

    height: auto;
  }


  .sasha-home-benefit-icon img,
  .sasha-home-benefit-icon svg {
    width: 4rem;
    height: 4rem;
  }


  .sasha-home-benefit h2 {
    margin-bottom: 0.5rem;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 680px) {

  .sasha-home-benefits-layout {
    display: flex;

    flex-direction: column;

    gap: 2.5rem;

    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }


  .sasha-home-benefits-content {
    display: contents;
  }


  .sasha-home-benefits-heading {
    order: 1;

    text-align: center;
  }


  .sasha-home-benefits-character {
    order: 2;

    position: relative;

    width: 100%;
    min-height: 430px;
  }


  .sasha-home-benefits-character img {
    left: 50%;
    bottom: 0;

    width: auto;
    height: 100%;

    max-width: 100%;
  }


  .sasha-home-benefits-grid {
    order: 3;

    display: grid;

    grid-template-columns: 1fr;

    gap: 2rem;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media screen and (max-width: 460px) {

  .sasha-home-benefits-layout {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }


  .sasha-home-benefits-character {
    min-height: 360px;
  }


  .sasha-home-benefit {
    grid-template-columns:
      3.75rem
      minmax(0, 1fr);

    column-gap: 0.85rem;
  }


  .sasha-home-benefit-icon img,
  .sasha-home-benefit-icon svg {
    width: 3.4rem;
    height: 3.4rem;
  }


  .sasha-home-benefits-heading h1 strong {
    font-size: 2rem;
  }


  .sasha-home-benefits-heading h1 span {
    font-size: 1.3rem;
  }

}

