/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --txt-grey: #444950;
  --th-blue: #1b263b;
  --th-brn: #96543e;
  --th-l-brn: #c88d6f;
  --th-bge: #d7b7a2;
  --cannoli-cream: #f1f0e2;
  --the-grey: #f6f7f9;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  /* --laini-font: */
  --pri-font: "Poppins", sans-serif;
  --sec-font: "Quicksand", sans-serif;
  --one-font: "Onest", sans-serif;
  --int-font: "Inter Tight", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-9: 9rem;
  --fs-8-5: 8.5rem;
  --fs-8: 8rem;
  --fs-7-5: 7.5rem;
  --fs-7: 7rem;
  --fs-6-5: 6.5rem;
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
  --mb-8-5: 8.5rem;
  --mb-9: 9rem;
  --mb-9-5: 9.5rem;
  --mb-10: 10rem;
}

/* --------------- ========== LP-MAIN ========== ---------------*/
.lp-main {
  width: 100%;
  overflow: hidden;
}

/*========== >>>>> HERO SECTION <<<<< ==========*/
.hero {
  width: 100%;
  height: 100dvh;
  padding: var(--mb-0-5);
  background-color: var(--white);
}

.h-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.h-media {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--soft-white);
  background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2);
  overflow: hidden;
  z-index: 2;
}

.hm-img {
  position: absolute;
  width: auto;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  overflow: hidden;
  /* Optional: Remove border after testing */
  /* border: 1px red solid; */
  opacity: 0; /* Start hidden */
  transform: scale(0.8); /* Start slightly shrunk */
}

/* Image inside */
.hm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Specific manual positions */
.hm-img:nth-child(1) {
  top: -2rem;
  left: 22rem;
  width: 155px;
  height: 170px;
}

.hm-img:nth-child(2) {
  top: 18rem;
  left: 1.5rem;
  width: 195px;
  height: 125px;
}

.hm-img:nth-child(2) img {
  object-position: 50% 40%;
}

.hm-img:nth-child(3) {
  bottom: -1.5rem;
  left: 12rem;
  width: 155px;
  height: 170px;
}

.hm-img:nth-child(4) {
  bottom: 4.25rem;
  left: 35rem;
  width: 150px;
  height: 170px;
}

.hm-img:nth-child(5) {
  bottom: 1.5rem;
  right: 8.5rem;
  width: 220px;
  height: 125px;
}

.hm-img:nth-child(6) {
  bottom: 19rem;
  right: 3rem;
  width: 155px;
  height: 170px;
}

.hm-img:nth-child(7) {
  top: 7rem;
  right: 22rem;
  width: 200px;
  height: 120px;
}

/* Wavy floating animation */
@keyframes floatWavy {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(10px, -5px) rotate(1deg) scale(1.02);
  }
  50% {
    transform: translate(0px, 10px) rotate(-1deg) scale(1);
  }
  75% {
    transform: translate(5px, -10px) rotate(0.5deg) scale(1.01);
  }
}

.h-data {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: var(--mb-1-5);
  /* background-color: rgba(0, 0, 0, 0.6); */
  z-index: 3;
}

.h-data h1 {
  font-size: var(--fs-5);
  font-weight: 400;
  text-align: center;
  color: var(--black);
  line-height: 1;
  font-family: var(--sec-font);
}

.h-data h1 span {
  color: var(--th-l-brn);
}

.h-data p {
  width: 30%;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--txt-grey);
  line-height: 1.4;
  font-family: var(--sec-font);
  display: none;
}

/* --------------- ========== AB-MAIN (ABOUT PAGE) ========== ---------------*/
.ab-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--cannoli-cream);
  background-image: url(/assets/img/bckg/txt-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

/*========== >>>>> AERO SECTION <<<<< ==========*/
.aero {
  width: 100%;
  /* background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2); */
  background: transparent;
  padding: 0;
}

.ae-container {
  width: 100%;
  overflow: hidden;
  padding: var(--mb-2);
  background-color: rgb(241, 240, 226, 0.8);
  /* border: 1px red solid; */
  row-gap: var(--mb-4);
  padding-top: var(--mb-8);
}

.ae-title {
  width: 100%;
  /* align-items: flex-start; */
  justify-content: flex-end;
  /* background-color: var(--white); */
  row-gap: var(--mb-0-75);
  /* padding-bottom: var(--mb-1); */
  /* padding: var(--mb-2);
  border: 4px var(--txt-grey) solid; */
}

.ae-title p {
  width: 45%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  line-height: 1.3;
  font-family: var(--sec-font);
  display: none;
}

.ae-title h1 {
  width: 80%;
  font-size: 7rem;
  font-weight: 400;
  text-align: center;
  color: var(--black);
  letter-spacing: -0.05em;
  line-height: 1.2;
  font-family: var(--sec-font);
}

.ae-title h1 span {
  color: var(--th-brn);
}

.ae-media {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-color: #737373;
  border: 10px var(--white) solid;
}

.aem {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(/assets/img/gif/g-1.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ae-media video,
.ae-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ae-data {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-2);
  margin-top: var(--mb-2);
}

.ae-data > span {
  width: 50px;
  border-top: 3px var(--th-brn) solid;
  border-radius: 30px;
}

.ae-data p {
  width: 80%;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
  font-family: var(--sec-font);
}

.ae-data p span {
  color: var(--th-brn);
  font-style: italic;
}

/*========== >>>>> ABOUT PAGE [SERVICES] <<<<< ==========*/
.as {
  width: 100%;
  padding: var(--mb-4) var(--mb-3);
  background-color: rgb(241, 240, 226, 0.8);
  /* border: 1px red solid; */
}

.as-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-6);
}

.as-title {
  align-items: flex-start;
}

.as-title h2 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--txt-grey);
  font-family: var(--sec-font);
  line-height: 1.3;
}

.as-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-3);
  /* padding: var(--mb-2);
  background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2); */
}

.asc {
  flex: 0 0 31%;
  height: 470px;
  border: 1px var(--soft-black) solid;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--mb-1-5);
  cursor: pointer;
}

.asc:hover {
  background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2);
}

.asc-title {
  width: 100%;
  justify-content: flex-start;
}

.asc-title h3 {
  flex: 0 0 auto;
  width: auto;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
  line-height: 1.3;
  padding: var(--mb-0-75) var(--mb-1-5);
  border: 1px var(--th-brn) solid;
  border-radius: 30px;
}

.asc:hover .asc-title h3 {
  background-color: var(--th-brn);
  color: var(--white);
}

.asc-body {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.asc-body p {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
}

.ascb-icon {
  padding: var(--mb-0-75);
  background-color: var(--th-brn);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  cursor: pointer;
}

.ascb-icon:hover {
  rotate: 45deg;
  background-color: var(--soft-black);
}

.asc-img {
  flex: 0 0 31%;
  height: 470px;
  overflow: hidden;
  background-color: var(--th-bge);
}

.asc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.as-quote {
  justify-content: flex-start;
  row-gap: var(--mb-2);
}

.as-quote span {
  width: 50px;
  border-top: 3px var(--th-brn) solid;
  border-radius: 30px;
}

.as-quote p {
  width: 75%;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
  font-family: var(--sec-font);
  line-height: 1.35;
  font-style: italic;
}

/*========== >>>>> ABOUT PAGE [FAQ] <<<<< ==========*/
.fq {
  width: 100%;
  background-color: rgb(241, 240, 226, 0.8);
  /* border: 1px red solid; */
}

.fq-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-4);
}

.fq-title {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-1-5);
}

.fq-title span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: var(--soft-black);
  padding: var(--mb-0-5) var(--mb-1);
  border: 1px var(--th-brn) solid;
  border-radius: 30px;
  line-height: 1.1;
}

.fq-title h2 {
  width: 60%;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  color: var(--soft-black);
  font-family: var(--sec-font);
  line-height: 1.1;
}

.fq-title p {
  width: 50%;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  color: var(--txt-grey);
  font-family: var(--sec-font);
}

.fq-cards {
  width: 80%;
  justify-content: flex-start;
}

.fqc {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px var(--txt-grey) solid;
  padding: var(--mb-1-5) 0;
  cursor: pointer;
}

.fqc:last-child {
  border-bottom: 1px var(--soft-black) solid;
}

