@charset "UTF-8";
/*
  0 – 600px      → phone
  600 – 900px    → tab-port
  900 – 1200px   → tab-land
  1200 – 1800px  → (default styles)
  1800px+        → big-desktop

  1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.fu {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fu.v {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.22s;
}

.d3 {
  transition-delay: 0.34s;
}

.d4 {
  transition-delay: 0.46s;
}

.d5 {
  transition-delay: 0.58s;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  color: #0E0E0E;
  font-family: "Poppins", system-ui, sans-serif;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

.heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.heading--primary {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3.8rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.heading--secondary {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3.4rem;
  text-transform: uppercase;
}
.heading--tertiary {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.heading--tertiary__blobl {
  position: relative;
  top: 20.5rem;
  left: -7.5rem;
}
.heading--tertiary__blobr {
  position: relative;
  top: 20.5rem;
  left: 5.5rem;
}
.heading--para {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.roots__item--right .roots__text {
  text-align: left;
}

.item__text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
}
.item__text--blobl {
  position: relative;
  top: -1.5rem;
  left: -7.5rem;
  padding: 4rem;
}
.item__text--blobr {
  position: relative;
  top: -1.5rem;
  left: 5.5rem;
  padding: 4rem;
}

.divider {
  width: 5.6rem;
  height: 0.2rem;
  background: #c9302c;
  margin: 1.5rem 0;
}
.divider--center {
  margin: 1.5rem auto;
}

.offer-eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #CC2929;
  margin-bottom: 0.8rem;
  display: block;
}

.offer-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.4rem;
}

.offer-sub {
  font-size: 1.5rem;
  color: #777777;
  line-height: 1.7;
  margin-bottom: 2.8rem;
}

.section-label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 1.2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
}

.divider {
  width: 5.6rem;
  height: 0.2rem;
  background: #c9302c;
  margin: 1.5rem 0;
}
.divider--center {
  margin: 1.5rem auto;
}
.divider--pb {
  width: 48px;
  height: 2px;
  background: #CC2929;
  margin: 2.5rem auto;
}

.signed-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.signed-toggle-options {
  display: flex;
  gap: 1.2rem;
}
.signed-toggle-options label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.signed-toggle-options label input {
  display: none;
}
.signed-toggle-options label span {
  padding: 0.3rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}
.signed-toggle-options label input:checked + span {
  background: #000;
  color: #fff;
  border-color: #000;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-bottom-small {
  margin-bottom: 0.5rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.btn, .btn:link, .btn:visited {
  display: inline-block;
  padding: 0.9rem 4.2rem;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--primary {
  background-color: #c9302c;
  color: #fff;
}
.btn--primary::after {
  background-color: #c9302c;
}
.btn::after {
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}
.btn--dark {
  background: #0E0E0E;
  color: #f1f1f1;
}
.btn--dark:hover {
  background: #c9302c;
  transform: translateY(-0.2rem);
}
.btn--outline {
  background: transparent;
  color: #0E0E0E;
  border: 1.5px solid #0E0E0E;
}
.btn--outline:hover {
  background: #0E0E0E;
  color: #f1f1f1;
}
.btn--red {
  background: #c9302c;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}
.btn--red:hover {
  background: #E0402F;
  transform: translateY(-0.2rem);
}

.book-intro__cta {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 1.2rem 4rem;
  background: #0E0E0E;
  color: #f1f1f1;
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.book-intro__cta:hover {
  background: #c9302c;
  transform: translateY(-0.2rem);
}

.submit-btn {
  padding: 1.1rem 2rem;
  background: #CC2929;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  width: 100%;
}
.submit-btn:hover {
  background: #E0402F;
  transform: translateY(-2px);
}

.submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.submit-note {
  font-size: 1rem;
  color: #777777;
  text-align: center;
  line-height: 1.6;
}
.submit-note a {
  color: #CC2929;
  text-decoration: none;
}

.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0E0E0E;
  padding: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}
@media only screen and (max-width: 51.25em) {
  .sticky-bar {
    display: flex;
  }
}

.sb-price {
  display: flex;
  flex-direction: column;
}

.sb-p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.sb-orig {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.sb-btn {
  padding: 0.75rem 1.5rem;
  background: #CC2929;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.sb-btn:hover {
  background: #E0402F;
}

.service-card {
  perspective: 150rem;
  position: relative;
  height: 52rem;
}
.service-card__side {
  height: 54rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  transition: all 0.8s ease;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.service-card__side--front {
  background: #fff;
}
.service-card__side--back {
  transform: rotateY(180deg);
}
.service-card__side--back-1 {
  background: linear-gradient(to right bottom, #333, #000);
}
.service-card__side--back-2 {
  background: linear-gradient(to right bottom, #333, #000);
}
.service-card__side--back-3 {
  background: linear-gradient(to right bottom, #333, #000);
}
.service-card:hover .service-card__side--front {
  transform: rotateY(180deg);
}
.service-card:hover .service-card__side--back {
  transform: rotateY(0);
}
.service-card {
  /* FRONT */
}
.service-card__picture {
  height: 26rem;
  background-size: cover;
  background-blend-mode: screen;
}
.service-card__picture--1 {
  background-image: linear-gradient(to right bottom, #333333, black), url(../img/service.jpg);
}
.service-card__picture--2 {
  background-image: linear-gradient(to right bottom, #333, #000), url("../img/service.jpg");
}
.service-card__picture--3 {
  background-image: linear-gradient(to right bottom, #333, #000), url("../img/service.jpg");
}
.service-card__heading {
  font-size: 2.4rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 12rem;
  right: 2rem;
  width: 65%;
}
.service-card__heading-span {
  padding: 0.5rem 1.5rem;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.service-card__heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(51, 51, 51, 0.85), rgba(0, 0, 0, 0.85));
}
.service-card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(51, 51, 51, 0.85), rgba(0, 0, 0, 0.85));
}
.service-card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(51, 51, 51, 0.85), rgba(0, 0, 0, 0.85));
}
.service-card__details {
  padding: 3rem;
}
.service-card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.service-card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}
.service-card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.service-card {
  /* BACK */
}
.service-card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}
.service-card__price-box {
  color: #fff;
  margin-bottom: 4rem;
}
.service-card__price-only {
  font-size: 1.19rem;
  text-transform: none;
  padding-bottom: 0.8rem;
}
.service-card__price-value {
  font-size: 5rem;
  font-weight: 100;
}

