:root {
  /*--bg: #f3efea;*/
  --bg: #EFEAE6;
  --text: #2a2a2a;
  --muted: rgba(42, 42, 42, 0.78);
  --accent: #3e9f9c;
  --cta-hover-bg: rgba(240, 148, 70, 0.96);
  --cta-hover-text: rgba(42, 42, 42, 0.92);
  --desktop-nav-shift: 50px;
  --desktop-nav-inset-left: 300px;
  --desktop-nav-inset-right: 300px;
}

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

html,
body {
  height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: clamp(360px, 70dvh, 650px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, rgba(243, 239, 234, 0.92) 0%, rgba(243, 239, 234, 0.72) 38%, rgba(243, 239, 234, 0.1) 70%, rgba(243, 239, 234, 0) 100%);*/
  background: linear-gradient(90deg, rgba(243, 239, 234, 0.92) 0%, rgba(243, 239, 234, 0.72) 30%, rgba(243, 239, 234, 0.1) 60%, rgba(243, 239, 234, 0) 100%);
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  transform: translateZ(0);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
}

.homepage .hero__inner {
  padding-top: 64px;
  align-items: center;
}

.landingpage .hero {
  background: var(--bg);
}

.hero-wrapper {
  position: relative;
}

.landingpage .hero__inner {
  align-items: flex-end;
  padding-bottom: 48px;
}

.landingpage .hero__content {
  text-align: left;
}

.hero__content {
  max-width: 640px;
}

.hero__heading {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.95;
  color: rgba(42, 42, 42, 0.92);
}

.hero__place {
  display: block;
  font-size: clamp(46px, 5.6vw, 74px);
  letter-spacing: 0.01em;
}

.hero__title {
  display: block;
  font-size: clamp(46px, 5.6vw, 74px);
  letter-spacing: 0.01em;
}

.hero__rule {
  width: 56px;
  height: 2px;
  /*background: rgba(62, 159, 156, 0.7);*/
  background: #3C6969;
  border-radius: 999px;
  margin-top: 18px;
}

.hero__subtitle {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.7);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
}