.fqc-q {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.fqc-q h3 {
  flex: 0 0 80%;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  color: var(--soft-black);
  font-family: var(--sec-font);
}

.fqc-q span {
  padding: var(--mb-0-5);
  border-radius: 50%;
  border: 1px var(--th-brn) solid;
  font-size: 1.5rem;
  color: var(--soft-black);
  text-align: center;
  line-height: 1;
  margin: 0;
}

.fqc:hover .fqc-q span {
  background-color: var(--th-brn);
  color: var(--white);
}

.fqc.active .fqc-q span {
  background-color: var(--th-brn);
  color: var(--white);
  rotate: 180deg;
}

.fqc-a {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
  padding-top: var(--mb-0-5);
  animation: fadeY 0.3s ease-in-out;
  display: none;
}

/* .fqc:hover .fqc-a {
  display: flex;
} */

.fqc.active .fqc-a {
  display: flex;
}

.fqc-a p {
  width: 80%;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
  line-height: 1.35;
}

.fqc-a p strong {
  font-weight: 600;
  color: var(--th-brn);
}

.fq-extra {
  justify-content: flex-start;
  row-gap: var(--mb-1);
  padding: var(--mb-2);
  border: 1px var(--soft-black) solid;
}

.fq-extra:hover {
  background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2);
}

.fq-extra h4 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--soft-black);
  font-family: var(--sec-font);
  line-height: 1;
}

.fq-extra p {
  width: 70%;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: var(--txt-grey);
  font-family: var(--sec-font);
  line-height: 1.3;
}

.fq-extra button {
  font-size: var(--fs-1);
}

/* --------------- ========== CL-MAIN (COLLECTION PAGE) ========== ---------------*/
.cl-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--cannoli-cream);
  background-image: url(/assets/img/bckg/txt-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*========== >>>>> CL SECTION <<<<< ==========*/
.cl {
  width: 100%;
  padding: var(--mb-1);
  /* background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2); */
  background-color: rgb(241, 240, 226, 0.8);

  align-items: flex-start;
}

.cl-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-1);
  /* border: 1px teal solid; */
}

.clc {
  position: relative;
  width: 100%;
  height: 95.5dvh;
  overflow: hidden;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.clc-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.clc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clc:first-child .clc-img img {
  object-position: 50% 10%;
}

.clc-action {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.clc-action p {
  font-size: var(--fs-5);
  font-weight: 400;
  text-align: center;
  color: var(--white);
  line-height: 1.1;
  font-family: var(--sec-font);
}

.clc-action p span {
  color: var(--th-brn);
}

/* --------------- ========== CP-MAIN (COLLECTION PIECE PAGE) ========== ---------------*/
.cp-main {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--cannoli-cream);
  background-image: url(/assets/img/bckg/txt-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

/*========== >>>>> COLLECTION PAGE - HERO SECTION <<<<< ==========*/
.cero {
  width: 100%;
  height: 100dvh;
  background: transparent;
  padding: 0;
  overflow: hidden;
  background-color: rgb(241, 240, 226, 0.8);
}

.ce-container {
  width: 100%;
  height: 100%;
  /* border: 1px teal solid; */
  align-items: center;
  overflow: hidden;
}

.ce-header {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* border: 2px red solid; */
}

.ceh-img {
  width: 80%;
  height: 85%;
  z-index: 4;
  padding: var(--mb-0-5);
  background-color: var(--soft-white);
}

.ceh-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--th-bge);
}

.ceh-title {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  display: none;
}

.cet-track {
  display: flex;
  width: max-content;
  animation: scrollLoop linear infinite;
}

.cet {
  white-space: nowrap;
  /* margin-right: 2rem; */
  display: inline-block;
}

.ceh-title h1 {
  font-size: var(--fs-7);
  font-weight: 500;
  text-align: center;
  color: var(--txt-grey);
  line-height: 1;
  font-family: var(--sec-font);
}

.ceh-title h1 span {
  color: var(--th-brn);
}

/* Scroll animation (duration is set dynamically via JS) */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ceh-action {
  position: absolute;
  bottom: var(--mb-2);
  left: 50%;
  transform: translate(-50%, 0);
  width: 95%;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 5;
}

.ceha {
  flex: 0 0 auto;
  cursor: pointer;
  column-gap: var(--mb-0-25);
  border: 1px var(--th-brn) solid;
  padding: var(--mb-0-5);
  border-radius: 50%;
}

.ceha span,
.ceha i {
  font-size: 1.2rem;
  color: var(--soft-black);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  margin: 0;
  transform: translateY(1px);
}

.ceha p {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  color: var(--soft-black);
  line-height: 1.3;
  font-family: var(--sec-font);
  display: none;
}

.ceha:hover {
  border-radius: 30px;
  width: fit-content;
  animation: fadeX 0.2s ease-in-out;
}

.ceha:hover p {
  display: inline-block;
  /* color: var(--white); */
}

/*========== >>>>> COLLECTION PAGE - SUBTEXT SECTION <<<<< ==========*/
.cs {
  width: 100%;
  /* border: 1px red solid; */
  /* background-color: rgba(250, 250, 250, 0.85); */
  background-color: rgb(241, 240, 226, 0.8);
  z-index: 4;
  /* display: none; */
}

.cs-container {
  width: 100%;
  /* border: 1px dodgerblue solid; */
  row-gap: var(--mb-1-5);
  /* padding: var(--mb-2);
  border: 1px var(--th-brn) solid; */
}

.cs-container span {
  width: 40px;
  border-top: 2px var(--th-brn) solid;
  border-radius: 30px;
}

.cs-container h3 {
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  color: var(--txt-grey);
  font-family: var(--sec-font);
  line-height: 1.4;
  font-style: italic;
}

.cs-container h3 strong {
  color: var(--th-brn);
  font-weight: 500;
}

/*========== >>>>> COLLECTION PAGE - CARDS SECTION <<<<< ==========*/
.cc {
  width: 100%;
  /* background-color: rgba(250, 250, 250, 0.85); */
  background-color: rgb(241, 240, 226, 0.8);
  padding: var(--mb-4) var(--mb-2);
}

.cd-container {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.cc-col {
  flex: 0 0 31.5%;
  justify-content: flex-start;
  row-gap: var(--mb-2);
}

.ccc {
  width: 100%;
  overflow: hidden;
  padding: var(--mb-0-5);
  background-color: var(--soft-white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  cursor: pointer;
}

.ccc img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.ccc:hover img {
  scale: 1.1;
}

/* --------------- ========== RS-MAIN (RESIDENCY PAGE) ========== ---------------*/
.rs-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--cannoli-cream);
  background-image: url(/assets/img/bckg/txt-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*========== >>>>> RESIDENCY PAGE [HERO] <<<<< ==========*/
.rero {
  width: 100%;
  background-color: rgb(241, 240, 226, 0.8);
  padding: var(--mb-4) var(--mb-2);
  padding-top: var(--mb-7);
}

.re-container {
  width: 100%;
  height: 100%;
  row-gap: var(--mb-3);
  justify-content: flex-start;
}

.re-data {
  width: 100%;
  /* border: 1px teal solid; */
  justify-content: flex-start;
  align-items: flex-start;
}

.red-title {
  width: 100%;
  justify-content: flex-start;
  padding-bottom: var(--mb-1-5);
  border-bottom: 2px var(--th-brn) solid;
}

.red-title h1 {
  width: 100%;
  font-size: 7rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-family: var(--sec-font);
  opacity: 0.9;
}

.red-title h1 > span {
  color: var(--th-brn);
}

.red-txt {
  width: 100%;
  padding-top: var(--mb-1-5);
  justify-content: space-between;
  align-items: flex-start;
}

.redt {
  flex: 0 0 40%;
  justify-content: flex-start;
  align-items: flex-start;
}

.redt:last-child {
  flex: 0 0 20%;
}

.redt p {
  width: 85%;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
}

.redt:last-child {
  justify-content: flex-end;
  align-items: flex-end;
}

.redt:last-child > button {
  column-gap: var(--mb-0-5);
}

.redt:last-child > button span {
  font-size: var(--fs-1-5);
  color: var(--txt-grey);
  padding: 0;
  margin: 0;
}

.redt:last-child > button:hover span {
  transform: translateX(2px);
  color: var(--white);
}

.re-media {
  width: 100%;
  height: 550px;
  justify-content: space-between;
  align-items: flex-start;
  /* border: 1px red solid; */
  overflow: hidden;
  /* padding-bottom: var(--mb-2);
  border-bottom: 2px var(--th-brn) solid; */
}

.re-media img {
  flex: 0 0 32.5%;
  height: 100%;
  background-color: var(--soft-white);
  object-fit: cover;
  overflow: hidden;
}

/*========== >>>>> RESIDENCY PAGE [PROFILE] <<<<< ==========*/
.repo {
  width: 100%;
  background-color: rgb(241, 240, 226, 0.8);
  padding: 0 var(--mb-4);
  padding-bottom: var(--mb-4);
}

.rp-container {
  width: 100%;
  row-gap: var(--mb-4);
  justify-content: flex-start;
}

.rp-title {
  width: 100%;
  justify-content: flex-start;
  padding: var(--mb-2) 0;
  border-top: 1px var(--th-brn) solid;
  border-bottom: 1px var(--th-brn) solid;
}

.rp-title h2 {
  width: 100%;
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
  font-family: var(--sec-font);
  line-height: 1.4;
}

.rp-title h2 strong {
  font-weight: 500;
  color: var(--th-brn);
}

.rp-data {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.rpd-title {
  position: relative;
  flex: 0 0 45%;
  height: 830px;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
  border: 6px var(--white) solid;
}

.rpdt-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.rpdt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--th-bge);
}

.rpdt-data {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-75);
  padding: var(--mb-2);
  padding-bottom: var(--mb-4);
}

.rpdt-data h3 {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  color: var(--soft-white);
  font-family: var(--sec-font);
  line-height: 1.2;
  font-style: italic;
}

.rpdt-data p {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: #e5e5e5;
  font-family: var(--sec-font);
  line-height: 1.3;
  font-style: italic;
}

.rpdt-data p strong {
  font-weight: 600;
  color: var(--th-bge);
}

.rpd-list {
  flex: 0 0 50%;
  justify-content: flex-start;
  align-items: flex-start;
}

.rpdl {
  width: 100%;
  padding: var(--mb-1-5) 0;
  row-gap: var(--mb-0-5);
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px var(--th-l-brn) solid;
}

.rpdl:first-child {
  padding-top: 0;
}

.rpdl > h4 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  color: var(--soft-black);
  font-style: italic;
  line-height: 1.3;
}