.composition {
  position: relative;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}
.composition__photo {
  width: 55%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 1.5rem 4rem;
  position: absolute;
  z-index: 10;
  outline-offset: 2rem;
  border-radius: 2px;
  transition: 0.2s;
}
.composition__photo:hover {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: rgba(0, 0, 0, 0.5) 0px 2.5rem 4rem;
  z-index: 20;
  outline: #c9302c solid 1.5rem;
}
.composition__photo--p1 {
  left: 0px;
  top: -2rem;
}
.composition__photo--p2 {
  right: 0px;
  top: 2rem;
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}

.countdown-banner {
  width: 100%;
  height: 50px;
  background: #c0392b;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.countdown {
  letter-spacing: 1px;
}

.journey {
  padding: 14rem 0;
  position: relative;
}
.journey__header {
  text-align: center;
  max-width: 75rem;
  margin: 0 auto 8rem auto;
}
.journey__timeline {
  position: relative;
}
.journey__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #999;
  transform: translateX(-50%);
  z-index: 0;
}
.journey__row {
  position: relative;
  margin-bottom: 9rem !important;
}
.journey__col {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.journey__content {
  position: relative;
  max-width: 42rem;
  width: 100%;
}
.journey__blob {
  width: 100%;
  display: block;
}
.journey__blob--right {
  transform: scaleX(-1);
}
.journey__text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  text-align: center;
  color: #fff;
}
.journey__text--right {
  transform: translate(-38%, 19%);
}
.journey__text--left {
  transform: translate(-59%, 19%);
}

.br-space {
  display: block;
  height: 11rem;
  padding-top: 2rem;
}

/* LEFT SIDE DASHED LINE */
.journey__col--left::after {
  content: "";
  position: absolute;
  top: 22%;
  right: -3rem;
  width: calc(92% - 2rem);
  border-top: 2px dashed #999;
  transform: translateY(-50%);
  z-index: 1;
}

/* RIGHT SIDE DASHED LINE */
.journey__col--right::after {
  content: "";
  position: absolute;
  top: 22%;
  left: -3rem;
  width: calc(92% - 2rem);
  border-top: 2px dashed #999;
  transform: translateY(-50%);
  z-index: 1;
}

.journey__col {
  position: relative;
}

.journey__blob {
  position: relative;
  z-index: 2;
}