@media (max-width: 820px) {
  .homepage .hero {
    height: clamp(560px, 92dvh, 800px);
    background: var(--bg);
  }

  .landingpage .hero {
    height: clamp(560px, 92dvh, 800px);
  }

  .homepage .hero::before {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(243, 239, 234, 0) 0%,
      rgba(243, 239, 234, 0.1) 40%,
      rgba(243, 239, 234, 0.3) 56%,
      rgba(243, 239, 234, 0.9) 70%,
      rgba(243, 239, 234, 0.9) 86%,
      var(--bg) 100%
    );
  }

  .homepage .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(243, 239, 234, 0) 0%, var(--bg) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .landingpage .hero::before {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(243, 239, 234, 0) 0%,
      rgba(243, 239, 234, 0.1) 40%,
      rgba(243, 239, 234, 0.3) 56%,
      rgba(243, 239, 234, 0.9) 70%,
      rgba(243, 239, 234, 0.9) 86%,
      var(--bg) 100%
    );
  }

  .landingpage .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(243, 239, 234, 0) 0%, var(--bg) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .homepage .hero__inner {
    padding-top: 100px;
    padding-bottom: 24px;
    align-items: flex-end;
  }

  .landingpage .hero__inner {
    padding-top: 100px;
    padding-bottom: 24px;
  }

  .homepage .hero__content {
    text-align: left;
  }

  .landingpage .hero__heading {
    font-weight: 500;
    line-height: 1.05;
  }

  .homepage .hero__heading {
    font-weight: 500;
    line-height: 1.05;
  }

  .homepage .hero__subtitle {
    font-size: 24px;
  }

  .landingpage .hero__subtitle {
    font-size: 24px;
  }

  .landingpage .hero__cta {
    height: 52px;
    padding: 0 34px;
    font-size: 16px;
  }

  .homepage .hero__cta {
    height: 52px;
    padding: 0 34px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .homepage .hero__place,
  .homepage .hero__title {
    font-size: 36px;
  }

  .homepage .hero__subtitle {
    font-size: 20px;
  }

  .homepage .hero::before {
    background: linear-gradient(
      180deg,
      rgba(243, 239, 234, 0) 0%,
      rgba(243, 239, 234, 0.1) 40%,
      rgba(243, 239, 234, 0.25) 50%,
      rgba(243, 239, 234, 0.75) 60%,
      rgba(243, 239, 234, 0.85) 75%,
      rgba(243, 239, 234, 0.95) 85%,
      var(--bg) 100%
    );
  }

  .homepage .hero__inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .landingpage .hero__place,
  .landingpage .hero__title {
    font-size: 32px !important;
  }

  .landingpage .hero__subtitle {
    font-size: 18px !important;
  }

  .landingpage .hero::before {
    background: linear-gradient(
      180deg,
      rgba(243, 239, 234, 0) 0%,
      rgba(243, 239, 234, 0.1) 40%,
      rgba(243, 239, 234, 0.25) 50%,
      rgba(243, 239, 234, 0.75) 60%,
      rgba(243, 239, 234, 0.85) 75%,
      rgba(243, 239, 234, 0.95) 85%,
      var(--bg) 100%
    );
  }

  .landingpage .hero__inner {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.hero__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*height: 40px;*/
  /*padding: 0 22px;*/
  border-radius: 999px;
  /*background: rgba(29, 72, 86, 0.92);*/
  background: #3C6969;
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  /*font-size: 13px;*/
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 160ms ease, color 160ms ease;
  height: 52px;
  padding: 0 34px;
  font-size: 16px;
}

.hero__cta:hover {
  background: var(--cta-hover-bg);
  color: var(--cta-hover-text);
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #3C6969;
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 0 20px;
  height: 38px;
  transition: background 160ms ease, color 160ms ease;
  margin-top: 4px;
}
.read-more-btn:hover {
  background: #2e5252;
  color: #fff;
}

.offers {
  padding: 46px 0 0;
}

.offers__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.offer-card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(243, 239, 234, 0.9);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(42, 42, 42, 0.08);
}

.offer-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.offer-card__body {
  padding: 18px 18px 20px;
  text-align: center;
}

.offer-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: rgba(42, 42, 42, 0.92);
  letter-spacing: 0.01em;
}

.offer-card__text {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(42, 42, 42, 0.64);
}

@media (max-width: 1050px) {
  .offers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .about-block {
    padding: 0 0 5px;
  }

  .offers {
    padding: 34px 0 30px;
  }

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

  .homepage .offer-card {
    border: 1px solid rgba(42, 42, 42, 0.1);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.72);
  }

  .homepage .offer-card__img {
    height: 200px;
    aspect-ratio: auto;
  }

  .homepage .offer-card__body {
    text-align: left;
  }

  .homepage .offer-card__title {
    font-size: 26px;
  }

  .homepage .offer-card__text {
    font-size: 15px;
  }
}

.about-block {
  padding: 50px 0 25px;
}

.about-block__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.about-block__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.about-block__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.about-block__content {
  max-width: 440px;
}

.about-block__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(29, 72, 86, 0.86);
}

.about-block__eyebrow::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(29, 72, 86, 0.56);
}

.about-block__title {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(42, 42, 42, 0.92);
}

.about-block__lead {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(42, 42, 42, 0.74);
}

.about-block__text {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.62);
}

.about-block__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(29, 72, 86, 0.92);
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.about-block__cta:hover {
  background: var(--cta-hover-bg);
  color: var(--cta-hover-text);
}