.rpdl p {
  width: 85%;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
}

.rp-info {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.rpi {
  flex: 0 0 48%;
  height: 380px;
  border: 1px var(--soft-black) solid;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--mb-1-5);
  row-gap: var(--mb-3);
  cursor: pointer;
}

.rpi:hover {
  background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2);
}

.rpi-title {
  width: 100%;
  justify-content: flex-start;
}

.rpi-title h3 {
  flex: 0 0 auto;
  width: auto;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
  line-height: 1.3;
  padding: var(--mb-0-75) var(--mb-1-5);
  border: 1px var(--th-brn) solid;
  border-radius: 30px;
}

.rpi:hover .rpi-title h3 {
  background-color: var(--th-brn);
  color: var(--white);
}

.rpi-body {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.rpi-body p {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
}

.rpi-body p strong {
  font-weight: 600;
  color: var(--th-brn);
}

.rpi-body a {
  color: var(--th-brn);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--th-brn);
}

.rpi-body a:hover {
  color: var(--soft-black);
  text-decoration-color: var(--soft-black);
}

.rpib-icon {
  padding: var(--mb-0-75);
  background-color: var(--th-brn);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  cursor: pointer;
}

.rpib-icon:hover {
  rotate: 45deg;
  background-color: var(--soft-black);
}

.rp-cta {
  position: relative;
  width: 100%;
  height: 600px;
  border: 6px var(--white) solid;
}

.rpc-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.rpc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--th-bge);
}

.rpc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: var(--mb-2);
  row-gap: var(--mb-2);
}

.rpc h5 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: center;
  color: var(--white);
  line-height: 1.1;
}

.rpc p {
  width: 80%;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  color: #e5e5e5;
}

.rpc p strong {
  font-weight: 600;
  color: var(--th-bge);
}

/* --------------- ========== CLA-MAIN (CLASSES PAGE) ========== ---------------*/
.cla-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--cannoli-cream);
  background-image: url(/assets/img/bckg/txt-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*========== >>>>> CLASSES PAGE [HERO] <<<<< ==========*/
.caro {
  width: 100%;
  height: 50dvh;
  background-color: rgb(241, 240, 226, 0.8);
  padding: var(--mb-4) var(--mb-2);
  padding-top: var(--mb-6);
}

.ca-container {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  /* border: 1px teal solid; */
}

.ca-title {
  width: 100%;
  overflow: hidden;
}

.ca-title h1 {
  width: 100%;
  font-size: 7rem;
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-family: var(--sec-font);
}

.ca-title h1 span {
  color: var(--th-brn);
}

/*========== >>>>> CLASSES PAGE [GALLERY] <<<<< ==========*/
.cg {
  width: 100%;
  background-color: rgb(241, 240, 226, 0.8);
  padding: var(--mb-2) var(--mb-6);
}

.cg-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-6);
}

.cgc {
  width: 100%;
  padding: var(--mb-2);
  border: 2px var(--th-brn) solid;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-2);
  backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
  /* background-color: rgba(250, 250, 250, 0.5); */
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

/* .cgc div {
  flex: 0 0 48.5%;
  height: 600px;
} */

.cgc-title {
  flex: 0 0 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-1);
  padding-bottom: var(--mb-1-5);
  border-bottom: 2px var(--th-brn) solid;
}

.cgc-title h3 {
  width: 100%;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  color: var(--soft-black);
  font-family: var(--sec-font);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--mb-0-5);
}

.cgc-title h3 span {
  color: var(--th-brn);
  font-size: var(--fs-3);
  line-height: 0;
}

.cgc-title p {
  width: 80%;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--txt-grey);
  font-family: var(--sec-font);
}

.cgc-img {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border: 6px var(--white) solid;
}

.cgc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--th-bge);
}

.cgc:nth-child(1) .cgc-img img {
  object-position: 50% 30%;
}

.cgc:nth-child(3) .cgc-img img {
  object-position: 50% 85%;
}

.cgc-data {
  width: 100%;
  /* height: 650px; */
  /* border: 1px teal solid; */
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-2);
}

.cgc-list {
  flex: 0 0 48%;
  min-height: 300px;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1rem;
  padding: var(--mb-1-5);
  border: 1px var(--th-brn) solid;
}

.cgc-list h4 {
  width: 100%;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  color: var(--soft-black);
  font-family: var(--sec-font);
  line-height: 1.3;
}

.cgcl-ul {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 0.5rem;
}

.cgcl-li {
  width: 100%;
  display: inline-block;
  column-gap: var(--mb-0-25);
  line-height: 1.35;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
}

.cgcl-li span {
  font-size: 0.75rem;
  color: var(--th-brn);
}

.cgcl-li a {
  text-decoration: underline;
  text-decoration-color: var(--th-brn);
  text-decoration-thickness: 1px;
  font-size: 0.95rem;
  color: var(--txt-grey);
}

.cgcl-li a:hover {
  color: var(--soft-black);
  text-decoration-thickness: 1.5px;
  font-weight: 600;
}

.cgc-list strong {
  flex: 0 0 auto;
  color: var(--th-brn);
  font-weight: 600;
}

.cgc-action {
  width: 100%;
  padding-top: var(--mb-2);
  border-top: 2px var(--th-brn) solid;
}

.cgc-action button {
  font-size: 1.1rem;
}

/* --------------- ========== CO-MAIN (CONTACT PAGE) ========== ---------------*/
.co-main {
  width: 100%;
  overflow: hidden;
}

/*========== >>>>> CONTACT PAGE [HERO] <<<<< ==========*/
.ccro {
  width: 100%;
  height: 100dvh;
  padding: 0;
  background-color: var(--cannoli-cream);
  background-image: url(/assets/img/bckg/txt-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cc-container {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  padding: 0;
  padding-top: var(--mb-1-5);
  background-color: rgb(241, 240, 226, 0.8);
}

.cc-title {
  width: 100%;
  height: 77.5%;
  /* border: 1px teal solid; */
}

.cct {
  width: 100%;
  height: 100%;
  row-gap: var(--mb-2);
}

.cct > span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: var(--soft-black);
  line-height: 1.1;
  border: 1px var(--th-brn) solid;
  border-radius: 30px;
  padding: var(--mb-0-5) var(--mb-1);
}

.cct h1 {
  width: 80%;
  font-size: 7rem;
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cct h1 span {
  color: var(--th-brn);
}

.cct > button {
  margin-top: var(--mb-0-5);
  column-gap: var(--mb-0-5);
}

.cct > button span {
  font-size: var(--fs-1-5);
  color: var(--white);
  padding: 0;
  margin: 0;
}

.cct > button:hover span {
  transform: translateX(2px);
}

.cc-body {
  width: 100%;
  height: 22.5%;
  justify-content: space-between;
  align-items: flex-start;
  /* padding-top: var(--mb-3); */
  border-top: 1px var(--th-brn) solid;
}

.ccb {
  flex: 0 0 25%;
  height: 100%;
  padding: var(--mb-1-5);
  border-right: 1px var(--th-brn) solid;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
}

.ccb:hover {
  background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2);
}

.ccb p,
.ccb h4 {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--soft-black);
  font-family: var(--sec-font);
}

