:root {
  --ink: #11100d;
  --ivory: #f6f1e8;
  --paper: #ffffff;
  --line: rgba(246, 241, 232, 0.42);
  --gold: #c6a45a;
  --soft-gold: #e4d2a2;
  --gold-deep: #8f6a24;
  --gold-bright: #f8e7a8;
  --gold-gradient: linear-gradient(
    115deg,
    #8f6a24 0%,
    #c49a3d 22%,
    #f8e7a8 42%,
    #b88b33 62%,
    #efd48a 82%,
    #8f6a24 100%
  );
  --shadow: rgba(0, 0, 0, 0.58);
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  overflow-x: hidden;
}

body.is-loading {
  cursor: progress;
}

body.is-preloading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.certificate-open {
  overflow: hidden;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.theme-toggle {
  position: fixed;
  top: 50%;
  left: 1rem;
  z-index: 3100;
  display: inline-grid;
  grid-template-columns: 1.45rem auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.7rem;
  padding: 0.35rem 0.75rem 0.35rem 0.45rem;
  border: 1px solid rgba(246, 241, 232, 0.22);
  border-radius: 999px;
  background: rgba(9, 8, 6, 0.68);
  color: var(--ivory);
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
  display: none;
}

body.is-preloading .theme-toggle {
  opacity: 0;
  visibility: hidden;
}

.theme-toggle__icon {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: inset 0 0 0 0.35rem rgba(17, 16, 13, 0.58);
}

.theme-toggle__text {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.theme-light {
  background: #ffffff;
  color: #17140f;
}

body.theme-light .theme-toggle {
  border-color: rgba(23, 20, 15, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: #17140f;
}

.preloader-curtain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(198, 164, 90, 0.12),
      transparent 21rem
    ),
    #090806;
  pointer-events: none;
}

body:not(.is-preloading) .preloader-curtain {
  display: none;
}

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

.gold-text {
  color: var(--soft-gold);
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(198, 164, 90, 0.12),
      transparent 34rem
    ),
    linear-gradient(180deg, #171510 0%, #0f0e0b 100%);
}

.hero {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: 100svh;
  padding: clamp(1.1rem, 2.4vw, 2.25rem);
  isolation: isolate;
  overflow: hidden;
}

body.is-preloading .hero {
  z-index: 1001;
}

.hero__image,
.hero__shade,
.hero__grain {
  position: absolute;
  inset: 0;
}

body.is-preloading .hero__image,
body.is-preloading .hero__shade,
body.is-preloading .hero__grain {
  visibility: hidden;
}

body.is-revealing .hero__image,
body.is-revealing .hero__shade,
body.is-revealing .hero__grain {
  visibility: visible;
}

.hero__image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: saturate(0.9) contrast(1.05);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgb(10 9 7 / 10%) 0%,
      rgb(10 9 7 / 0%) 48%,
      rgb(10 9 7 / 10%) 100%
    ),
    linear-gradient(
      180deg,
      rgb(10 9 7 / 70%) 0%,
      rgba(10, 9, 7, 0.16) 42%,
      rgb(10 9 7 / 70%) 100%
    );
}

.hero__grain {
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__nav {
  position: fixed;
  top: clamp(1.1rem, 2.4vw, 2.25rem);
  right: clamp(1.1rem, 2.4vw, 2.25rem);
  left: clamp(1.1rem, 2.4vw, 2.25rem);
  z-index: 2000;
  display: grid;
  grid-template-columns:
    clamp(8.5rem, 12vw, 11rem)
    minmax(0, 1fr)
    clamp(22rem, 27vw, 27rem);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  height: 5.5rem;
  padding: 0 clamp(0rem, 1.2vw, 1rem) 1.2rem;
  border-bottom: 1px solid var(--line);
  transition:
    top 0.35s ease,
    right 0.35s ease,
    left 0.35s ease,
    height 0.35s ease,
    padding 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

body.is-preloading .hero__nav,
body.is-measuring .hero__nav {
  border-bottom-color: transparent;
}

body.has-scrolled .hero__nav {
  top: 0;
  right: 0;
  left: 0;
  height: 4.9rem;
  padding: 0 clamp(1.1rem, 2.4vw, 2.25rem);
  border-bottom-color: rgba(246, 241, 232, 0.12);
  background: rgba(8, 8, 7, 0.74);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0);
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  width: clamp(8.5rem, 12vw, 11rem);
  justify-self: start;
}

body.is-preloading .hero__brand {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  width: clamp(13rem, 24vw, 21rem);
  transform: translate(-50%, -50%);
}

body.is-measuring .hero__brand {
  position: static;
  width: clamp(8.5rem, 12vw, 11rem);
  visibility: hidden;
  transform: none;
}

.hero__brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

body.is-preloading .hero__links,
body.is-preloading .hero__actions,
body.is-preloading .hero__content,
body.is-preloading .hero__meta {
  visibility: hidden;
}

body.is-revealing .hero__content {
  visibility: visible;
}

body.is-measuring .hero__links,
body.is-measuring .hero__actions,
body.is-measuring .hero__content,
body.is-measuring .hero__meta {
  visibility: hidden;
}

.hero__links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.8vw, 2.75rem);
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__links a {
  position: relative;
  padding: 0.35rem 0;
}