.journey__text {
  position: absolute;
  z-index: 3;
}

.journey__line {
  z-index: 0;
}

/* =========================
   PHONE (600px)
========================= */
@media only screen and (max-width: 37.5em) {
  .section-services {
    margin-top: -30rem !important;
  }
}
/* =========================
   TAB LAND (1200px)
========================= */
@media only screen and (max-width: 56.25em) {
  .journey__line {
    width: 0px;
  }
  .journey__col--right {
    padding-bottom: 7rem;
  }
  .journey__col--left::after {
    width: calc(0% - 2rem);
  }
  .journey__col--right::after {
    width: calc(0% - 2rem);
  }
}
.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2rem 4rem;
  display: table;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  border-radius: 3px;
  overflow: hidden;
  transition: 0.5s 0.2s;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__left {
  width: 33.3333%;
  display: table-cell;
}
.popup__img {
  display: block;
  width: 100%;
}
.popup__right {
  width: 66.6667%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
.popup__close:link, .popup__close:visited {
  color: rgb(119, 119, 119);
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  transition: 0.2s;
}
.popup__close:hover {
  color: #c9302c;
}
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  hyphens: auto;
  -moz-column-rule: 1px solid rgb(238, 238, 238);
       column-rule: 1px solid rgb(238, 238, 238);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 0.3rem;
  width: 0;
  background: #c9302c;
  z-index: 999;
  transition: width 0.08s linear;
}

.section-author {
  padding: 12rem 0;
  background: #000;
  color: #fff;
}

.author {
  align-items: center;
}
.author__image-wrapper {
  display: flex;
  justify-content: center;
}
.author__image {
  width: 100%;
  max-width: 40rem;
  border-radius: 6px;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.6);
}
.author__content {
  padding: 2rem;
}
.author__title {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.author__description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #d6d6d6;
  margin-bottom: 1rem;
}
.author__signature {
  width: 12rem;
}
.author__info {
  display: flex;
  flex-direction: column;
}
.author__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff3b3b;
}
.author__role {
  font-size: 1.4rem;
  color: #bdbdbd;
}

.features {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
}
.features__header {
  max-width: 80rem;
  margin: 0 auto 8rem auto;
}
.features__item {
  padding: 2rem 3rem;
}
.features__item--row1 {
  padding-top: 0;
}
.features__icon {
  width: 12rem;
  margin-bottom: 2rem;
}
.features__text {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #555;
}

.footer {
  background-color: #333;
  padding: 10rem 0;
  font-size: 1.4rem;
  color: #f7f7f7;
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 8rem;
}
.footer__logo {
  width: 15rem;
  height: auto;
}
.footer__navigation {
  border-top: 1px solid #777;
  padding-top: 2rem;
  display: inline-block;
}
.footer__list {
  list-style: none;
}
.footer__item {
  display: inline-block;
}
.footer__item:not(:last-child) {
  margin-right: 1.5rem;
}
.footer__copyright {
  border-top: 1px solid #777;
  padding-top: 2rem;
  width: 80%;
  float: right;
}
.footer__link:link, .footer__link:visited {
  color: #f7f7f7;
  background-color: #333;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}
.footer__link:hover, .footer__link:active {
  color: #c9302c;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: rotate(5deg) scale(1.3);
}

.copyright {
  background: #000;
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 0;
  font-size: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-contact {
  padding: 12rem 0;
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: center;
}

.contact-container {
  max-width: 110rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 0 4rem;
}

.contact-info {
  color: white;
  max-width: 45rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}

.contact-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.contact-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  margin-top: 0.4rem;
}

.contact-label {
  font-weight: 600;
  font-size: 1.4rem;
}

.contact-form {
  background: white;
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.4);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.4rem;
  margin-bottom: 1.6rem;
  border: none;
  border-radius: 0.5rem;
  background: #f3f3f3;
  font-size: 1.4rem;
}
.contact-form textarea {
  height: 14rem;
  resize: none;
}

.btn-send {
  background: #c9302c;
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

@media only screen and (max-width: 37.5em) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 0 2rem;
  }
  .contact-title {
    font-size: 3.2rem;
  }
}
.prebook-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media only screen and (max-width: 31.25em) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777777;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  padding: 0.82rem 1rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.2rem;
  color: #0E0E0E;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #CC2929;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group textarea {
  min-height: 90px;
  resize: none;
}