@media (max-width: 900px) {
  .about-block {
    padding: 40px 0 5px;
  }

  .about-block__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .homepage .about-block__grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-block__lead {
    font-size: 16px;
  }

  .about-block__text {
    font-size: 15px;
  }

  .about-block__content {
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .about-block {
    padding: 0;
  }
}

.work-cta {
  padding: 15px 0 45px;
}

.work-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.work-cta__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.6vw, 52px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(42, 42, 42, 0.92);
}

.work-cta__subtitle {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(42, 42, 42, 0.62);
}

.work-cta__underline {
  position: relative;
  display: inline-block;
  color: rgba(42, 42, 42, 0.72);
}

.work-cta__underline::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  bottom: -0.45em;
  height: 2px;
  border-radius: 999px;
  background: rgba(29, 72, 86, 0.58);
}

@media (max-width: 600px) {
  .work-cta {
    padding: 52px 0 72px;
  }

  .work-cta__underline {
    color: inherit;
  }

  .work-cta__underline::after {
    display: none;
  }
}

.service-cards {
  padding: 0 0 25px;
}

.service-cards__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.service-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 290px;
  background: rgba(42, 42, 42, 0.12);
}

.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.78) 0%, rgba(20, 20, 20, 0.42) 48%, rgba(20, 20, 20, 0) 78%);
}

.service-card__content {
  position: relative;
  z-index: 1;
  padding: 38px 34px 32px;
  max-width: 420px;
}

.service-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.96);
}

.service-card__lead {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.service-card__text {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.service-card__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(29, 72, 86, 0.9);
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.service-card__cta:hover {
  background: var(--cta-hover-bg);
  color: var(--cta-hover-text);
}

@media (max-width: 900px) {
  .service-cards {
    padding-bottom: 0;
  }

  .service-cards__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 270px;
  }
}

@media (max-width: 600px) {
  .service-card__content {
    padding: 30px 22px 26px;
  }

  .service-card__title {
    font-size: 34px;
  }

  .service-card__lead,
  .service-card__text {
    font-size: 17px;
  }

  .service-card__cta {
    background-color: #3C6969;
    padding: 24px;
    font-size: 16px;
  }

}

.values {
  padding: 20px 0 40px;
}

.values__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-radius: 14px;
}

.value {
  padding: 18px 22px 16px;
  text-align: center;
  position: relative;
}

.value + .value::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(42, 42, 42, 0.18);
}

.value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(62, 159, 156, 0.78);
}

.value__icon-img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

.value__title {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(42, 42, 42, 0.88);
}

.value__text {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(42, 42, 42, 0.62);
}

@media (max-width: 900px) {
  .values {
    padding: 20px 0 20px;
  }

  .values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .value + .value::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .values__grid {
    display: block;
  }

  .value {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    text-align: left;
    border-bottom: 1px solid rgba(42, 42, 42, 0.12);
  }

  .value:last-child {
    border-bottom: 0;
  }

  .value__icon {
    flex: 0 0 94px;
    margin-top: 2px;
  }

  .value__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .value__title {
    margin-top: 0;
    font-size: 28px;
  }

  .value__text {
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.45;
  }
}

.content-block {
  padding: 10px 0 5px;
}

.page > .content-block:last-child {
  padding-bottom: 25px;
}

.content-block__inner {
  max-width: 810px;
  margin: 0 auto;
  padding: 0 28px;
}

.content-block__headline {
  margin: 0;
  /*text-align: center;*/
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(42, 42, 42, 0.9);
}

@media (max-width: 600px) {
  .content-block__headline {
    text-align: left;
  }
  .content-block__inner {
    padding: 0;
  }
}

.content-block__lead {
  margin: 18px auto 0;
  max-width: 810px;
  /*font-size: 13px;*/
  font-size: 15px;
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.68);
}

.content-block__lead p {
  margin: 10px 0 0;
}

.content-block__figure {
  margin: 34px auto 0;
  max-width: 680px;
}

.content-block__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.content-block__subhead {
  margin: 50px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(42, 42, 42, 0.9);
  margin-top: 22px;
}