.ccb h4 {
  line-height: 1;
}

.ccb-txt p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--txt-grey);
}

.ccbs-ul,
.ccbc,
.ccbl {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
}

.ccbs-ul a,
.ccbc a,
.ccbl a {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  color: var(--txt-grey);
  line-height: 1.1;
  border: 1px var(--th-brn) solid;
  border-radius: 30px;
  padding: var(--mb-0-5) var(--mb-1);
}

.ccbs-ul a:hover,
.ccbc a:hover,
.ccbl a:hover {
  background-color: var(--th-brn);
  color: var(--white);
}

/* --------------- ========== TM-MAIN (TERMS / POLICY PAGE) ========== ---------------*/
.tm-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--cannoli-cream);
  background-image: url(/assets/img/bckg/txt-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*========== >>>>> TERMS / POLICY PAGE [HERO] <<<<< ==========*/
.tero {
  width: 100%;
  background-color: rgb(241, 240, 226, 0.8);
  padding: var(--mb-4);
  padding-top: var(--mb-7);
}

.te-container {
  width: 100%;
  row-gap: var(--mb-3);
  justify-content: flex-start;
}

.te-data {
  width: 100%;
  /* border: 1px teal solid; */
  justify-content: flex-start;
  align-items: flex-start;
}

.ted-title {
  width: 100%;
  justify-content: flex-start;
  padding-bottom: var(--mb-1-5);
  border-bottom: 2px var(--th-brn) solid;
}

.ted-title h1 {
  width: 100%;
  font-size: 7rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-family: var(--sec-font);
  opacity: 0.9;
}

.ted-title h1 > span {
  color: var(--th-brn);
}

.ted-txt {
  width: 100%;
  padding-top: var(--mb-1-5);
  justify-content: space-between;
  align-items: flex-start;
}

.tedt {
  flex: 0 0 40%;
  justify-content: flex-start;
  align-items: flex-start;
}

.tedt:last-child {
  flex: 0 0 20%;
}

.tedt p {
  width: 85%;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
}

.tedt:last-child {
  justify-content: flex-end;
  align-items: flex-end;
}

.tedt:last-child > button {
  column-gap: var(--mb-0-5);
}

.tedt:last-child > button span {
  font-size: var(--fs-1-5);
  color: var(--txt-grey);
  padding: 0;
  margin: 0;
}

.tedt:last-child > button:hover span {
  transform: translateX(2px);
  color: var(--white);
}

.te-media {
  width: 100%;
  height: 600px;
  justify-content: space-between;
  align-items: flex-start;
  border: 6px var(--white) solid;
  overflow: hidden;
}

.te-media img {
  width: 100%;
  height: 100%;
  background-color: var(--th-bge);
  object-fit: cover;
}

/*========== >>>>> TERMS / POLICY PAGE [CARDS] <<<<< ==========*/
.tec {
  width: 100%;
  background-color: rgb(241, 240, 226, 0.8);
  padding: var(--mb-2) var(--mb-4);
}

.tc-container {
  width: 100%;
  row-gap: var(--mb-4);
  justify-content: space-between;
  align-items: flex-start;
}

.tc {
  flex: 0 0 48%;
  padding: var(--mb-2);
  border: 2px var(--th-brn) solid;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.tc-title {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
}

.tc-title h3 {
  width: 100%;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: left;
  color: var(--soft-black);
  font-family: var(--sec-font);
  line-height: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-5);
}

.tc-title h3 span {
  color: var(--th-brn);
  font-size: var(--fs-2);
  line-height: 0;
}

.tc-title p {
  width: 90%;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
}

.tc-ul {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
  padding-top: var(--mb-1-5);
  border-top: 1px var(--th-brn) solid;
}

.tc-li {
  width: 100%;
  display: inline-block;
  column-gap: var(--mb-0-25);
  line-height: 1.35;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  font-family: var(--sec-font);
}

.tc-li a {
  text-decoration: underline;
  text-decoration-color: var(--th-brn);
  font-size: 0.95rem;
  color: var(--txt-grey);
}

.tc-li a:hover {
  color: var(--soft-black);
  text-decoration-thickness: 2px;
}

.tc-li strong {
  color: var(--th-brn);
  font-weight: 600;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 500px */
@media screen and (max-width: 500px) {
  /* --------------- ========== LP-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> HERO SECTION <<<<< ==========*/
  .hero {
    width: 100%;
    height: 100dvh;
    padding: var(--mb-0-5);
  }

  .h-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .h-media {
    background-color: var(--soft-white);
    background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2);
  }

  .hm-img {
    position: absolute;
    width: auto;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation-duration: 20s !important; /* or any slower value you prefer */
    border-radius: 15px;
  }

  /* Specific manual positions */
  .hm-img:nth-child(1) {
    top: -2.5rem;
    left: 8rem;
    width: 90px;
    height: 100px;
  }

  .hm-img:nth-child(2) {
    top: 8rem;
    left: -3.5rem;
    width: 150px;
    height: 80px;
  }

  .hm-img:nth-child(3) {
    bottom: 8.5rem;
    left: 0.5rem;
    width: 100px;
    height: 80px;
  }

  .hm-img:nth-child(4) {
    bottom: -2.5rem;
    left: 8rem;
    width: 110px;
    height: 120px;
  }

  .hm-img:nth-child(5) {
    bottom: 8rem;
    right: -2rem;
    width: 130px;
    height: 95px;
    /* border: 1px red solid; */
  }

  .hm-img:nth-child(6) {
    bottom: 28rem;
    right: 1.5rem;
    width: 90px;
    height: 95px;
  }

  .hm-img:nth-child(7) {
    display: none;
  }

  .h-data {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: var(--mb-0-75);
    /* background-color: rgba(0, 0, 0, 0.6); */
    z-index: 3;
  }

  .h-data h1 {
    width: 68%;
    font-size: var(--fs-3);
    font-weight: 400;
    text-align: center;
    color: var(--black);
    line-height: 1;
    font-family: var(--sec-font);
    word-wrap: break-word;
  }

  .h-data h1 span {
    color: var(--th-l-brn);
  }

  .h-data p {
    width: 80%;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: var(--txt-grey);
    font-family: var(--sec-font);
  }

  /* --------------- ========== AB-MAIN (ABOUT PAGE) ========== ---------------*/
  .ab-main {
    width: 100%;
    overflow: hidden;
    z-index: 1;
  }

  /*========== >>>>> AERO SECTION <<<<< ==========*/
  .aero {
    width: 100%;
    /* background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2); */
    background: transparent;
    padding: 0;
  }

  .ae-container {
    width: 100%;
    padding: var(--mb-2) var(--mb-1-5);
    row-gap: var(--mb-3);
    padding-top: var(--mb-4-5);
  }

  .ae-title {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-0-75);
  }

  .ae-title h1 {
    width: 80%;
    font-size: 4rem;
    letter-spacing: -0.05em;
    line-height: 1.2;
    /* display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5); */
  }

  .ae-title h1 span {
    color: var(--th-brn);
    line-height: 0;
    font-size: var(--fs-6);
    display: none;
  }

  .ae-media {
    width: 100%;
    height: 50dvh;
  }

  .aem {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url(/assets/img/gif/g-1.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .ae-data {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-1-5);
    margin-top: var(--mb-1);
  }

  .ae-data span {
    width: 50px;
    border-top: 3px var(--th-brn) solid;
    border-radius: 30px;
  }

  .ae-data p {
    width: 100%;
    font-size: 1.3rem;
  }

  /*========== >>>>> ABOUT PAGE [SERVICES] <<<<< ==========*/
  .as {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
  }

  .as-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-4);
  }

  .as-title {
    display: none;
  }

  .as-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-2);
    /* padding: var(--mb-2);
  background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2); */
  }

  .asc {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    padding: var(--mb-1-5);
    row-gap: var(--mb-1-5);
    cursor: pointer;
  }

  .asc-title {
    width: 100%;
    justify-content: center;
  }

  .asc-title h3 {
    flex: 0 0 auto;
    width: auto;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    padding: var(--mb-0-5) var(--mb-1);
  }

  .asc-body {
    width: 100%;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .asc-body p {
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
  }

  .ascb-icon {
    padding: var(--mb-0-75);
    background-color: var(--th-brn);
    color: var(--white);
    font-size: 1.3rem;
  }

  .asc-img {
    flex: 0 0 auto;
    width: 100%;
    height: 350px;
  }

  .as-quote {
    justify-content: flex-start;
    row-gap: var(--mb-2);
  }

  .as-quote span {
    width: 40px;
    border-top: 3px var(--th-brn) solid;
    border-radius: 30px;
  }

  .as-quote p {
    width: 90%;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
  }

  /*========== >>>>> ABOUT PAGE [FAQ] <<<<< ==========*/
  .fq {
    width: 100%;
    background-color: rgb(241, 240, 226, 0.8);
    /* border: 1px red solid; */
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: var(--mb-2);
  }

  .fq-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-3);
  }

  .fq-title {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-1-5);
  }

  .fq-title span {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .fq-title h2 {
    width: 100%;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--soft-black);
    font-family: var(--sec-font);
    line-height: 1.25;
  }

  .fq-title p {
    width: 80%;
    font-size: 0.9rem;
  }

  .fq-cards {
    width: 100%;
    justify-content: flex-start;
  }

  .fqc {
    width: 100%;
    padding: var(--mb-1) 0;
  }

  .fqc:last-child {
    border-bottom: 1px var(--soft-black) solid;
  }

  .fqc-q {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .fqc-q h3 {
    flex: 0 0 80%;
    font-size: 1rem;
    line-height: 1.35;
  }

  .fqc-q span {
    padding: var(--mb-0-25);
    font-size: 1.2rem;
  }

  .fqc-a {
    width: 100%;
    row-gap: var(--mb-0-5);
    display: none;
  }
  .fqc-a p {
    width: 90%;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    color: var(--txt-grey);
    font-family: var(--sec-font);
    line-height: 1.35;
  }

  .fqc-a p strong {
    font-weight: 600;
    color: var(--th-brn);
  }

  .fq-extra {
    justify-content: flex-start;
    row-gap: var(--mb-1);
    padding: var(--mb-1-5);
    border: 1px var(--soft-black) solid;
  }

  .fq-extra h4 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .fq-extra p {
    width: 80%;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .fq-extra button {
    font-size: 0.9rem;
  }

  /* --------------- ========== CL-MAIN (COLLECTION PAGE) ========== ---------------*/
  .cl-main {
    width: 100%;
    overflow: hidden;
    background-color: var(--cannoli-cream);
  }

  /*========== >>>>> CL SECTION <<<<< ==========*/
  .cl {
    width: 100%;
    padding: var(--mb-1);
    /* background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2); */
    background-color: rgb(241, 240, 226, 0.8);
    align-items: flex-start;
    padding-top: var(--mb-5);
  }

  .cl-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-1);
    /* border: 1px teal solid; */
  }

  .clc {
    position: relative;
    width: 100%;
    height: 85dvh;
  }

  .clc:first-child .clc-img img {
    object-position: 50% 10%;
  }

  .clc-action {
    position: absolute;
    inset: 0;
  }

  .clc-action p {
    font-size: var(--fs-3);
  }

  .clc-action p span {
    color: var(--th-brn);
  }

  /* --------------- ========== CP-MAIN (COLLECTION PIECE PAGE) ========== ---------------*/
  .cp-main {
    position: relative;
    width: 100%;
    background-color: var(--cannoli-cream);
    z-index: 1;
  }

  /*========== >>>>> COLLECTION PAGE - HERO SECTION <<<<< ==========*/
  .cero {
    width: 100%;
    height: 100dvh;
  }

  .ce-container {
    width: 100%;
    height: 100%;
  }

  .ce-header {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .ceh-img {
    width: 90%;
    height: 50%;
    z-index: 4;
    padding: var(--mb-0-5);
    background-color: var(--soft-white);
  }

  .ceh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--th-bge);
  }

  .ceh-title {
    display: none;
  }

  .ceh-action {
    position: absolute;
    bottom: var(--mb-1);
    left: 50%;
    transform: translate(-50%, 0);
    width: 95%;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 5;
  }

  .ceha {
    flex: 0 0 auto;
  }

  .ceha span,
  .ceha i {
    font-size: 1rem;
    transform: translateY(0px);
  }

  .ceha p {
    font-size: 0.8rem;
    display: none;
  }

  /*========== >>>>> COLLECTION PAGE - SUBTEXT SECTION <<<<< ==========*/
  .cs {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    background-color: rgb(241, 240, 226, 0.8);
    z-index: 4;
    /* display: none; */
  }

  .cs-container {
    width: 100%;
    row-gap: var(--mb-1-5);
  }

  .cs-container span {
    width: 30px;
  }

  .cs-container h3 {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
  }

  /*========== >>>>> COLLECTION PAGE - CARDS SECTION <<<<< ==========*/
  .cc {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
  }

  .cd-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .cc-col {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-2);
  }

  .ccc {
    width: 100%;
    overflow: hidden;
    padding: var(--mb-0-5);
  }

  /* --------------- ========== RS-MAIN (RESIDENCY PAGE) ========== ---------------*/
  .rs-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> RESIDENCY PAGE [HERO] <<<<< ==========*/
  .rero {
    width: 100%;
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: var(--mb-6);
  }

  .re-container {
    width: 100%;
    height: 100%;
    row-gap: var(--mb-3);
    justify-content: flex-start;
  }

  .re-data {
    width: 100%;
    align-items: center;
  }

  .red-title {
    width: 100%;
    justify-content: center;
    padding-bottom: var(--mb-2);
    border-bottom: 2px var(--th-brn) solid;
  }

  .red-title h1 {
    width: 100%;
    font-size: 4rem;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.05em;
    opacity: 0.9;
  }

  .red-title h1 > span {
    color: var(--th-brn);
  }

  .red-txt {
    width: 100%;
    padding-top: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 1.8rem;
  }

  .redt {
    flex: 0 0 auto;
    width: 90%;
    justify-content: center;
    align-items: flex-start;
  }

  .redt:last-child {
    flex: 0 0 auto;
    width: 100%;
  }

  .redt p {
    width: 100%;
    font-size: 0.95rem;
    text-align: center;
  }

  .redt:last-child {
    justify-content: center;
    align-items: flex-start;
  }

  .redt:last-child > button span {
    font-size: 1.3rem;
  }

  .re-media {
    width: 100%;
    height: 450px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .re-media img {
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    background-color: var(--soft-white);
    object-fit: cover;
  }

  .re-media img:nth-child(2),
  .re-media img:nth-child(3) {
    display: none;
  }

  /*========== >>>>> RESIDENCY PAGE [PROFILE] <<<<< ==========*/
  .repo {
    width: 100%;
    padding: 0 var(--mb-1-5);
    padding-bottom: var(--mb-4);
  }

  .rp-container {
    width: 100%;
    row-gap: var(--mb-3);
    justify-content: flex-start;
  }

  .rp-title {
    width: 100%;
    justify-content: center;
  }

  .rp-title h2 {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
  }

  .rp-data {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .rpd-title {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 400px;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-0-5);
    border: 6px var(--white) solid;
  }

  .rpdt-data {
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--mb-2);
  }

  .rpdt-data h3 {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
  }

  .rpdt-data p {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }

  .rpd-list {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .rpdl {
    width: 100%;
    padding: var(--mb-1-5) 0;
    row-gap: var(--mb-0-5);
    justify-content: flex-start;
    align-items: center;
  }

  .rpdl > h4 {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
  }

  .rpdl p {
    width: 85%;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.35;
  }

  .rp-info {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .rpi {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    padding: var(--mb-1-5);
    row-gap: var(--mb-2);
    cursor: pointer;
  }

  .rpi-title {
    width: 100%;
    justify-content: center;
  }

  .rpi-title h3 {
    flex: 0 0 auto;
    width: auto;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: var(--mb-0-5) 1.2rem;
  }

  .rpi-body {
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .rpi-body p {
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }

  .rpi-body a {
    color: var(--th-brn);
    font-weight: 600;
  }

  .rpib-icon {
    padding: var(--mb-0-75);
    font-size: 1.3rem;
  }

  .rp-cta {
    position: relative;
    width: 100%;
    height: 600px;
    border: 6px var(--white) solid;
  }

  .rpc {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: var(--mb-2);
    row-gap: var(--mb-2);
  }

  .rpc h5 {
    font-size: var(--fs-2-5);
    line-height: 1.25;
  }

  .rpc p {
    width: 100%;
    font-size: 0.95rem;
  }

  .rpc p strong {
    font-weight: 600;
    color: var(--th-bge);
  }

  /* --------------- ========== CLA-MAIN (CLASSES PAGE) ========== ---------------*/
  .cla-main {
    width: 100%;
  }

  /*========== >>>>> CLASSES PAGE [HERO] <<<<< ==========*/
  .caro {
    width: 100%;
    height: 50dvh;
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-4) var(--mb-2);
    padding-top: var(--mb-6);
  }

  .ca-container {
    width: 100%;
    height: 100%;
    justify-content: center;
    /* border: 1px teal solid; */
  }

  .ca-title h1 {
    width: 100%;
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    font-family: var(--sec-font);
  }

  .ca-title h1 span {
    display: none;
  }

  /*========== >>>>> CLASSES PAGE [GALLERY] <<<<< ==========*/
  .cg {
    width: 100%;
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-2) var(--mb-1-5);
  }

  .cg-container {
    row-gap: var(--mb-4);
  }

  .cgc {
    width: 100%;
    padding: var(--mb-2) var(--mb-1-5);
    border: 2px var(--th-brn) solid;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .cgc-title {
    flex: 0 0 auto;
    width: 100%;
    row-gap: var(--mb-1-5);
  }

  .cgc-title h3 {
    width: 100%;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-1);
  }

  .cgc-title h3 span {
    color: var(--th-brn);
    font-size: var(--fs-3);
    line-height: 0;
  }

  .cgc-title p {
    width: 100%;
    font-size: 0.9rem;
  }

  .cgc-img {
    width: 100%;
    height: 350px;
  }

  .cgc-data {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .cgc-list {
    flex: 0 0 auto;
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1rem;
    padding: var(--mb-1-5);
  }

  .cgc-list h4 {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
  }

  .cgcl-ul {
    align-items: center;
    row-gap: 0.75rem;
  }

  .cgcl-li {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .cgcl-li a {
    font-size: 0.9rem;
  }

  .cgc-action {
    width: 100%;
    padding-top: var(--mb-2);
    border-top: 2px var(--th-brn) solid;
  }

  .cgc-action button {
    font-size: 0.95rem;
  }

  /* --------------- ========== CO-MAIN (CONTACT PAGE) ========== ---------------*/
  .co-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> CONTACT PAGE [HERO] <<<<< ==========*/
  .ccro {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .cc-container {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    padding: 0;
    padding-top: var(--mb-3);
    padding-bottom: var(--mb-4);
  }

  .cc-title {
    width: 100%;
    height: auto;
    padding: var(--mb-2);
    padding-bottom: var(--mb-4);
    /* border: 1px teal solid; */
  }

  .cct {
    width: 100%;
    height: auto;
    row-gap: var(--mb-2);
  }

  .cct > span {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .cct h1 {
    width: 100%;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    color: var(--soft-black);
    line-height: 1.2;
    letter-spacing: -0.05em;
  }

  .cct h1 span {
    color: var(--th-brn);
    display: none;
  }

  .cct > button {
    margin-top: var(--mb-0-5);
    column-gap: var(--mb-0-5);
  }

  .cct > button span {
    font-size: 1.3rem;
  }

  .cc-body {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border: none;
    row-gap: var(--mb-2);
  }

  .ccb {
    flex: 0 0 auto;
    width: 80%;
    height: auto;
    padding: var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1);
    border: none;
    border: 1px var(--th-brn) solid;
  }

  .ccb p,
  .ccb h4 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }

  .ccb h4 {
    line-height: 1;
  }

  .ccb-txt p {
    font-size: 0.85rem;
  }

  .ccbs-ul,
  .ccbc,
  .ccbl {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-0-5);
  }

  .ccbs-ul a,
  .ccbc a,
  .ccbl a {
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    color: var(--txt-grey);
    line-height: 1.1;
    border: 1px var(--th-brn) solid;
    border-radius: 30px;
    padding: var(--mb-0-5) var(--mb-1);
  }

  .ccbs-ul a:hover,
  .ccbc a:hover,
  .ccbl a:hover {
    background-color: var(--th-brn);
    color: var(--white);
  }

  /* --------------- ========== TM-MAIN (TERMS / POLICY PAGE) ========== ---------------*/
  .tm-main {
    width: 100%;
  }

  /*========== >>>>> TERMS / POLICY PAGE [HERO] <<<<< ==========*/
  .tero {
    width: 100%;
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: var(--mb-6);
  }

  .te-container {
    width: 100%;
    height: 100%;
    row-gap: var(--mb-3);
    justify-content: flex-start;
  }

  .te-data {
    width: 100%;
    align-items: center;
  }

  .ted-title {
    width: 100%;
    justify-content: center;
    padding-bottom: var(--mb-2);
    border-bottom: 2px var(--th-brn) solid;
  }

  .ted-title h1 {
    width: 100%;
    font-size: 4rem;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.05em;
    opacity: 0.9;
  }

  .ted-title h1 > span {
    color: var(--th-brn);
  }

  .ted-txt {
    width: 100%;
    padding-top: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 1.8rem;
  }

  .tedt {
    flex: 0 0 auto;
    width: 90%;
    justify-content: center;
    align-items: flex-start;
  }

  .tedt:last-child {
    flex: 0 0 auto;
    width: 100%;
  }

  .tedt p {
    width: 100%;
    font-size: 0.95rem;
    text-align: center;
  }

  .tedt:last-child {
    justify-content: center;
    align-items: flex-start;
  }

  .tedt:last-child > button span {
    font-size: 1.3rem;
  }

  .te-media {
    width: 100%;
    height: 450px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .te-media img {
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    background-color: var(--soft-white);
    object-fit: cover;
  }

  /*========== >>>>> TERMS / POLICY PAGE [CARDS] <<<<< ==========*/
  .tec {
    width: 100%;
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-2) var(--mb-1-5);
  }

  .tc-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
  }

  .tc {
    flex: 0 0 auto;
    width: 100%;
    padding: var(--mb-2) var(--mb-1-5);
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .tc-title {
    align-items: center;
    row-gap: var(--mb-1);
  }

  .tc-title h3 {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    justify-content: center;
    column-gap: var(--mb-0-5);
  }

  .tc-title h3 span {
    color: var(--th-brn);
    font-size: var(--fs-2);
    line-height: 0;
  }

  .tc-title p {
    width: 90%;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
  }

  .tc-ul {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-0-75);
  }

  .tc-li {
    width: 90%;
    display: inline-block;
    column-gap: var(--mb-0-25);
    line-height: 1.45;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .tc-li a {
    font-size: 0.9rem;
  }

  .tc-li strong {
    color: var(--th-brn);
    font-weight: 600;
  }
}

/* Media query for screens with a minimum width of 1440px and a maximum width of 1600px */
@media screen and (min-width: 1440px) and (max-width: 1600px) {
}

/* Media query for screens with a minimum width of 1650px */
@media screen and (min-width: 1650px) {
  /* --------------- ========== LP-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> HERO SECTION <<<<< ==========*/
  .hero {
    width: 100%;
    height: 100dvh;
    padding: var(--mb-0-5);
  }

  .h-media {
    background-color: var(--soft-white);
    background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2);
    overflow: hidden;
    z-index: 2;
  }

  .hm-img {
    position: absolute;
    border-radius: 25px;
    overflow: hidden;
    opacity: 0; /* Start hidden */
    transform: scale(0.8); /* Start slightly shrunk */
    /* border: 3px red solid; */
  }

  /* Image inside */
  .hm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* Specific manual positions */
  .hm-img:nth-child(1) {
    top: -2rem;
    left: 35rem;
    width: 180px;
    height: 200px;
  }

  .hm-img:nth-child(2) {
    top: 18rem;
    left: 5rem;
    width: 250px;
    height: 200px;
  }

  .hm-img:nth-child(3) {
    bottom: 2rem;
    left: 16rem;
    width: 200px;
    height: 220px;
  }

  .hm-img:nth-child(4) {
    bottom: 8rem;
    left: 50rem;
    width: 250px;
    height: 150px;
  }

  .hm-img:nth-child(5) {
    bottom: -1rem;
    right: 18rem;
    width: 180px;
    height: 200px;
  }

  .hm-img:nth-child(6) {
    bottom: 23rem;
    right: 4.5rem;
    width: 180px;
    height: 200px;
  }

  .hm-img:nth-child(7) {
    top: 7rem;
    right: 30rem;
    width: 250px;
    height: 150px;
  }

  /* Wavy floating animation */
  @keyframes floatWavy {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
      transform: translate(10px, -5px) rotate(1deg) scale(1.02);
    }
    50% {
      transform: translate(0px, 10px) rotate(-1deg) scale(1);
    }
    75% {
      transform: translate(5px, -10px) rotate(0.5deg) scale(1.01);
    }
  }

  .h-data {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: var(--mb-1-5);
    /* background-color: rgba(0, 0, 0, 0.6); */
    z-index: 3;
  }

  .h-data h1 {
    font-size: var(--fs-7-5);
    font-weight: 400;
    text-align: center;
    color: var(--black);
    line-height: 1;
    font-family: var(--sec-font);
  }

  .h-data h1 span {
    color: var(--th-l-brn);
  }

  .h-data p {
    width: 40%;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--txt-grey);
    line-height: 1.4;
    font-family: var(--sec-font);
  }
}