.hero__links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.hero__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1.05rem;
  border: 1px solid rgba(228, 210, 162, 0.34);
  border-radius: 999px;
  background: rgba(17, 16, 13, 0.22);
  color: rgba(246, 241, 232, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.hero__phone:hover {
  border-color: rgba(228, 210, 162, 0.72);
  background: rgba(17, 16, 13, 0.42);
  color: #ffffff;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(246, 241, 232, 0.72);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.92);
  color: #16130f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.hero__cta:hover {
  border-color: var(--soft-gold);
  background: rgba(17, 16, 13, 0.58);
  color: var(--ivory);
}

.hero__menu {
  display: grid;
  width: 2.65rem;
  height: 2rem;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  /* background: rgba(17, 16, 13, 0.28); */
  color: var(--ivory);
  cursor: pointer;
  justify-items: end;
}

.hero__menu span {
  width: 1.1rem;
  height: 1px;
  background: currentColor;
}

.hero__menu span + span {
  margin-top: -0.72rem;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  justify-content: flex-end;
  background: rgba(5, 5, 4, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    background 0.35s ease;
}

body.menu-open .site-menu {
  background: rgba(5, 5, 4, 0.56);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(35rem, 100%);
  min-height: 100vh;
  overflow-y: auto;
  align-items: center;
  padding: clamp(5.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 4.5rem);
  background:
    linear-gradient(180deg, rgba(18, 16, 12, 0.96), rgba(8, 7, 6, 0.98)),
    #0d0c09;
  box-shadow: -2rem 0 5rem rgba(0, 0, 0, 0.38);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .site-menu__panel {
  transform: translateX(0);
}

.site-menu__close {
  position: absolute;
  top: clamp(1.2rem, 2.4vw, 2rem);
  right: clamp(1.2rem, 2.4vw, 2rem);
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(246, 241, 232, 0.22);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.06);
  color: var(--ivory);
  cursor: pointer;
}

.site-menu__close span {
  grid-area: 1 / 1;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
}

.site-menu__close span:first-child {
  transform: rotate(45deg);
}

.site-menu__close span:last-child {
  transform: rotate(-45deg);
}

.site-menu__content {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  width: min(100%, 25rem);
  margin: 0 auto;
  text-align: center;
}

.site-menu__nav {
  display: none;
}

.site-menu__block {
  display: grid;
  gap: 0.85rem;
}

.site-menu__eyebrow {
  margin: 0;
  color: var(--soft-gold);
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-menu address {
  margin: 0;
  color: rgba(246, 241, 232, 0.78);
  font-style: normal;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.75;
}

.site-menu__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.35rem;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-menu__socials a,
.site-menu__nav a {
  transition: color 0.25s ease;
}

.site-menu__socials a:hover,
.site-menu__nav a:hover {
  color: var(--soft-gold);
}

.site-menu__cta {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.45rem;
  border: 1px solid rgba(246, 241, 232, 0.3);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.92);
  color: #16130f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.52fr);
  align-self: end;
  align-items: end;
  gap: clamp(2rem, 2vw, 5rem);
  padding: 8vh 0 6.5rem;
}

.hero__eyebrow,
.hero__copy,
.hero__title {
  margin: 0;
}

.hero__eyebrow {
  grid-column: 1 / -1;
  color: rgba(246, 241, 232, 0.94);
  text-shadow: 0 0.85rem 2rem rgba(0, 0, 0, 0.46);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 62rem;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 6.6vw, 12.7rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 1.6rem 4.5rem rgba(0, 0, 0, 0.42);
}

.title-line {
  display: block;
  overflow: hidden;
}

.hero__copy {
  max-width: 24.5rem;
  padding-bottom: clamp(0.2rem, 1vw, 1rem);
  color: rgba(246, 241, 232, 0.84);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.72;
}

.hero__kicker {
  margin: 0 0 0.5rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 2.75rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__copy p:last-child {
  margin: 0;
}

.hero__meta {
  position: absolute;
  right: clamp(1.1rem, 2.4vw, 2.25rem);
  bottom: clamp(1.1rem, 2.4vw, 2.25rem);
  left: clamp(1.1rem, 2.4vw, 2.25rem);
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  align-items: end;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(246, 241, 232, 0.22);
}

.hero__fact {
  display: grid;
  gap: 0.3rem;
  max-width: 20rem;
}

.hero__fact--right {
  justify-self: end;
  text-align: right;
}

.hero__fact span,
.hero__scroll span {
  color: var(--soft-gold);
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__fact strong {
  color: rgba(246, 241, 232, 0.8);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero__scroll {
  display: inline-grid;
  justify-items: center;
  gap: 0.75rem;
  min-width: 4.2rem;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(
    180deg,
    var(--gold-bright),
    var(--gold-deep),
    transparent
  );
  transform-origin: top;
}

.about-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ffffff;
  color: #17140f;
}

.about-section::before {
  position: absolute;
  top: 0;
  right: clamp(1.1rem, 2.4vw, 2.25rem);
  left: clamp(1.1rem, 2.4vw, 2.25rem);
  height: 1px;
  content: "";
  background: rgba(23, 20, 15, 0.18);
}

.about-section__mark {
  position: absolute;
  top: 52%;
  right: clamp(1rem, 6vw, 7rem);
  z-index: 0;
  width: clamp(10rem, 18vw, 22rem);
  opacity: 0.045;
  pointer-events: none;
  transform: translateY(-50%);
}

.about-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(22rem, 1fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  width: min(100%, 92rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(7rem, 5vw, 12rem) clamp(1.15rem, 4vw, 4.5rem);
}

.about-section__media {
  position: relative;
  align-self: stretch;
  min-height: min(45rem, 76vh);
  margin: 0;
  overflow: hidden;
  background: #191611;
  box-shadow: 0 2.2rem 5rem rgba(24, 18, 11, 0.18);
}

body.theme-light .hero__shade {
  background:
    linear-gradient(
      90deg,
      rgba(10, 9, 7, 0.48) 0%,
      rgba(10, 9, 7, 0.12) 48%,
      rgba(10, 9, 7, 0.32) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 9, 7, 0.46) 0%,
      rgba(10, 9, 7, 0.04) 42%,
      rgba(10, 9, 7, 0.56) 100%
    );
}

body.theme-light.has-scrolled .hero__nav {
  border-bottom-color: rgba(23, 20, 15, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1.2rem 2.6rem rgba(23, 20, 15, 0.1);
}

body.theme-light.has-scrolled .hero__links,
body.theme-light.has-scrolled .hero__menu {
  color: #17140f;
}

body.theme-light.has-scrolled .hero__brand img {
  filter: none;
}

body.theme-light.has-scrolled .hero__cta {
  border-color: rgba(23, 20, 15, 0.14);
  background: #17140f;
  color: #ffffff;
}

body.theme-light .site-menu__panel {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 244, 240, 0.98)
    ),
    #ffffff;
}

body.theme-light .site-menu__close,
body.theme-light .site-menu address,
body.theme-light .site-menu__socials,
body.theme-light .site-menu__nav {
  color: #17140f;
}

body.theme-light .site-menu__cta {
  background: #17140f;
  color: #ffffff;
}

.about-section__media::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.about-section__badge {
  position: absolute;
  left: 20px;
  bottom: clamp(1rem, 2vw, 1.4rem);
  display: grid;
  gap: 0.35rem;
  margin: 0;
  text-align: center;
  padding: 10px 12px;
  border-radius: 5px;
  background: rgb(9 8 6 / 0%);
  color: var(--ivory);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-section__badge span {
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 2vw, 3.15rem);
  font-weight: 700;
  line-height: 0.88;
}

.about-section__badge strong {
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.about-section__content {
  display: grid;
  gap: clamp(1.5rem, 2.3vw, 2.4rem);
  max-width: 43rem;
}

.about-section__eyebrow {
  margin: 0;
  color: #9d7f3a;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-section__title {
  max-width: 40rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 1.4vw, 7.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-section__copy {
  display: grid;
  gap: 1rem;
  max-width: 37rem;
  color: rgba(23, 20, 15, 0.72);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.85;
}

.about-section__copy p {
  margin: 0;
}

.about-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.about-section__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(23, 20, 15, 0.24);
  border-radius: 999px;
  color: #17140f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.about-section__actions a:first-child {
  border-color: #225085;
  background: #225085;
  color: var(--ivory);
}

.about-section__actions a:hover {
  border-color: #225085;
  background: #225085;
  color: var(--ivory);
}

.igbc-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 80, 133, 0.06), transparent 38%), #ffffff;
  color: #17140f;
}

.igbc-section::before,
.igbc-section::after {
  position: absolute;
  right: clamp(1.1rem, 2.4vw, 2.25rem);
  left: clamp(1.1rem, 2.4vw, 2.25rem);
  height: 1px;
  content: "";
  background: rgba(34, 80, 133, 0.16);
}

.igbc-section::before {
  top: 0;
}

.igbc-section::after {
  bottom: 0;
}

.igbc-section__inner {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) minmax(24rem, 1fr) auto;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  width: min(100%, 92rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 4vw, 7.5rem) clamp(1.15rem, 4vw, 4.5rem);
}