.content-block__text {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(42, 42, 42, 0.68);
  max-width: 810px;
}

.content-block__label {
  margin: 16px 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(42, 42, 42, 0.78);
}

.content-block__list {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(42, 42, 42, 0.68);
  max-width: 810px;
}

.content-block__list li::marker {
  color: rgba(62, 159, 156, 0.9);
}

/* Custom Experience Block */
.custom-experience-block {
  padding: 40px 16px;
}

.custom-experience-block__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 56px 30px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  border: 2px solid rgba(60, 105, 105, 0.72);
  text-align: center;
}

.custom-experience-block__icon {
  display: block;
  width: 96px;
  height: auto;
  margin: 0 auto 18px;
}

.custom-experience-block__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #2a2a2a;
  line-height: 1.2;
  text-transform: none;
}

.custom-experience-block__text {
  margin: 28px auto 0;
  max-width: 520px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  color: #2a2a2a;
}

.content-block__cta-row {
  display: flex;
  justify-content: center;
  padding: 10px 28px 36px;
}

.content-block__cta-row .custom-experience-block__cta {
  margin-top: 0;
}

.custom-experience-block__cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 318px;
  height: 68px;
  padding: 0 44px;
  border-radius: 999px;
  border: 0;
  background: #2f7470;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: background 160ms ease, color 160ms ease;
}

.custom-experience-block__cta:hover {
  background: #3C6969;
  color: #fff;
}

@media (max-width: 600px) {
  .custom-experience-block {
    padding: 30px 16px;
  }

  .custom-experience-block__inner {
    padding: 28px 20px 28px;
    margin: 0;
  }

  .custom-experience-block__icon {
    width: 82px;
    margin-bottom: 16px;
  }

  .custom-experience-block__title {
    font-size: 30px;
    letter-spacing: 0.01em;
  }

  .custom-experience-block__text {
    font-size: 17px;
  }

  .custom-experience-block__cta {
    min-width: 0;
    width: 100%;
    max-width: 318px;
    height: 58px;
    padding: 0 28px;
    font-size: 20px;
  }
}

/* Blog Post */
.blog-post__header {
  position: relative;
  margin-bottom: 32px;
}
.blog-post__hero {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.blog-post__header-content {
  padding: 28px 24px 0;
  max-width: 810px;
  margin: 0 auto;
}
.blog-post__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  margin: 0 0 8px;
}
.blog-post__meta {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.flow-block {
  padding: 10px 0 10px;
}

.flow-block__inner {
  max-width: 810px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 600px) {
  .flow-block__inner {
    padding: 0;
  }
}

.flow-block__figure {
  max-width: 680px;
  margin: 34px auto 0;
}

.flow-block__figure--top {
  margin-top: 0;
}

.flow-block__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.flow-block__title {
  margin: 24px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(42, 42, 42, 0.9);
}

.flow-block__text {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(42, 42, 42, 0.68);
}

.flow-block__text p {
  margin: 10px 0 0;
}

.flow-block__figure--bottom {
  margin-top: 30px;
}

.flow-block__caption {
  margin: 20px 0 10px 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.62);
}

.flow-block__note {
  margin: 25px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(42, 42, 42, 0.65);
}

.join-block {
  position: relative;
  width: 100%;
  min-height: 170px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.join-block__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scaleX(-1);
}

.join-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 72, 86, 0.84) 0%, rgba(29, 72, 86, 0.56) 48%, rgba(29, 72, 86, 0) 78%);
}

.join-block__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  /*padding: 24px 28px;*/
  padding: 23px 28px 37px 28px;
}

.join-block__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.96);
}