.signed-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 0.5px solid rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.signed-toggle input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #CC2929;
  cursor: pointer;
  flex-shrink: 0;
}

.signed-toggle-name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
}

.signed-toggle-sub {
  font-size: 1.2rem;
  color: #777777;
}

.grid-test {
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
}

.row {
  display: flex;
  flex-flow: column nowrap;
  row-gap: 8rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  width: 100%;
  max-width: 114rem;
  margin: 0 auto;
}

@media screen and (min-width: 800px) {
  .row {
    flex-flow: row nowrap;
  }
}
@media only screen and (min-width: 800px) and (max-width: 37.5em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
@media screen and (min-width: 800px) {
  .row .col-1-of-2 {
    flex: 1;
  }
  .row .col-1-of-3 {
    flex: 1;
  }
  .row .col-2-of-3 {
    flex: 2;
  }
  .row .col-1-of-4 {
    flex: 1;
  }
  .row .col-2-of-4 {
    flex: 2;
  }
  .row .col-3-of-4 {
    flex: 3;
  }
}
.page-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

/* =========================
   LOGO
========================= */
.header {
  position: relative;
  height: 10rem;
}
.header__logo-box {
  position: absolute;
  top: 4.8rem;
  left: 4.8rem;
}
.header__logo {
  height: 2rem;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 95vh;
  padding: 0 0 8rem 0;
  position: relative;
  background-color: #fff;
  background-image: url("../img/hero_img.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
}
.hero .row {
  width: 100%;
}
.hero__content {
  max-width: 48rem;
  margin-left: auto;
  padding-right: 4rem;
  padding-top: 2rem;
}

/* =========================
   BIG DESKTOP (>1800px)
========================= */
@media only screen and (min-width: 112.5em) {
  .hero {
    min-height: 100vh;
  }
  .hero__content {
    max-width: 55rem;
  }
}
/* =========================
   TAB LAND (1200px)
========================= */
@media only screen and (max-width: 75em) {
  .hero {
    min-height: 42vh;
  }
  .hero__content {
    max-width: 44rem;
    padding-right: 3rem;
  }
}
/* =========================
   TABLET (900px)
========================= */
@media only screen and (max-width: 56.25em) {
  .hero {
    min-height: 39vh;
  }
  .hero__content {
    padding-right: 3rem;
    max-width: 44rem;
  }
  .hero .heading--primary {
    font-size: 4.4rem;
  }
}
/* =========================
   PHONE (600px)
========================= */
@media only screen and (max-width: 37.5em) {
  .row {
    row-gap: 2rem;
  }
  .header {
    height: 5rem;
  }
  .header__logo-box {
    top: 2.8rem;
    left: 2.8rem;
  }
  .header__logo {
    height: 1.5rem;
  }
  .hero {
    min-height: 35vh;
  }
  .hero .row {
    flex-direction: row;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .hero .col-1-of-2:first-child {
    flex: 0 0 45%;
  }
  .hero .col-1-of-2:last-child {
    flex: 0 0 55%;
  }
  .hero__content {
    padding-right: 3rem;
    max-width: 100%;
  }
  .hero .heading--primary {
    font-size: 2.3rem;
  }
  .heading--secondary {
    font-size: 2.3rem;
  }
  .heading--para {
    font-size: 1.2rem;
    margin-bottom: -2.5rem;
  }
  .item__text {
    margin: 0.5rem;
    font-size: 1.2rem;
  }
  .journey__line {
    width: 0;
  }
  .journey__row {
    margin-bottom: 12rem !important;
  }
  .section-services {
    margin-top: -32rem;
  }
}
.header {
  position: relative;
  height: 10rem;
}
.header__logo-box {
  position: absolute;
  top: 4.8rem;
  left: 4.8rem;
}
.header__logo {
  height: 2rem;
}

.hero {
  min-height: 95vh;
  padding: 0 0 8rem 0;
  position: relative;
  background-color: #fff;
  background-image: url("../img/hero_img.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
}
.hero .row {
  width: 100%;
}
.hero__content {
  max-width: 48rem;
  margin-left: auto;
  padding-right: 4rem;
  padding-top: 2rem;
}

@media only screen and (min-width: 112.5em) {
  .hero {
    min-height: 100vh;
  }
  .hero__content {
    max-width: 55rem;
  }
}
@media only screen and (max-width: 75em) {
  .hero {
    min-height: 42vh;
  }
  .hero__content {
    max-width: 44rem;
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero {
    min-height: 39vh;
  }
  .hero__content {
    padding-right: 3rem;
    max-width: 44rem;
  }
  .hero .heading--primary {
    font-size: 4.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .row {
    row-gap: 2rem;
  }
  .header {
    height: 5rem;
  }
  .header__logo-box {
    top: 2.8rem;
    left: 2.8rem;
  }
  .header__logo {
    height: 1.5rem;
  }
  .hero {
    min-height: 35vh;
  }
  .hero .row {
    flex-direction: row;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .hero .col-1-of-2:first-child {
    flex: 0 0 45%;
  }
  .hero .col-1-of-2:last-child {
    flex: 0 0 55%;
  }
  .hero__content {
    padding-right: 3rem;
    max-width: 100%;
  }
  .hero .heading--primary {
    font-size: 2.3rem;
  }
  .heading--secondary {
    font-size: 2.3rem;
  }
  .heading--para {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .item__text {
    margin: 0.5rem;
    font-size: 1.2rem;
  }
  .journey__line {
    width: 0;
  }
  .journey__row {
    margin-bottom: 12rem !important;
  }
  .section-services {
    margin-top: -32rem;
  }
}
.hero-strip {
  margin-top: 64px;
  background: #0E0E0E;
  color: #fff;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.hs-tag {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: #CC2929;
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
}

.hs-text {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.hs-cd {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.hs-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hs-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.hs-lbl {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.1rem;
}

.hs-sep {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #CC2929;
  margin-bottom: 0.3rem;
}

.book-hero {
  text-align: center;
  margin-bottom: 3.5rem;
}

.book-wrap {
  position: relative;
  max-width: 320px;
  margin: 0 auto 2rem;
}
.book-wrap img {
  width: 100%;
  display: block;
  border-radius: 2px;
  text-align: left;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.book-wrap:hover img {
  transform: perspective(900px) rotateY(-1deg) rotateX(1deg) scale(1.025);
  box-shadow: 24px 36px 90px rgba(0, 0, 0, 0.22);
}

.book-shadow {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.22) 0%, transparent 70%);
  filter: blur(8px);
}

.book-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.bm-item {
  text-align: center;
}

.bm-val {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0E0E0E;
  display: block;
}

.bm-label {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777777;
  margin-top: 0.2rem;
  display: block;
}

.price-card {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.price-head {
  background: #0E0E0E;
  color: #fff;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ph-label {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.3rem;
}

.ph-prebook {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}
.ph-prebook span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
  margin-right: 0.2rem;
}

.ph-original {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.ph-orig-label {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.ph-orig-price {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  letter-spacing: 0.04em;
}

.ph-save {
  display: inline-block;
  background: #CC2929;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-top: 0.3rem;
}

.price-body {
  padding: 1.5rem 1.75rem;
}

.price-note {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
}
.price-note strong {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0E0E0E;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.benefit-item:hover {
  border-color: #CC2929;
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(204, 41, 41, 0.08);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: #0E0E0E;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}
.benefit-icon.red-bg {
  background: #CC2929;
}

.benefit-name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
  text-align: left;
}

.benefit-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #666;
  text-align: left;
}

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: 2.5rem;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: #fff;
}

.guarantee-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: #555;
}

.guarantee strong {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
  color: #0E0E0E;
}

.why-section {
  background: #0E0E0E;
  padding: 6rem 2rem;
  margin-top: 4rem;
}

.why-inner {
  max-width: 720px;
  margin: 0 auto;
}

.why-eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.8rem;
}

.why-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 1.5rem;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: border-color 0.25s;
}
.why-card:hover {
  border-color: rgba(204, 41, 41, 0.4);
}

.why-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #CC2929;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.why-card h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

.testi-section {
  padding: 10rem 11rem;
  max-width: 222vh;
  margin: 100px auto;
  text-align: center;
  background: #0E0E0E;
}

.testi-quote {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 3.7rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.5rem;
}

.testi-attr {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #777777;
}

.testi-divider {
  width: 48px;
  height: 2px;
  background: #CC2929;
  margin: 1.5rem auto;
}

.faq-section {
  padding: 5rem 2rem;
  padding-bottom: 13rem;
  max-width: 720px;
  margin: 0 auto;
}

.faq-eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #CC2929;
  margin-bottom: 0.8rem;
}

.faq-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

.faq-item {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.faq-q-text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0E0E0E;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #777777;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  padding-bottom: 1.25rem;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 3rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 3.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#000, #999);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: -200px;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}
.navigation__item {
  margin: 1rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: all 0.4s;
}
.navigation__link:link span, .navigation__link:visited span {
  margin-right: 1.5rem;
  display: inline-block;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #c9302c;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
  left: 0;
}
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(-135deg);
}

.section-team {
  padding: 8rem 0;
  background-color: #f5f5f5;
}

.team-container {
  max-width: 90rem;
  margin: 0 auto;
}

.team-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 5rem;
  text-transform: uppercase;
}

.team-card {
  max-width: 24rem;
  margin: 0 auto;
  text-align: center;
}

.team-img {
  width: 100%;
  height: 34rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
  display: block;
}

.team-placeholder {
  width: 100%;
  height: 28rem;
  background-color: #666;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.team-name {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.team-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
}

.terms-hero {
  text-align: center;
  padding: 4rem 0 3rem;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.terms-hero__eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #CC2929;
  margin-bottom: 1rem;
  display: block;
}

.terms-hero__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #0E0E0E;
}

.terms-hero__sub {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #777777;
}

.terms-accept {
  background: #0E0E0E;
  color: #fff;
  padding: 1.4rem 1.75rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  line-height: 1.7;
  border-left: 4px solid #CC2929;
}
.terms-accept strong {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
  color: #CC2929;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  list-style: none;
}

.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.2s ease;
}
.terms-item:hover {
  border-color: #CC2929;
}

.terms-item__bullet {
  width: 2.8rem;
  height: 2.8rem;
  min-width: 2.8rem;
  background: #0E0E0E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.terms-item__bullet svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.terms-item__bullet--red {
  background: #CC2929;
}

.terms-item__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555555;
}

.terms-section-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #777777;
  padding-top: 2rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.8rem;
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
  display: block;
}

.terms-section-title:first-of-type {
  border-top: none;
  padding-top: 0;
}

.terms-ack {
  background: #f1f1f1;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  text-align: center;
  margin-top: 3rem;
}
.terms-ack p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555555;
}
.terms-ack strong {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0E0E0E;
  margin-bottom: 0.6rem;
}