.igbc-section__mark {
  position: relative;
  display: grid;
  width: clamp(7rem, 10vw, 10rem);
  aspect-ratio: 1;
  place-items: center;
  justify-self: start;
  border: 1px solid rgba(34, 80, 133, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, rgba(34, 80, 133, 0.06));
  box-shadow: 0 1.5rem 4rem rgba(34, 80, 133, 0.12);
}

.igbc-section__mark img {
  display: block;
  width: 58%;
  height: auto;
}

.igbc-section__content {
  display: grid;
  gap: 1rem;
}

.igbc-section__eyebrow {
  margin: 0;
  color: #225085;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.igbc-section__title {
  max-width: 52rem;
  margin: 0;
  color: #225085;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 3.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.igbc-section__copy {
  max-width: 42rem;
  margin: 0;
  color: rgba(23, 20, 15, 0.68);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.8;
}

.igbc-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  white-space: nowrap;
  padding: 0 1.55rem;
  border: 1px solid rgba(34, 80, 133, 0.22);
  border-radius: 999px;
  background: #225085;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.igbc-section__cta:hover {
  border-color: #225085;
  background: #ffffff;
  color: #225085;
  transform: translateY(-2px);
}

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(5, 5, 4, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

body.certificate-open .certificate-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.certificate-modal__dialog {
  position: relative;
  width: min(100%, 58rem);
  max-height: min(86vh, 58rem);
  padding: clamp(0.65rem, 1.5vw, 1rem);
  border: 1px solid rgba(246, 241, 232, 0.18);
  background: #ffffff;
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.36s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

body.certificate-open .certificate-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.certificate-modal__dialog img {
  display: block;
  width: 100%;
  max-height: calc(86vh - 2rem);
  object-fit: contain;
}

.certificate-modal__close {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(246, 241, 232, 0.22);
  border-radius: 999px;
  background: #11100d;
  color: #ffffff;
  cursor: pointer;
}

.certificate-modal__close span {
  grid-area: 1 / 1;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
}

.certificate-modal__close span:first-child {
  transform: rotate(45deg);
}

.certificate-modal__close span:last-child {
  transform: rotate(-45deg);
}

.amenities-section {
  position: relative;
  height: 100vh;
  min-height: 42rem;
  overflow: hidden;
  background: #080807;
  color: var(--ivory);
}

.amenities-section__visuals,
.amenities-section__shade,
.amenities-section__bg {
  position: absolute;
  inset: 0;
}

.amenities-section__visuals {
  inset: 0;
  z-index: 0;
}

.amenities-section__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.42s ease;
}

.amenities-section__bg.is-active {
  opacity: 1;
}

.amenities-section__shade {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 4, 0.34) 0%,
      rgba(5, 5, 4, 0.08) 42%,
      rgba(5, 5, 4, 0.58) 100%
    ),
    radial-gradient(
      circle at 50% 48%,
      rgba(5, 5, 4, 0.04),
      rgba(5, 5, 4, 0.34) 72%
    );
}