.homepage .join-block__title {
  font-size: clamp(42px, 4.9vw, 58px);
  font-weight: 400;
  letter-spacing: 0.006em;
  line-height: 1.02;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.homepage .join-block__title::before,
.homepage .join-block__title::after {
  font-size: 1.08em;
  opacity: 0.92;
}

.homepage .join-block__title::before {
  content: "“";
  position: relative;
  top: -0.08em;
  margin-right: 0.08em;
}

.homepage .join-block__title::after {
  content: "”";
  position: relative;
  top: -0.08em;
  margin-left: 0.08em;
}

.join-block__text {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
}

.homepage .join-block__text {
  margin-top: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.landingpage .content-block__figure {
  margin-top: 24px;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
}

.landingpage .content-block__img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
}

@media (min-width: 821px) {
  .homepage .join-block__title {
    font-size: clamp(34px, 4vw, 46px);
  }

  .homepage .join-block__text {
    font-size: 24px;
  }

  .landingpage .content-block__figure {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .landingpage .flow-block__figure {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.join-block__actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.join-block__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(62, 159, 156, 0.98);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 160ms ease, color 160ms ease;
}

.join-block__cta:hover {
  background: var(--cta-hover-bg);
  color: var(--cta-hover-text);
}

.join-block__channels {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  .join-block {
    min-height: 200px;
  }

  .homepage .join-block__title {
    font-size: clamp(32px, 3.8vw, 44px);
  }

  .join-block__overlay {
    background: linear-gradient(180deg, rgba(29, 72, 86, 0.86) 0%, rgba(29, 72, 86, 0.58) 52%, rgba(29, 72, 86, 0.12) 100%);
  }
  .flow-block__title {
    margin: 12px 0 0;
  }
}

.site-footer {
  background: var(--bg);
  padding: 25px 0 25px;
}

.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.site-footer__brand {
  min-width: 0;
}

.site-footer__logo {
  display: inline-flex;
  text-decoration: none;
  transform: translateX(-10px);
}

.site-footer__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.site-footer__tagline {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(42, 42, 42, 0.6);
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 10px;
  justify-items: start;
}

.site-footer__link {
  text-decoration: none;
  color: rgba(42, 42, 42, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.site-footer__link:hover {
  color: rgba(42, 42, 42, 0.92);
}

.site-footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__social-link {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(42, 42, 42, 0.75);
  text-decoration: none;
}

.site-footer__social-link:hover {
  color: var(--text);
}

.site-footer__meta {
  max-width: 1240px;
  margin: 26px auto 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  color: rgba(42, 42, 42, 0.52);
}

.site-footer__meta > * + * {
  position: relative;
}

.site-footer__meta > * + *::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(42, 42, 42, 0.35);
  transform: translateY(-50%);
}

.site-footer__meta-link {
  color: inherit;
  text-decoration: none;
}

.site-footer__meta-link:hover {
  color: rgba(42, 42, 42, 0.72);
}

@media (max-width: 820px) {
  .site-footer {
    padding-top: 23px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer__social {
    justify-content: flex-start;
  }

  .site-footer__meta {
    flex-wrap: wrap;
    gap: 18px;
  }

  .site-footer__meta > * + *::before {
    left: -11px;
  }
}

.section {
  padding: 64px 0;
}

.site-header {
  height: 65px;
  background: var(--bg);
  position: relative;
  z-index: 10;
}

.site-header--transparent {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.site-header--transparent .site-social__link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--transparent .site-social__link:hover {
  color: rgba(255, 255, 255, 1);
}

/* ---- Language switcher ---- */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-left: 1px solid var(--muted);
  color: var(--text);
  font-size: 17px;
  line-height: 1;
  padding: 0 10px 0 14px;
  text-decoration: none;
  transition: background 0.2s;
  margin-left: 22px;
}

.lang-switcher:hover {
  background: rgba(0, 0, 0, 0.06);
  border-left-color: transparent;
}

.site-header--transparent .lang-switcher {
  border-left-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.site-header--transparent .lang-switcher:hover {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: transparent;
}

.lang-switcher--menu {
  display: none;
  margin-top: 14px;
}


.site-header__inner {
  height: 65px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  justify-self: start;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo__img {
  height: 53px;
  width: auto;
  display: block;
}

.site-nav {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(calc(-50% + var(--desktop-nav-shift)));
  z-index: 11;
}

.site-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(42, 42, 42, 0.18);
  background: rgba(243, 239, 234, 0.6);
  border-radius: 12px;
  display: none;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle__icon {
  font-size: 18px;
  line-height: 1;
  color: rgba(42, 42, 42, 0.82);
}

.nav-toggle__icon--close {
  display: none;
}

.site-header.is-menu-open .nav-toggle__icon--open {
  display: none;
}

.site-header.is-menu-open .nav-toggle__icon--close {
  display: inline-block;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: rgba(42, 42, 42, 0.78);
  border-radius: 999px;
}

.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 6px;
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header.is-menu-open .nav-toggle__bar {
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle__bar {
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
  pointer-events: auto;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 0;
}

.site-nav__link:hover {
  color: var(--text);
}

.site-nav__item > .site-nav__link:not(.is-active):hover::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -3px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.72;
}

.site-nav__list:hover .site-nav__item > .site-nav__link.is-active:not(:hover)::after {
  opacity: 0;
}

.site-nav__link.is-active {
  color: var(--accent);
}

.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -3px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.homepage .site-nav__link {
  color: rgba(42, 42, 42, 0.86);
}

.homepage .site-nav__link:hover {
  color: rgba(42, 42, 42, 1);
}

.homepage .site-nav__link.is-active {
  color: rgba(42, 42, 42, 0.92);
}

.homepage .site-nav__link.is-active::after {
  background: currentColor;
}

.site-subnav {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 190px;
  padding: 18px 14px 10px;
  background: rgba(243, 239, 234, 0.98);
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: none;
  pointer-events: auto;
  z-index: 20;
}

.site-subnav::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.site-nav__item.is-open .site-subnav,
.site-nav__item:hover .site-subnav,
.site-nav__item:focus-within .site-subnav {
  display: block;
}

.site-subnav__link {
  display: block;
  padding: 8px 2px;
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-subnav__link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-subnav__link.is-active::after {
  display: none;
}

.site-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-social--menu {
  display: none;
}

/* ---- Social toggle (compact desktop, 821px–1050px) ---- */

.social-toggle {
  display: none;
  position: relative;
}

.social-toggle__btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(42, 42, 42, 0.18);
  background: rgba(243, 239, 234, 0.6);
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: rgba(42, 42, 42, 0.75);
  padding: 0;
}

.social-toggle__btn:hover {
  background: rgba(243, 239, 234, 0.9);
  color: var(--text);
}

.site-header--transparent .social-toggle__btn {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.site-header--transparent .social-toggle__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.social-toggle__panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
  padding: 10px 14px;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  white-space: nowrap;
  z-index: 100;
}

.social-toggle.is-open .social-toggle__panel {
  display: flex;
}

.social-toggle__panel .site-social__link {
  color: rgba(42, 42, 42, 0.75);
}

.social-toggle__panel .site-social__link:hover {
  color: var(--text);
}

.site-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(42, 42, 42, 0.75);
  text-decoration: none;
}

.site-social__link:hover {
  color: var(--text);
}

.site-social__link i,
.site-footer__social-link i {
  font-size: 20px;
  line-height: 1;
}

.icon {
  width: 22px;
  height: 22px;
  display: block;
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 28px;
}

@media (max-width: 600px) {
  .page {
    padding: 16px 28px 0;
  }
  .content-block {
    padding: 10px 0 0;
  }
  .content-block__subhead {
    margin-top: 6px;
  }
  .landingpage .content-block__figure {
    height: 260px;
  }
}

.section h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media (max-width: 1050px) and (min-width: 821px) {
  .site-social {
    display: none;
  }

  .social-toggle {
    display: block;
  }
}

@media (max-width: 1100px) {
  :root {
    --desktop-nav-shift: 30px;
    --desktop-nav-inset-left: 250px;
    --desktop-nav-inset-right: 250px;
  }

  .site-nav__list {
    gap: 14px;
  }
}

@media (max-width: 920px) {
  :root {
    --desktop-nav-shift: 10px;
    --desktop-nav-inset-left: 200px;
    --desktop-nav-inset-right: 200px;
  }

  .site-nav__list {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  blockquote {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  body.is-menu-open {
    overflow: hidden;
  }

  .site-header.is-menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg);
  }

  .homepage .site-logo {
    margin: 0;
    padding-left: 0;
  }

  .landingpage .site-logo {
    margin: 0;
    padding-left: 0;
  }

  .site-logo {
    margin: 0 auto;
  }

  .site-actions {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }

  .homepage .site-actions {
    top: 50%;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-social {
    display: none;
  }

  .site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    padding: 0 16px;
  }

  .homepage .site-header__inner,
  .landingpage .site-header__inner {
    justify-content: flex-start;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    padding: 65px 28px 36px;
    background: var(--bg);
    border-top: 0;
    display: none;
    text-align: center;
    height: 100vh;
    overflow: auto;
    pointer-events: auto;
    z-index: 3;
    box-sizing: border-box;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav__list {
    transform: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .site-nav__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-nav__link {
    font-size: 24px;
    padding: 8px 0;
  }

  .site-subnav {
    position: static;
    min-width: 0;
    padding: 6px 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .site-subnav::before {
    display: none;
  }

  .site-nav__item:hover .site-subnav {
    display: none;
  }

  .site-nav__item.is-open .site-subnav,
  .site-nav__item:focus-within .site-subnav {
    display: flex;
  }

  .site-subnav__link {
    padding: 8px 0;
    font-size: 18px;
  }

  .site-social--menu {
    display: flex;
    margin-top: 30px;
    padding-top: 0;
    justify-content: center;
    width: 100%;
  }

  .site-actions .lang-switcher {
    display: none;
  }

  .lang-switcher--menu {
    display: inline-flex;
    margin: 28px auto 0;
    border-left: none;
    padding-left: 0;
    font-size: 26px;
  }

  .homepage .site-social--menu .site-social__link {
    color: rgba(42, 42, 42, 0.75);
  }

  .homepage .site-social--menu .site-social__link:hover {
    color: var(--text);
  }

  .homepage .site-nav__link.is-active {
    color: var(--accent);
  }

  .homepage .site-nav__link.is-active::after {
    background: var(--accent);
  }
}

/* ── Video Testimonials page ─────────────────────────────── */

.vt-section {
  padding: 72px 0 80px;
}

.vt-section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.vt-section__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.vt-section__heading {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.vt-section__sub {
  margin: 0 auto 52px;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.vt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}

.vt-card {
  background: transparent;
}

.vt-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

.vt-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vt-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--accent);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform 0.15s ease, background 0.15s ease;
}

.vt-card__play:hover {
  transform: scale(1.08);
  background: #fff;
}

.vt-card__play .fa-play {
  margin-left: 3px;
}

.vt-card__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(0,0,0,0.52);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

.vt-card__text {
  margin: 0;
  padding: 16px 18px 8px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text);
}

.vt-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 18px;
}

.vt-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.vt-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.vt-section__more {
  margin-top: 48px;
}

.vt-section__more-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid rgba(42,42,42,0.25);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.vt-section__more-btn:hover {
  border-color: var(--accent);
  background: rgba(62,159,156,0.05);
}

@media (max-width: 600px) {
  .vt-section {
    padding: 48px 0 56px;
  }
  .vt-section__inner {
    padding: 0 20px;
  }
  .vt-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Content figure styles for about page */
.content-figure {
  margin: 32px auto;
  padding: 0;
  max-width: 720px;
}

.content-figure__img {
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 768px) {
  .content-figure {
    padding: 0;
    margin: 24px 0;
  }
}
