/* -------------------------------- Tokens -------------------------------- */
/* -------------------------------- Mixins --------------------------------- */
/* --------------------------------- Reset ---------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: #111111;
  color: #f2efe8;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 2px solid #d7b542;
  outline-offset: 3px;
}

/* ------------------------------- Utilities -------------------------------- */
.btn {
  display: inline-block;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid #dba423;
  border-radius: 3px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn--solid {
  background: #dba423;
  color: #14140f;
  border-color: #dba423;
}
.btn--solid:hover {
  background: #ddb948;
  transform: translateY(-1px);
}
.btn--ghost-sm {
  background: transparent;
  color: #e7cf8b;
  border-color: #dba423;
  font-size: 11px;
  backdrop-filter: blur(10px);
}
.btn--ghost-sm:hover {
  background: rgba(201, 162, 39, 0.12);
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.rule {
  width: 46px;
  height: 2px;
  background: #dba423;
  margin-top: 14px;
  margin-bottom: 22px;
}

/* --------------------------------- Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(2px);
  background: linear-gradient(180deg, hsla(0, 0%, 0%, 0.5), transparent);
}
@media (max-width: 1080px) {
  .site-header {
    backdrop-filter: unset;
    background: unset;
  }
}
.site-header__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .site-header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
  padding-left: 0;
}
.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
.site-header__logo-img {
  width: 260px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.site-header__logo-line1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f2efe8;
}
.site-header__logo-line2 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: #dba423;
}

.nav-toggle-input {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .nav-overlay {
    display: block;
  }
}

.nav-toggle-input:checked ~ .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 30px;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  height: 1px;
  background: #f2efe8;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 1080px) {
  .nav-toggle {
    display: flex;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  position: relative;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #e3dfd3;
  padding-bottom: 6px;
  transition: color 0.2s ease;
  text-shadow: 0 0 4px black;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #f2efe8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__link:hover, .nav__link--active {
  color: #ffffff;
}
.nav__link:hover::after, .nav__link--active::after {
  transform: scaleX(1);
}
.nav .btn {
  padding: 8px 16px;
  margin-bottom: 6px;
  font-size: 15px;
}
@media (max-width: 1080px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 30%;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 40px;
    background: #131313;
    border-left: 1px solid rgba(201, 162, 39, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav__link {
    font-size: 20px;
  }
}

.nav-toggle-input:checked ~ .nav {
  transform: translateX(0);
}

.nav-toggle-input:checked ~ .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle-input:checked ~ .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked ~ .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------------------------------- Hero ----------------------------------- */
.parallax-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.parallax-layer__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url(../assets/images/bg_hero.jpg);
  filter: brightness(0.5);
}

.hero {
  position: relative;
  height: clamp(500px, 88vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .hero__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 80px);
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero__subtitle {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.hero__lede {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.hero__btn-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 560px) {
  .hero {
    height: 560px;
  }
}

@media (max-width: 560px) {
  .parallax-layer {
    position: absolute;
    height: 640px;
  }
}
/* ------------------------------- About Section ------------------------------- */
.about {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 800px) {
  .about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.about {
  background: #111111;
}
.about__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .about__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
}
.about__col {
  flex: 1 1 380px;
  min-width: 280px;
}
.about__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
}
.about__subheading {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #f2efe8;
  margin-bottom: 12px;
}
.about__text {
  font-size: 13.5px;
  line-height: 1.9;
  color: #b9b6ae;
  max-width: 46ch;
}
.about__image-frame {
  width: 100%;
  min-height: 320px;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  overflow: hidden;
}
.about__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(150deg, #3b2f55 0%, #7a4f6b 35%, #d98a4a 65%, #1c1430 100%);
}
.about-focus {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .about-focus {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about-focus {
  margin-top: 48px;
}
.about-focus__grid {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.about-focus__col {
  flex: 1 1 240px;
  background: #cda43d;
  padding: 30px 24px;
  text-align: center;
}
.about-focus__title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #14140a;
  text-transform: uppercase;
}
.about-focus__text {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.8;
  color: #262008;
}
@media (max-width: 560px) {
  .about-focus {
    flex-basis: 100%;
  }
}

/* --------------------------------- CTA Band ---------------------------------- */
.cta-band {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-band__bg-frame {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
}
.cta-band__bg {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../assets/images/bg_contact_us.jpg);
  filter: blur(4px) brightness(1.2);
}
.cta-band__scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(6, 6, 8, 0.28);
}
.cta-band__card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin-left: 8%;
  margin-right: 32px;
  padding: 48px 40px;
  background: rgba(10, 10, 12, 0.86);
  text-align: center;
}
@media (max-width: 800px) {
  .cta-band__card {
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media (max-width: 560px) {
  .cta-band__card {
    padding: 36px 26px;
  }
}
.cta-band__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  color: #ffffff;
}
.cta-band__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.cta-band__lede {
  margin-top: 14px;
  font-size: 13px;
  color: #e3e0d8;
}
.cta-band .btn {
  margin-top: 26px;
}

/* ------------------------------ Differentiators ------------------------------ */
.differentiators {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 800px) {
  .differentiators {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.differentiators {
  background: #111111;
}
.differentiators__heading {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
  line-height: 1.35;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.differentiators__subheading {
  margin-top: 16px;
  text-align: center;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: italic;
  color: #e3dfd3;
}
.differentiators__lede {
  margin-top: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  text-align: center;
  font-size: 13.5px;
  color: #cfccc4;
  line-height: 1.8;
}
.differentiators__grid {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .differentiators__grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.differentiators__grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.diff-card {
  flex: 1 1 240px;
  background: #cda43d;
  padding: 30px 24px;
  text-align: center;
}
.diff-card__title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #14140a;
  text-transform: uppercase;
}
.diff-card__text {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.8;
  color: #262008;
}
@media (max-width: 560px) {
  .diff-card {
    flex-basis: 100%;
  }
}

/* ---------------------------------- PGG ----------------------------------- */
.pgg {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 800px) {
  .pgg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.pgg {
  background: #232224;
}
.pgg__heading {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
}
.pgg__subheading {
  font-size: 16px;
  font-style: italic;
  color: #cfccc4;
}
.pgg__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .pgg__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pgg__inner {
  display: flex;
  -moz-column-gap: 100px;
       column-gap: 100px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.pgg__inner-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 300px;
}
.pgg__text {
  font-size: 13.5px;
  line-height: 1.9;
  color: #b9b6ae;
  max-width: 100ch;
}
.pgg-direction {
  background-color: #111111;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1 1 400px;
  row-gap: 20px;
}
.pgg-direction__content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pgg-direction__content:nth-child(odd) {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(14px, 3.5vw, 18px);
}
.pgg-direction__text {
  font-size: 13.5px;
  line-height: 1.9;
  color: #b9b6ae;
}
.pgg-direction button {
  width: -moz-fit-content;
  width: fit-content;
}

/* --------------------------------- Enquiry ---------------------------------- */
.enquiry-band {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 800px) {
  .enquiry-band {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.enquiry-band {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.enquiry-band__bg-frame {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
}
.enquiry-band__bg {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../assets/images/bg_contact_us.jpg);
  filter: blur(5px) brightness(1.2);
}
.enquiry-band__scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(6, 6, 8, 0.28);
}
.enquiry-band__card {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .enquiry-band__card {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.enquiry-band__card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px 40px;
  margin-top: 50px;
  background: rgba(10, 10, 12, 0.7);
  display: flex;
  gap: 60px 100px;
}
@media (max-width: 800px) {
  .enquiry-band__card {
    margin-left: 24px;
    margin-right: 24px;
    flex-wrap: wrap;
    width: -webkit-fill-available;
  }
}
@media (max-width: 560px) {
  .enquiry-band__card {
    padding: 36px 26px;
  }
}
.enquiry-band__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 500px;
}
.enquiry-band__title {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 30px);
  color: #ffffff;
  z-index: 2;
}
.enquiry-band__subtitle {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: #ffffff;
  z-index: 2;
}
.enquiry-band__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.enquiry-band__lede {
  font-size: 13px;
  color: #e3e0d8;
}
.enquiry-band ul {
  list-style: disc;
}
.enquiry-band ul li {
  margin-left: 20px;
}
.enquiry-band .rule {
  z-index: 2;
}
.enquiry__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
}
.enquiry__lede {
  font-size: 13.5px;
  color: #b9b6ae;
}
.enquiry__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item__holder {
  display: flex;
  flex-direction: column;
}

.network {
  z-index: 2;
}
.network__title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  color: #f2efe8;
  text-align: center;
  text-shadow: 0 2px 10px hsla(0, 0%, 0%, 0.3);
}
.network__grid {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .network__grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.network__grid {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.network-card {
  background: #1a191b;
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 360px;
  min-height: 150px;
  padding: 26px 28px;
  text-align: left;
}
.network-card__title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d7b542;
}
.network-card__text {
  margin-top: 10px;
  font-size: 13px;
  color: #cfccc4;
  line-height: 1.7;
}

/* ---------------------------------- Values ----------------------------------- */
.values {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 800px) {
  .values {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.values {
  background: #29282a;
}
.values__heading {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
}
.values__row {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .values__row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.values__row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.value-item {
  flex: 1 1 380px;
  max-width: 400px;
  background: #12131f;
  padding: 22px 26px;
  text-align: left;
}
.value-item__title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d7b542;
}
.value-item__text {
  margin-top: 8px;
  font-size: 13px;
  color: #cfccc4;
  line-height: 1.6;
}

/* --------------------------------- Services ---------------------------------- */
.services {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 800px) {
  .services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.services {
  background: #232224;
}
.services__heading {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
}
.services__lede {
  margin-top: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  text-align: center;
  font-size: 13.5px;
  color: #cfccc4;
  line-height: 1.8;
}
.services__grid {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .services__grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.services__grid {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 380px;
  background: #1a191b;
  padding: 26px 28px;
  text-align: left;
}
.service-card__title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d7b542;
}
.service-card__text {
  margin-top: 10px;
  font-size: 13px;
  color: #cfccc4;
  line-height: 1.7;
}

/* --------------------------------- Contact ---------------------------------- */
.contact {
  background: #111111;
}
.contact__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.contact__image-frame {
  flex: 1 1 380px;
  min-height: 380px;
  overflow: hidden;
}
.contact__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(150deg, #3b2f55 0%, #7a4f6b 35%, #d98a4a 65%, #1c1430 100%);
}
.contact__col {
  flex: 1 1 380px;
  padding: 64px 48px;
}
@media (max-width: 800px) {
  .contact__col {
    padding: 48px 32px;
  }
}
.contact__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
}
.contact__lede {
  margin-top: 12px;
  font-size: 13.5px;
  color: #b9b6ae;
}
.contact__list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-item__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 22px;
  margin-top: 2px;
}
.contact-item__value {
  font-size: 13.5px;
  color: #e3dfd3;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.contact-item-box {
  padding: 16px 20px;
  background: #1a191b;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-item-box div {
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-item a.contact-item__value:hover {
  color: #d7b542;
}

/* --------------------------------- Footer ---------------------------------- */
.site-footer {
  padding-top: 48px;
  padding-bottom: 40px;
  background: #0c0c0c;
}
.site-footer__row {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .site-footer__row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-footer__row {
  display: flex;
}
@media (max-width: 560px) {
  .site-footer__row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 300px;
}
.site-footer__col a {
  font-weight: 400px;
  color: #b9b6ae;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
}
.site-footer__copyright {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .site-footer__copyright {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-footer__copyright {
  margin-top: 30px;
  padding-top: 20px;
  font-size: 12px;
  color: #837f76;
  text-align: center;
  border-top: 1px solid grey;
}
.site-footer__text {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 560px) {
  .site-footer__text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-footer__text {
  padding-top: 20px;
  font-size: 12px;
  color: #837f76;
  text-align: center;
}/*# sourceMappingURL=styles.css.map */