.amenities-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(100%, 88rem);
  height: 100%;
  margin: 0 auto;
  padding: clamp(5.5rem, 7vw, 7rem) clamp(1.15rem, 1vw, 4.5rem)
    clamp(2rem, 4vw, 3rem);
}

.amenities-section__intro {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
}

.amenities-section__eyebrow {
  margin: 0;
  color: var(--soft-gold);
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.amenities-section__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.35vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.42);
}

.amenities-section__list {
  position: relative;
  align-self: stretch;
  min-height: 0;
}

.amenity-card {
  position: absolute;
  display: grid;
  gap: 0.85rem;
  align-content: center;
  justify-items: center;
  width: clamp(13.5rem, 17vw, 20rem);
  min-height: clamp(15.5rem, 25vh, 24rem);
  padding: clamp(1.35rem, 2.3vw, 2rem);
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 0 1.6rem 0 1.6rem;
  background: rgba(8, 8, 7, 0.16);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--ivory);
  text-align: center;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.16);
  contain: paint;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.amenity-card:hover,
.amenity-card:focus-visible,
.amenity-card.is-active {
  border-color: rgba(228, 210, 162, 0.62);
  background: rgba(8, 8, 7, 0.24);
  box-shadow:
    0 1.2rem 3rem rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(198, 164, 90, 0.14);
}

.amenity-card img {
  display: none;
}

.amenity-card__index {
  position: absolute;
  bottom: 0.85rem;
  left: 1rem;
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.amenity-card__name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1vw, 2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.34);
}

.amenity-card__copy {
  max-width: 14rem;
  color: rgba(246, 241, 232, 0.84);
  font-size: clamp(0.82rem, 0.86vw, 0.94rem);
  line-height: 1.45;
}

.amenity-card__floor {
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.amenity-card--one {
  top: 1%;
  left: 2%;
}

.amenity-card--two {
  top: 1%;
  left: 29%;
}

.amenity-card--three {
  bottom: 6%;
  left: 2%;
}

.amenity-card--four {
  right: 30%;
  bottom: 6%;
}

.amenity-card--five {
  right: 2%;
  bottom: 6%;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #151515;
  padding: clamp(5.5rem, 8vw, 8.5rem) 0 clamp(4.5rem, 7vw, 7rem);
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(48, 89, 145, 0.06),
      transparent 20%,
      transparent 80%,
      rgba(34, 80, 133, 0.06)
    ),
    linear-gradient(180deg, rgba(198, 164, 90, 0.08), transparent 18rem);
}

.gallery-section__header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.05rem;
  justify-items: center;
  /* max-width: 55rem; */
  margin: 0 auto clamp(2.8rem, 5vw, 4.5rem);
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  text-align: center;
}

.gallery-section__eyebrow {
  margin: 0;
  color: #225085;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.gallery-section__title {
  margin: 0;
  color: #0f0f0f;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.2vw, 4.75rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.gallery-section__copy {
  max-width: 39rem;
  margin: 0;
  color: rgba(18, 18, 18, 0.68);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.75;
}