@media screen and (min-width: 700px) and (max-width: 900px) {
  /* --------------- ========== LP-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> HERO SECTION <<<<< ==========*/
  .hero {
    width: 100%;
    height: 100dvh;
    padding: var(--mb-0-5);
    background-color: var(--white);
  }

  .h-container {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  }

  .h-media {
    position: relative;
    z-index: 2;
  }

  .hm-img {
    position: absolute;
    border-radius: 25px;
  }

  /* Specific manual positions */
  .hm-img:nth-child(1) {
    top: -1.8rem;
    left: 17rem;
    width: 170px;
    height: 210px;
  }

  .hm-img:nth-child(2) {
    top: 16rem;
    left: -1.5rem;
    width: 210px;
    height: 160px;
  }

  .hm-img:nth-child(2) img {
    object-position: 50% 40%;
  }

  .hm-img:nth-child(3) {
    bottom: 12rem;
    left: 2.5rem;
    width: 170px;
    height: 210px;
  }

  .hm-img:nth-child(4) {
    bottom: -1.25rem;
    left: 20rem;
    width: 200px;
    height: 150px;
  }

  .hm-img:nth-child(5) {
    bottom: 15rem;
    right: 5rem;
    width: 260px;
    height: 150px;
  }

  .hm-img:nth-child(6) {
    bottom: 45rem;
    right: 2rem;
    width: 180px;
    height: 220px;
    display: none;
  }

  .hm-img:nth-child(7) {
    top: 10rem;
    right: 4rem;
    width: 170px;
    height: 200px;
  }

  .h-data {
    row-gap: var(--mb-1-5);
    /* background-color: rgba(0, 0, 0, 0.6); */
    z-index: 3;
  }

  .h-data h1 {
    font-size: var(--fs-5);
  }

  .h-data h1 span {
    color: var(--th-l-brn);
  }

  .h-data p {
    width: 50%;
    font-size: 1.1rem;
  }

  /* --------------- ========== AB-MAIN (ABOUT PAGE) ========== ---------------*/
  .ab-main {
    width: 100%;
    overflow: hidden;
    z-index: 1;
  }

  /*========== >>>>> AERO SECTION <<<<< ==========*/
  .aero {
    width: 100%;
    /* background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2); */
    background: transparent;
    padding: 0;
  }

  .ae-container {
    width: 100%;
    padding: var(--mb-2);
    row-gap: var(--mb-4);
    padding-top: var(--mb-7);
  }

  .ae-title {
    width: 100%;
    /* align-items: flex-start; */
    justify-content: flex-end;
    row-gap: var(--mb-0-75);
  }

  .ae-title h1 {
    width: 80%;
    font-size: 6rem;
  }

  .ae-title h1 span {
    color: var(--th-brn);
  }

  .ae-media {
    width: 100%;
    height: 50dvh;
  }

  .aem {
    width: 100%;
    height: 100%;
  }

  .ae-data {
    width: 100%;
    justify-content: flex-start;
  }

  .ae-data span {
    width: 45px;
  }

  .ae-data p {
    width: 80%;
    font-size: 1.6rem;
  }

  /*========== >>>>> ABOUT PAGE [SERVICES] <<<<< ==========*/
  .as {
    width: 100%;
    padding: var(--mb-4) var(--mb-2);
  }

  .as-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-6);
  }

  .as-cards {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: var(--mb-3);
  }

  .asc {
    flex: 0 0 48%;
    height: 470px;
    border: 1px var(--soft-black) solid;
    justify-content: space-between;
    align-items: center;
    row-gap: var(--mb-1);
    padding: var(--mb-2) var(--mb-1-5);
    cursor: pointer;
  }

  .asc-title {
    width: 100%;
    justify-content: center;
  }

  .asc-title h3 {
    flex: 0 0 auto;
    width: auto;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: var(--mb-0-75) var(--mb-1-5);
  }

  .asc:hover .asc-title h3 {
    background-color: var(--th-brn);
    color: var(--white);
  }

  .asc-body {
    align-items: center;
    row-gap: var(--mb-2);
  }

  .asc-body p {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }

  .ascb-icon {
    padding: var(--mb-0-75);
    font-size: 1.5rem;
  }

  .asc-img {
    flex: 0 0 48%;
    height: 470px;
  }

  .as-quote {
    justify-content: flex-start;
    row-gap: var(--mb-2);
  }

  .as-quote span {
    width: 50px;
    border-top: 3px var(--th-brn) solid;
    border-radius: 30px;
  }

  .as-quote p {
    width: 90%;
    font-size: 2.2rem;
    line-height: 1.4;
  }

  /*========== >>>>> ABOUT PAGE [FAQ] <<<<< ==========*/
  .fq {
    width: 100%;
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-4) var(--mb-1-5);
    /* border: 1px red solid; */
  }

  .fq-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-4);
  }

  .fq-title {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-1-5);
  }

  .fq-title span {
    font-size: 0.85rem;
    padding: var(--mb-0-5) var(--mb-1);
  }

  .fq-title h2 {
    width: 80%;
    font-size: 3rem;
    line-height: 1.25;
  }

  .fq-title p {
    width: 50%;
    font-size: 1.1rem;
  }

  .fq-cards {
    width: 80%;
    justify-content: flex-start;
  }

  .fqc {
    width: 100%;
    padding: var(--mb-1-5) 0;
    cursor: pointer;
  }

  .fqc-q h3 {
    flex: 0 0 80%;
    font-size: 1.2rem;
  }

  .fqc-q span {
    padding: 0.4rem;
    font-size: 1.5rem;
  }

  .fqc-a {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-0-5);
    padding-top: var(--mb-0-5);
    animation: fadeY 0.3s ease-in-out;
    display: none;
  }

  .fqc-a p {
    width: 95%;
    font-size: 1rem;
    line-height: 1.4;
  }

  .fq-extra {
    justify-content: flex-start;
    row-gap: 1.25rem;
  }

  .fq-extra:hover {
    background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2);
  }

  .fq-extra h4 {
    font-size: 1.5rem;
    line-height: 1;
  }

  .fq-extra p {
    width: 70%;
    font-size: 1rem;
    line-height: 1.4;
  }

  .fq-extra button {
    font-size: var(--fs-1);
  }

  /* --------------- ========== CL-MAIN (COLLECTION PAGE) ========== ---------------*/
  .cl-main {
    width: 100%;
    overflow: hidden;
    background-color: var(--cannoli-cream);
    background-image: url(/assets/img/bckg/txt-1.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  /*========== >>>>> CL SECTION <<<<< ==========*/
  .cl {
    width: 100%;
    padding: var(--mb-1);
    /* background: linear-gradient(135deg, #f9f9f9, #ffffff, #f2f2f2); */
    background-color: rgb(241, 240, 226, 0.8);

    align-items: flex-start;
  }

  .cl-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-1);
    /* border: 1px teal solid; */
  }

  .clc {
    position: relative;
    width: 100%;
    height: 95.5dvh;
    overflow: hidden;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
      rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  }

  .clc-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .clc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .clc:first-child .clc-img img {
    object-position: 50% 10%;
  }

  .clc-action {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .clc-action p {
    font-size: var(--fs-5);
    font-weight: 400;
    text-align: center;
    color: var(--white);
    line-height: 1.1;
    font-family: var(--sec-font);
  }

  .clc-action p span {
    color: var(--th-brn);
  }

  /* --------------- ========== CP-MAIN (COLLECTION PIECE PAGE) ========== ---------------*/
  .cp-main {
    position: relative;
    width: 100%;
    z-index: 1;
  }

  /*========== >>>>> COLLECTION PAGE - HERO SECTION <<<<< ==========*/
  .cero {
    width: 100%;
    height: 100dvh;
  }

  .ce-container {
    width: 100%;
  }

  .ce-header {
    position: relative;
    width: 100%;
  }

  .ceh-img {
    width: 80%;
    height: 80%;
  }

  /*========== >>>>> COLLECTION PAGE - SUBTEXT SECTION <<<<< ==========*/
  .cs {
    width: 100%;
    padding: var(--mb-6) var(--mb-4);
  }

  .cs-container {
    width: 100%;
    row-gap: var(--mb-1-5);
  }

  .cs-container span {
    width: 40px;
  }

  .cs-container h3 {
    font-size: 2.8rem;
    font-weight: 400;
  }

  /*========== >>>>> COLLECTION PAGE - CARDS SECTION <<<<< ==========*/
  .cc {
    width: 100%;
    /* background-color: rgba(250, 250, 250, 0.85); */
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-4) var(--mb-2);
  }

  .cd-container {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cc-col {
    flex: 0 0 31.5%;
    justify-content: flex-start;
    row-gap: var(--mb-2);
  }

  .ccc {
    width: 100%;
    overflow: hidden;
    padding: var(--mb-0-5);
    background-color: var(--soft-white);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    cursor: pointer;
  }

  .ccc img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 1s ease-in-out;
  }

  .ccc:hover img {
    scale: 1.1;
  }

  /* --------------- ========== CLA-MAIN (CLASSES PAGE) ========== ---------------*/
  .cla-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> CLASSES PAGE [HERO] <<<<< ==========*/
  .caro {
    width: 100%;
    height: 30dvh;
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-2);
    padding-top: var(--mb-6);
  }
  .ca-title h1 {
    width: 100%;
    font-size: 6rem;
  }

  .ca-title h1 span {
    color: var(--th-brn);
  }

  /* --------------- ========== RS-MAIN (RESIDENCY PAGE) ========== ---------------*/
  .rs-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> RESIDENCY PAGE [HERO] <<<<< ==========*/
  .rero {
    width: 100%;
    padding: var(--mb-4) var(--mb-2);
    padding-top: var(--mb-7);
  }

  .re-container {
    width: 100%;
    height: 100%;
    row-gap: var(--mb-3);
    justify-content: flex-start;
  }

  .re-data {
    align-items: center;
  }

  .red-title {
    width: 100%;
    justify-content: center;
    padding-bottom: var(--mb-2);
  }

  .red-title h1 {
    width: 100%;
    font-size: 6rem;
    text-align: center;
    line-height: 1.1;
  }

  .red-title h1 > span {
    color: var(--th-brn);
  }

  .red-txt {
    width: 100%;
    padding-top: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .redt {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }

  .redt:last-child {
    flex: 0 0 auto;
    width: 100%;
  }

  .redt p {
    width: 80%;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }

  .redt:last-child {
    justify-content: center;
    align-items: flex-start;
  }

  .redt:last-child > button {
    column-gap: var(--mb-0-5);
  }

  .redt:last-child > button span {
    font-size: var(--fs-1-5);
  }

  .re-media {
    width: 100%;
    height: 450px;
  }

  .re-media img {
    flex: 0 0 48.5%;
    border: 4px var(--white) solid;
  }

  .re-media img:last-child {
    display: none;
  }

  /*========== >>>>> RESIDENCY PAGE [PROFILE] <<<<< ==========*/
  .repo {
    width: 100%;
    background-color: rgb(241, 240, 226, 0.8);
    padding: 0 var(--mb-3);
    padding-bottom: var(--mb-4);
  }

  .rp-container {
    width: 100%;
  }

  .rp-title {
    width: 100%;
    justify-content: center;
    padding: var(--mb-2) 0;
  }

  .rp-title h2 {
    width: 90%;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
  }

  .rp-title h2 strong {
    font-weight: 500;
    color: var(--th-brn);
  }

  .rp-data {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .rpd-title {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 400px;
    justify-content: flex-start;
    align-items: center;
  }

  .rpdt-data {
    position: absolute;
    inset: 0;
    justify-content: space-between;
    align-items: center;
    row-gap: var(--mb-0-75);
    padding: var(--mb-2);
    padding-bottom: var(--mb-2);
  }

  .rpdt-data h3 {
    width: 100%;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
  }

  .rpdt-data p {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
  }

  .rpd-list {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .rpdl {
    width: 100%;
    row-gap: var(--mb-0-5);
    justify-content: flex-start;
    align-items: center;
  }

  .rpdl > h4 {
    font-size: 1.65rem;
    font-weight: 500;
    text-align: center;
  }

  .rpdl p {
    width: 70%;
    font-size: 0.95rem;
    text-align: center;
  }

  .rp-info {
    width: 90%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
  }

  .rpi {
    flex: 0 0 auto;
    width: 80%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    padding: var(--mb-1-5);
    row-gap: var(--mb-3);
    cursor: pointer;
  }

  .rpi-title {
    width: 100%;
    justify-content: center;
  }

  .rpi-title h3 {
    flex: 0 0 auto;
    width: auto;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    padding: var(--mb-0-75) var(--mb-1-5);
  }

  .rpi:hover .rpi-title h3 {
    background-color: var(--th-brn);
    color: var(--white);
  }

  .rpi-body {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .rpi-body p {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }

  .rp-cta {
    position: relative;
    width: 100%;
    height: 600px;
    border: 6px var(--white) solid;
  }

  .rpc-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .rpc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--th-bge);
  }

  .rpc {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: var(--mb-2);
    row-gap: var(--mb-2);
  }

  .rpc h5 {
    width: 80%;
    font-size: var(--fs-3-5);
  }

  .rpc p {
    width: 90%;
    font-size: 1.2rem;
  }

  /* --------------- ========== CO-MAIN (CONTACT PAGE) ========== ---------------*/
  .co-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> CONTACT PAGE [HERO] <<<<< ==========*/
  .ccro {
    width: 100%;
    height: 100dvh;
    padding: 0;
  }

  .cc-container {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .cc-title {
    width: 100%;
    height: 77%;
    /* border: 1px teal solid; */
  }

  .cct {
    row-gap: var(--mb-2-5);
  }

  .cct > span {
    font-size: 0.9rem;
  }

  .cct h1 {
    width: 90%;
    font-size: 6rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
  }

  .cct > button {
    margin-top: var(--mb-0-5);
    column-gap: var(--mb-0-5);
    font-size: 1.1rem;
  }

  .cc-body {
    width: 100%;
    height: 23%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .ccb {
    flex: 0 0 25%;
    height: 100%;
    padding: var(--mb-1-5) var(--mb-1);
    justify-content: space-between;
    align-items: flex-start;
    row-gap: var(--mb-1);
  }

  .ccb p,
  .ccb h4 {
    font-size: 1.1rem;
  }

  .ccb-txt p {
    font-size: 0.9rem;
  }

  .ccbs-ul,
  .ccbc,
  .ccbl {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-0-75);
  }

  .ccbs-ul a,
  .ccbc a,
  .ccbl a {
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 500;
    padding: var(--mb-0-5) var(--mb-1);
  }

  /* --------------- ========== TM-MAIN (TERMS / POLICY PAGE) ========== ---------------*/
  .tm-main {
    width: 100%;
    overflow: hidden;
    background-color: var(--cannoli-cream);
    background-image: url(/assets/img/bckg/txt-1.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  /*========== >>>>> TERMS / POLICY PAGE [HERO] <<<<< ==========*/
  .tero {
    width: 100%;
    padding: var(--mb-4) var(--mb-2);
    padding-top: var(--mb-7);
  }

  .te-container {
    width: 100%;
    height: 100%;
    row-gap: var(--mb-3);
    justify-content: flex-start;
  }

  .te-data {
    align-items: center;
  }

  .ted-title {
    width: 100%;
    justify-content: center;
    padding-bottom: var(--mb-2);
  }

  .ted-title h1 {
    width: 100%;
    font-size: 6rem;
    text-align: center;
    line-height: 1.1;
  }

  .ted-title h1 > span {
    color: var(--th-brn);
  }

  .ted-txt {
    width: 100%;
    padding-top: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .tedt {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }

  .tedt:last-child {
    flex: 0 0 auto;
    width: 100%;
  }

  .tedt p {
    width: 80%;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }

  .tedt:last-child {
    justify-content: center;
    align-items: flex-start;
  }

  .tedt:last-child > button {
    column-gap: var(--mb-0-5);
  }

  .tedt:last-child > button span {
    font-size: var(--fs-1-5);
  }

  .te-media {
    width: 100%;
    height: 450px;
  }

  /*========== >>>>> TERMS / POLICY PAGE [CARDS] <<<<< ==========*/
  .tec {
    width: 100%;
    background-color: rgb(241, 240, 226, 0.8);
    padding: var(--mb-2) var(--mb-4);
  }

  .tc-container {
    width: 100%;
    row-gap: var(--mb-4);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .tc {
    flex: 0 0 auto;
    width: 80%;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .tc-title {
    width: 100%;
    align-items: center;
    row-gap: var(--mb-1);
  }

  .tc-title h3 {
    width: 100%;
    font-size: 2rem;
    text-align: center;
    justify-content: center;
  }

  .tc-title p {
    width: 90%;
    font-size: 1.1rem;
    text-align: center;
  }

  .tc-ul {
    align-items: center;
    row-gap: var(--mb-1);
  }

  .tc-li {
    width: 80%;
    display: inline-block;
    column-gap: var(--mb-0-25);
    line-height: 1.45;
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .tc-li a {
    font-size: 0.95rem;
    color: var(--txt-grey);
  }
}