.terms-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
}

.quote-band {
  margin-top: 10rem;
  padding: 14rem 2rem;
  background: #0E0E0E;
  color: #f1f1f1;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band__bar {
  position: absolute;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background: #c9302c;
}
.quote-band__bar--left {
  left: 0;
}
.quote-band__bar--right {
  right: 0;
}
.quote-band__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.quote-band__quote {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(1.5rem, 4vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.quote-band__cite {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.pull-quote {
  padding: 12rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote .parent-class {
  position: relative;
}
.pull-quote__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.29) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 64% 64% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 100%);
}
.pull-quote__inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}
.pull-quote__quote {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(1.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pull-quote__quote em {
  color: #c9302c;
  font-style: normal;
  font-weight: 700;
}
.pull-quote__attr {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #777777;
}

.cta {
  padding: 14rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 48, 44, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta__heading {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta__heading--accent {
  color: #c9302c;
  font-weight: 900;
}
.cta__sub {
  font-size: 1.6rem;
  color: #777777;
  max-width: 46rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}
.cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.section-about {
  background: #f7f7f7;
  padding: 25rem 0;
  margin-top: -20vh;
}

.section-features > * {
  transform: skewY(7deg);
}
.section-features {
  background-image: linear-gradient(to right bottom, rgba(201, 48, 44, 0.8), rgba(56, 2, 0, 0.8)), url(../img/nat-4.jpg);
  background-size: cover;
  transform: skewY(-7deg);
  margin-top: -10rem;
  padding: 20rem 0px;
}

.section-services {
  margin-top: -10rem;
  padding: 25rem 0px 15rem;
}

.section-stories {
  position: relative;
  padding: 15rem 0;
}

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #ffd0ce, #380200);
}

.book {
  width: 100%;
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../img/nat-10.jpg);
  background-size: cover;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  height: 50rem;
}
.book__form {
  width: 50%;
  padding: 6rem;
}

.section-author {
  padding: 12rem 0;
  background: url("../img/author-bg-pattern.jpg");
  background-size: cover;
  background-position: center;
}/*# sourceMappingURL=main.css.map */