.gallery-section__controls {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  width: min(100%, 94rem);
  margin: 0 auto 1.6rem;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.gallery-section__arrow {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.7rem;
  height: 2.3rem;
  border: 0;
  background: transparent;
  color: #171717;
  cursor: pointer;
}

.gallery-section__arrow::before,
.gallery-section__arrow::after,
.gallery-section__arrow span {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
}

.gallery-section__arrow span {
  width: 3.1rem;
  height: 1px;
}

.gallery-section__arrow::before,
.gallery-section__arrow::after {
  left: 0.2rem;
  width: 0.8rem;
  height: 1px;
  transform-origin: left center;
}

.gallery-section__arrow::before {
  transform: rotate(-42deg);
}

.gallery-section__arrow::after {
  transform: rotate(42deg);
}

.gallery-section__arrow--next {
  transform: scaleX(-1);
}

.gallery-section__viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
}

.gallery-section__track {
  display: grid;
  grid-auto-columns: minmax(34rem, 58vw);
  grid-auto-flow: column;
  gap: clamp(1rem, 1.5vw, 1.35rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem) 1.25rem 0;
  scrollbar-width: none;
}

.gallery-section__track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: auto;
  overflow: hidden;
  background: #f4f4f2;
  scroll-snap-align: center;
  isolation: isolate;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.01);
  transition:
    filter 0.45s ease,
    transform 0.65s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44));
  opacity: 0.78;
  transition: opacity 0.35s ease;
}

.gallery-card__view {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: 2.35rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-0.35rem);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.gallery-card:hover img,
.gallery-card.is-active img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.055);
}

.gallery-card:hover .gallery-card__view,
.gallery-card:focus-within .gallery-card__view,
.gallery-card.is-active .gallery-card__view {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card__view:hover,
.gallery-card__view:focus-visible {
  background: #ffffff;
}

.gallery-card__caption {
  position: absolute;
  right: 1.15rem;
  bottom: 1rem;
  left: 1.15rem;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
}

.gallery-card__caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.gallery-card__caption strong {
  max-width: 14rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.gallery-section__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 94rem);
  margin: 1.2rem auto 0;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.gallery-section__active {
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-section__dots {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.gallery-section__dots button {
  width: 0.38rem;
  height: 0.38rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.25);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.gallery-section__dots button.is-active {
  background: #225085;
  transform: scale(1.7);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(5, 5, 5, 0.84);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

body.gallery-lightbox-open .gallery-lightbox {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__dialog {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(100%, 92rem);
  transform: scale(0.96) translateY(1rem);
  transition: transform 0.38s ease;
}

body.gallery-lightbox-open .gallery-lightbox__dialog {
  transform: scale(1) translateY(0);
}

.gallery-lightbox__image {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #0a0a0a;
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.42);
  transition: opacity 0.18s ease;
}

.gallery-lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-lightbox__close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.gallery-lightbox__close span {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: #111111;
}

.gallery-lightbox__close span:first-child {
  transform: rotate(45deg);
}

.gallery-lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #111111;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  background: #ffffff;
}

.gallery-lightbox__nav--prev {
  left: 1rem;
}

.gallery-lightbox__nav--next {
  right: 1rem;
}

.gallery-lightbox__nav span,
.gallery-lightbox__nav::before,
.gallery-lightbox__nav::after {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
}

.gallery-lightbox__nav span {
  width: 1.45rem;
  height: 1px;
}

.gallery-lightbox__nav::before,
.gallery-lightbox__nav::after {
  left: 1.1rem;
  width: 0.62rem;
  height: 1px;
  transform-origin: left center;
}

.gallery-lightbox__nav::before {
  transform: rotate(-42deg);
}

.gallery-lightbox__nav::after {
  transform: rotate(42deg);
}

.gallery-lightbox__nav--next {
  transform: translateY(-50%) scaleX(-1);
}

.facts-section {
  position: relative;
  overflow: hidden;
  background:
    /* linear-gradient(135deg, rgba(48, 89, 145, 0.88) 0%, rgba(34, 80, 133, 0.9) 54%, rgba(12, 31, 54, 0.86) 100%), */ url("images/PT-BG.webp")
    center / cover no-repeat;
  color: #ffffff;
  padding: clamp(3.5rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4rem);
}

.facts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 6rem 6rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 88%);
}

.facts-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 94rem);
  margin: 0 auto;
}

.facts-section__header {
  display: grid;
  gap: 0.5rem;
  margin-bottom: clamp(2.2rem, 3.6vw, 3.4rem);
}

.facts-section__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.facts-section__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.7rem, 3vw, 2.8rem) clamp(1rem, 2.4vw, 2.5rem);
}

.fact-card {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  align-content: start;
  min-height: 7.8rem;
  text-align: center;
}

.fact-card i {
  display: grid;
  place-items: center;
  width: clamp(2.35rem, 3.4vw, 3.5rem);
  height: clamp(2.35rem, 3.4vw, 3.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.65rem, 2.35vw, 2.65rem);
  line-height: 1;
  text-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.24);
}

.fact-card h3 {
  max-width: 11rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.7rem, 0.76vw, 0.86rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.fact-card p {
  max-width: 10.5rem;
  margin: -0.22rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.62rem, 0.68vw, 0.76rem);
  line-height: 1.35;
}

.developer-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #10141b;
  padding: clamp(4.5rem, 7vw, 6.5rem) clamp(1.25rem, 4vw, 4rem);
}

.developer-section__mark {
  position: absolute;
  top: 35%;
  right: clamp(2rem, 8vw, 9rem);
  width: clamp(12rem, 20vw, 23rem);
  opacity: 0.045;
  pointer-events: none;
  transform: translateY(-50%);
}

.developer-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.4rem, 4vw, 3.5rem);
  width: min(100%, 78rem);
  margin: 0 auto;
}

.developer-section__content {
  display: grid;
  gap: 1.15rem;
  max-width: 58rem;
}

.developer-section__eyebrow {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.developer-section__content h2 {
  max-width: 37rem;
  margin: 0;
  color: #10141b;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.developer-section__content h2 em {
  font-style: italic;
}

.developer-section__content p:last-child {
  margin: 0;
  color: rgba(16, 20, 27, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.85;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 20, 27, 0.12);
}

.developer-stats div {
  display: grid;
  gap: 0.35rem;
  padding: 1.45rem clamp(1rem, 3vw, 2.5rem) 0;
  border-left: 1px solid rgba(16, 20, 27, 0.1);
}

.developer-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.developer-stats strong {
  color: #10141b;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
}

.developer-stats span {
  color: rgba(48, 89, 145, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.client-ticker {
  display: grid;
  gap: 1.4rem;
  padding-top: clamp(0.4rem, 1vw, 0.8rem);
}

.client-ticker__label {
  margin: 0;
  color: rgba(48, 60, 78, 0.44);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.client-ticker__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0.2rem 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000000 10%,
    #000000 90%,
    transparent
  );
}

.client-ticker__track {
  display: flex;
  width: max-content;
  gap: clamp(2.2rem, 5vw, 5rem);
  animation: clientTicker 44s linear infinite;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(11rem, 15vw, 14rem);
  height: 5.1rem;
  border: 1px solid rgba(16, 20, 27, 0.06);
  /* background: rgba(246, 242, 237, 0.86); */
}

.client-logo img {
  display: block;
  max-width: 78%;
  max-height: 4.5rem;
  object-fit: contain;
}

@keyframes clientTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(1.1rem, 2.5vw, 2.5rem)));
  }
}

.footer-section {
  position: relative;
  overflow: hidden;
  min-height: 86svh;
  background: #090d12;
  color: var(--ivory);
  isolation: isolate;
}

.footer-section__bg,
.footer-section__shade {
  position: absolute;
  inset: 0;
}

.footer-section__bg {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.footer-section__shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgb(7 11 17 / 0%),
      rgb(7 11 17 / 0%) 48%,
      rgb(7 11 17 / 0%)
    ),
    linear-gradient(180deg, rgba(7, 11, 17, 0.58), rgb(7 11 17 / 42%));
}

.footer-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 34rem);
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: center;
  width: min(100%, 92rem);
  min-height: 86svh;
  margin: 0 auto;
  padding: clamp(4.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 4rem);
}

.footer-section__content {
  display: grid;
  gap: clamp(1.5rem, 2.6vw, 2.4rem);
  max-width: 44rem;
}

.footer-section__eyebrow {
  margin: 0;
  color: var(--soft-gold);
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-intro {
  display: grid;
  gap: 1rem;
}

.footer-intro h2 {
  max-width: 34rem;
  margin: 0;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.footer-party span,
.footer-address span {
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 3rem;
  align-items: flex-start;
}

.footer-party {
  display: grid;
  gap: 0.75rem;
}

.footer-party img {
  width: 8.8rem;
  max-height: 3.6rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0.5rem 1.2rem rgba(0, 0, 0, 0.25));
}

.footer-party:nth-child(2) img {
  width: 4.8rem;
  max-height: 4.8rem;
}

.footer-address {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
}

.footer-address address {
  max-width: 38rem;
  margin-top: 0.65rem;
  color: rgba(246, 241, 232, 0.74);
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-rera {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: end;
}

.footer-rera p {
  margin: 0.35rem 0 0.45rem;
  color: rgba(246, 241, 232, 0.86);
  font-size: 0.94rem;
}

.footer-rera a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-rera img {
  width: 5.6rem;
  border: 1px solid rgba(246, 241, 232, 0.18);
}

.enquiry-form {
  display: grid;
  gap: 0;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 0.8rem;
  background: rgba(14, 18, 25, 0.58);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.enquiry-form > * + * {
  margin-top: 1.15rem;
}

.enquiry-form h3 {
  margin: 0.6rem 0 0.5rem;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
}

.enquiry-form label {
  display: grid;
  gap: 0.55rem;
}

.enquiry-form label span {
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0 1.05rem;
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font: inherit;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.enquiry-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(246, 241, 232, 0.72) 50%),
    linear-gradient(135deg, rgba(246, 241, 232, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 1.25rem) 50%,
    calc(100% - 0.9rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.35rem 0.35rem;
}

.enquiry-form input::placeholder {
  color: rgba(246, 241, 232, 0.42);
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: rgba(228, 210, 162, 0.66);
  background: rgba(255, 255, 255, 0.09);
}

.enquiry-form__field {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.4rem);
  visibility: hidden;
  transition:
    max-height 0.36s ease,
    margin-top 0.36s ease,
    opacity 0.28s ease,
    transform 0.36s ease,
    visibility 0.36s ease;
}

.enquiry-form__field.is-visible {
  margin-top: 1.15rem;
  max-height: 6rem;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.enquiry-form__turnstile {
  display: grid;
  gap: 0.45rem;
  justify-items: stretch;
}

.enquiry-form__turnstile .cf-turnstile {
  min-height: 4.05rem;
}

.enquiry-form__error {
  min-height: 1rem;
  margin: 0;
  color: #f1c27d;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.enquiry-form__status {
  min-height: 1rem;
  margin: 0.75rem 0 0;
  color: rgba(228, 210, 162, 0.82);
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.enquiry-form button {
  min-height: 3.45rem;
  margin-top: 1.15rem;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.enquiry-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.enquiry-form__note {
  margin: 1.15rem 0 0;
  color: rgba(246, 241, 232, 0.42);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.copyright-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1.25rem, 4vw, 4rem);
  background: #07090d;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.72rem;
  line-height: 1.4;
}

.copyright-bar p {
  margin: 0;
}

.copyright-bar a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1280px) {
  .amenities-section__inner {
    width: min(100%, 76rem);
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .amenity-card {
    width: clamp(11.5rem, 16vw, 15rem);
    min-height: clamp(13.5rem, 22vh, 18rem);
    padding: clamp(1rem, 1.8vw, 1.45rem);
  }

  .amenity-card__name {
    font-size: clamp(1.35rem, 1.8vw, 2.1rem);
  }

  .amenity-card__copy {
    max-width: 12rem;
    font-size: 0.78rem;
  }

  .amenity-card--one {
    left: 3%;
  }

  .amenity-card--two {
    left: 31%;
  }

  .amenity-card--three {
    left: 3%;
  }

  .amenity-card--four {
    right: 29%;
  }

  .amenity-card--five {
    right: 3%;
  }

  .gallery-section__track {
    grid-auto-columns: minmax(28rem, 68vw);
  }

  .facts-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 100svh;
  }

  .hero__nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: 4.8rem;
    padding-right: 0;
    padding-left: 0;
    z-index: 1001;
  }

  body.has-scrolled .hero__nav {
    height: 4.4rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero__links {
    display: none;
  }

  .hero__phone {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 12vh 0 10.75rem;
  }

  .hero__title {
    font-size: clamp(4rem, 17vw, 8rem);
  }

  .hero__copy {
    max-width: 33rem;
  }

  .hero__meta {
    grid-template-columns: 1fr auto 1fr;
  }

  .hero__fact--right {
    display: none;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .about-section__media {
    min-height: auto;
    aspect-ratio: 1 / 0.9;
    order: 2;
  }

  .about-section__content {
    max-width: 43rem;
  }

  .igbc-section__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .igbc-section__cta {
    grid-column: 2;
    justify-self: start;
  }

  .amenities-section {
    height: auto;
    min-height: auto;
  }

  .amenities-section__visuals,
  .amenities-section__shade {
    display: none;
  }

  .amenities-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .amenities-section__intro {
    max-width: 42rem;
  }

  .amenities-section__list {
    display: grid;
    gap: 1rem;
    border-top: 0;
  }

  .amenity-card,
  .amenity-card:hover,
  .amenity-card:focus-visible,
  .amenity-card.is-active {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.8rem;
    width: 100%;
    min-height: auto;
    padding: 0;
    border: 1px solid rgba(246, 241, 232, 0.16);
    border-radius: 0;
    color: var(--ivory);
    background: transparent;
    transform: none;
  }

  .amenity-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .amenity-card__index,
  .amenity-card__name,
  .amenity-card__copy,
  .amenity-card__floor {
    position: static;
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .amenity-card__index {
    margin-top: 0.4rem;
  }

  .amenity-card__floor {
    margin-bottom: 1.25rem;
  }

  .amenity-card__name {
    font-size: clamp(2rem, 8vw, 3.7rem);
  }

  .gallery-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .gallery-section__title {
    font-size: clamp(2.25rem, 8vw, 4rem);
  }

  .gallery-section__controls {
    justify-content: center;
  }

  .gallery-section__viewport {
    padding-left: 1rem;
  }

  .gallery-section__track {
    grid-auto-columns: minmax(82vw, 1fr);
    gap: 0.8rem;
    padding-right: 1rem;
  }

  .gallery-card {
    aspect-ratio: 4 / 3;
  }

  .gallery-card__view {
    opacity: 1;
    transform: none;
  }

  .gallery-section__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .facts-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem 1rem;
  }

  .fact-card {
    min-height: 7rem;
  }

  .developer-section__content {
    max-width: 100%;
  }

  .footer-section__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 6rem;
    padding-bottom: 5rem;
  }

  .footer-section__content {
    max-width: 100%;
  }

  .enquiry-form {
    max-width: 34rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 1rem;
  }

  .hero__image {
    object-position: 52% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(10, 9, 7, 0.78), rgba(10, 9, 7, 0.34)),
      linear-gradient(
        180deg,
        rgba(10, 9, 7, 0.74),
        rgba(10, 9, 7, 0.1) 36%,
        rgba(10, 9, 7, 0.9)
      );
  }

  .hero__brand {
    width: 8.25rem;
  }

  .hero__cta {
    display: none;
  }

  .hero__content {
    padding-bottom: 9.6rem;
  }

  .hero__eyebrow {
    font-size: 0.66rem;
  }

  .hero__title {
    width: min-content;
    max-width: 100%;
    font-size: clamp(2.95rem, 13vw, 4.85rem);
    line-height: 0.82;
  }

  .hero__kicker {
    max-width: 18rem;
  }

  .hero__copy {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .hero__meta {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    grid-template-columns: 1fr;
  }

  .hero__scroll {
    display: none;
  }

  .site-menu__panel {
    width: 100%;
    padding: 5.5rem 1.25rem 3rem;
  }

  .site-menu__content {
    gap: 2rem;
    text-align: left;
  }

  .site-menu__nav {
    display: grid;
    gap: 0.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(246, 241, 232, 0.14);
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(2rem, 12vw, 3.8rem);
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
  }

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

  .site-menu__cta {
    justify-self: start;
  }

  .about-section__inner {
    gap: 2.25rem;
    padding: 5.5rem 1rem;
  }

  .about-section__mark {
    top: 18%;
    right: -3rem;
    width: 12rem;
    opacity: 0.035;
  }

  .about-section__title {
    font-size: clamp(2.75rem, 14vw, 4.7rem);
  }

  .about-section__copy {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .about-section__badge {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: 7rem;
    padding: 0.85rem;
  }

  .about-section__actions {
    display: grid;
  }

  .igbc-section__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 4rem 1rem;
  }

  .igbc-section__mark {
    width: 7.4rem;
  }

  .igbc-section__title {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .igbc-section__cta {
    grid-column: auto;
    justify-self: start;
  }

  .amenities-section__inner {
    padding: 5.5rem 1rem;
  }

  .amenities-section__title {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
    white-space: normal;
  }

  .amenity-card__name {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
  }

  .gallery-section__header {
    margin-bottom: 2rem;
    text-align: left;
    justify-items: start;
  }

  .gallery-section__copy {
    line-height: 1.62;
  }

  .gallery-section__controls {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }

  .gallery-section__track {
    grid-auto-columns: minmax(88vw, 1fr);
  }

  .gallery-card {
    aspect-ratio: 4 / 5;
  }

  .gallery-card__caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-card__caption strong {
    text-align: left;
  }

  .gallery-card__view {
    top: 0.8rem;
    right: 0.8rem;
    min-height: 2.2rem;
    padding: 0 0.8rem;
    font-size: 0.58rem;
  }

  .gallery-lightbox {
    padding: 0.8rem;
  }

  .gallery-lightbox__close {
    top: 0.65rem;
    right: 0.65rem;
  }

  .gallery-lightbox__image {
    max-height: 78vh;
  }

  .gallery-lightbox__nav {
    top: auto;
    bottom: 3.4rem;
    width: 3rem;
    height: 3rem;
    transform: none;
  }

  .gallery-lightbox__nav--prev {
    left: 1rem;
  }

  .gallery-lightbox__nav--next {
    right: 1rem;
    transform: scaleX(-1);
  }

  .facts-section {
    padding: 3.5rem 1rem;
  }

  .facts-section__header {
    margin-bottom: 2.4rem;
  }

  .facts-section__title {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.9rem 0.8rem;
  }

  .fact-card {
    min-height: auto;
  }

  .fact-card i {
    font-size: 1.85rem;
  }

  .fact-card h3 {
    font-size: 0.7rem;
  }

  .fact-card p {
    font-size: 0.62rem;
  }

  .footer-section__inner {
    gap: 2.5rem;
    padding: 5rem 1rem 3.5rem;
  }

  .developer-section {
    padding: 4rem 1rem;
  }

  .developer-section__mark {
    right: -3rem;
    width: 12rem;
    opacity: 0.035;
  }

  .developer-section__content h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .developer-section__content p:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .developer-stats {
    grid-template-columns: 1fr;
  }

  .developer-stats div,
  .developer-stats div:first-child {
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 20, 27, 0.1);
  }

  .developer-stats div:first-child {
    border-top: 0;
  }

  .client-ticker {
    gap: 1rem;
  }

  .client-ticker__track {
    gap: 1rem;
    animation-duration: 22s;
  }

  .client-logo {
    width: 9.5rem;
    height: 4.4rem;
    font-size: 1.12rem;
  }

  .footer-intro h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .footer-meta,
  .footer-address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-rera {
    grid-template-columns: 1fr;
  }

  .footer-rera img {
    width: 5rem;
  }

  .enquiry-form {
    padding: 1.2rem;
    border-radius: 1.2rem;
  }

  .enquiry-form input,
  .enquiry-form button {
    min-height: 3.1rem;
  }

  .copyright-bar {
    flex-direction: column;
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
