/* ==========================================================================
   G.S. CONSTRUCTION - CALEDONIAN ARCHITECTURAL MODULES & COMPONENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Minimalist Architectural Header (#header)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   01. Minimalist Architectural White Header (#header)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 500;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal), background-color var(--transition-normal), height var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 72px;
}

.header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header .logo {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.header .logo:hover img {
  transform: scale(1.03);
}

.header .menu-desktop {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header .menu-link {
  font-family: var(--f-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--c-text);
  opacity: 0.88;
  position: relative;
  padding: 6px 0;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.header .menu-link:hover,
.header .menu-link.active {
  opacity: 1;
  color: var(--c-text);
}

.header .menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--c-accent);
  transition: width var(--transition-normal);
}

.header .menu-link:hover::after,
.header .menu-link.active::after {
  width: 100%;
}

.header .right-actions {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header .btn-info-trigger {
  font-family: var(--f-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--c-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.header .btn-info-trigger:hover {
  transform: translateY(-1px);
  color: var(--c-accent-hover);
}

.header .btn-info-trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c-accent);
  box-shadow: 0 0 8px var(--c-accent);
}

/* Minimalist Hamburger Trigger */
.header .trigger {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 550;
}

.header .trigger .text {
  font-family: var(--f-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 16px;
  transition: color var(--transition-fast);
}

.header .trigger .text span {
  display: block;
  line-height: 16px;
  transition: transform var(--transition-normal);
}

.header .trigger.active .text {
  color: #FFFFFF;
}

.header .trigger.active .text span:nth-child(1) {
  transform: translateY(-100%);
}

.header .trigger.active .text span:nth-child(2) {
  transform: translateY(-100%);
}

.header .trigger .icon {
  width: 28px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header .trigger .icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--c-text);
  transition: all var(--transition-normal);
}

.header .trigger.active .icon span {
  background-color: var(--c-accent);
}

.header .trigger.active .icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header .trigger.active .icon span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   02. Fullscreen Navigation Overlay
   -------------------------------------------------------------------------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--c-bg-dark);
  color: var(--c-text-light);
  z-index: 450;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 100px);
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.nav-overlay.open {
  transform: translateY(0);
}

.nav-overlay-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: var(--container-medium);
  width: 100%;
  margin: auto;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-overlay-link {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--c-text-light);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.nav-overlay-link span.num {
  font-size: 1.1rem;
  color: var(--c-accent);
  font-family: var(--f-heading);
  font-weight: 700;
}

.nav-overlay-link:hover {
  color: var(--c-accent);
  transform: translateX(12px);
}

.nav-overlay-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  border-left: 1px solid var(--c-border-dark);
  padding-left: 40px;
}

.nav-overlay-info p {
  font-size: 1.05rem;
  color: #A1A1AA;
}

/* --------------------------------------------------------------------------
   03. Panoramic Landscape Hero Section (.hero-landscape)
   -------------------------------------------------------------------------- */
.hero-landscape {
  position: relative;
  min-height: 90vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: clamp(60px, 8vw, 100px);
  display: flex;
  align-items: flex-end;
  background-color: #0D0D0F;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-landscape__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../images/engineered-centuries-clean.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.7) saturate(1.15);
  transform: scale(1.02);
  transition: transform 1.8s var(--ease-caledonian);
}

.hero-landscape:hover .hero-landscape__bg {
  transform: scale(1.05);
}

.hero-landscape__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.45) 0%, rgba(13, 13, 15, 0.7) 45%, rgba(13, 13, 15, 0.94) 100%);
}

.hero-landscape__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1080px;
}

.hero-landscape .label {
  color: #FF8F50;
  margin-bottom: 16px;
  background: rgba(255, 94, 30, 0.16);
  border: 1px solid rgba(255, 94, 30, 0.35);
  padding: 5px 14px;
  border-radius: 9999px;
  display: inline-flex;
}

.hero-landscape .title--hero {
  color: #FFFFFF;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.03;
  margin-bottom: 20px;
}

.hero-landscape .title--hero strong {
  color: var(--c-accent);
}

.hero-landscape .wysiwyg--large {
  color: #E4E4E7;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 780px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-divisions-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-division-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 4px;
  font-family: var(--f-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.hero-division-tag:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.hero-division-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}

.hero-landscape-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* --------------------------------------------------------------------------
   03b. Homepage 3 Dedicated Service Divisions (.division-block)
   -------------------------------------------------------------------------- */
.divisions-wrapper {
  background-color: var(--c-bg);
}

.division-block {
  padding: clamp(56px, 7vw, 90px) 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
}

.division-block--alt {
  background-color: var(--c-bg-alt);
}

.division-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-end;
  margin-bottom: clamp(36px, 4.5vw, 54px);
}

.division-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.division-number {
  font-family: var(--f-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.division-title {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.division-title strong {
  color: var(--c-accent);
}

.division-subline {
  font-family: var(--f-heading);
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.division-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.division-header-right p {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* 3-Card Visual Media Showcase Grid */
.division-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.division-card {
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-caledonian), box-shadow 0.4s ease;
}

.division-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.division-card__media {
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
  background-color: #141416;
}

.division-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-caledonian);
}

.division-card:hover .division-card__media img {
  transform: scale(1.06);
}

.division-card__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 15, 0.85) 100%);
  color: #FFFFFF;
  font-family: var(--f-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.division-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.division-card__title {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-text);
  margin-bottom: 8px;
}

.division-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.division-scope-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.division-scope-pill {
  font-size: 0.72rem;
  font-family: var(--f-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--c-bg-alt);
  color: var(--c-text);
  padding: 4px 10px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   03c. Interactive Architectural Gallery System (.gallery-grid)
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: clamp(48px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  background-color: var(--c-bg);
}

.gallery-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.gallery-filter-btn {
  font-family: var(--f-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--c-accent);
  border-color: var(--c-accent);
  color: #FFFFFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-color: #141416;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.4s var(--ease-caledonian), box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.gallery-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-caledonian);
}

.gallery-item:hover .gallery-item__media img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 15, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #FFFFFF;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.gallery-item__cat {
  font-family: var(--f-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: 4px;
}

.gallery-item__caption {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
}

/* Gallery Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  background-color: rgba(7, 7, 9, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__dialog {
  max-width: 1000px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-lightbox__close:hover {
  background-color: var(--c-accent);
  border-color: var(--c-accent);
}

.gallery-lightbox__img-wrap {
  width: 100%;
  max-height: 75vh;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__img-wrap img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.gallery-lightbox__info {
  margin-top: 16px;
  text-align: center;
  color: #FFFFFF;
}

.gallery-lightbox__title {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-lightbox__meta {
  font-size: 0.85rem;
  color: var(--c-accent);
  font-family: var(--f-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --------------------------------------------------------------------------
   04. Client & Authority Partner Trust Ribbon
   -------------------------------------------------------------------------- */
.partners-ribbon {
  padding: 20px 0;
  background-color: var(--c-bg-alt);
}

.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-item {
  font-family: var(--f-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c-accent);
}

/* --------------------------------------------------------------------------
   05. Infinite Marquee Scrolling Typography Ribbons (.home__scrolltitle)
   -------------------------------------------------------------------------- */
.home__scrolltitle {
  padding: 28px 0;
  background-color: var(--c-bg);
  overflow: hidden;
}

.scrolltitle {
  display: flex;
  white-space: nowrap;
  gap: 36px;
  margin: 6px 0;
  user-select: none;
}

.scrolltitle__track {
  display: flex;
  gap: 36px;
  animation: marqueeLeft 34s linear infinite;
  will-change: transform;
}

.scrolltitle--reverse .scrolltitle__track {
  animation: marqueeRight 34s linear infinite;
}

.scrolltitle__item {
  display: flex;
  gap: 36px;
  font-family: var(--f-heading);
  font-size: clamp(1.8rem, 3.8vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

.scrolltitle__item .info {
  color: var(--c-text);
  font-weight: 300;
}

.scrolltitle__item .info.bold {
  font-weight: 700;
  color: var(--c-accent);
}

.scrolltitle__item .info.outline {
  -webkit-text-stroke: 1px var(--c-text);
  color: transparent;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* --------------------------------------------------------------------------
   06. Aligned Editorial Showcase Rows (.editorial-showcase / .editorial-row)
   -------------------------------------------------------------------------- */
.editorial-showcase {
  padding: clamp(48px, 5.5vw, 76px) 0;
  background-color: var(--c-bg);
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 5vw, 68px);
}

.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.editorial-row--top {
  align-items: flex-start;
}

.editorial-row--reversed .editorial-media {
  order: 2;
}

.editorial-row--reversed .editorial-content {
  order: 1;
}

.editorial-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.editorial-media .image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-caledonian);
}

.editorial-media:hover img {
  transform: scale(1.03);
}

.editorial-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}

.editorial-content .label {
  margin-bottom: 12px;
}

.editorial-content .title--section {
  margin-bottom: 16px;
  line-height: 1.08;
}

.editorial-content .wysiwyg {
  margin-bottom: 20px;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   07. Clean Architectural Statement Showcase (.home__poster / .poster-card)
   -------------------------------------------------------------------------- */
.home__poster {
  position: relative;
  padding: clamp(44px, 5vw, 68px) 0;
  background-color: var(--c-bg-alt);
  overflow: hidden;
}

.poster-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: clamp(28px, 4.5vw, 48px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.poster-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.poster-title {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.poster-title strong {
  color: var(--c-accent);
}

.poster-subline {
  font-family: var(--f-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: 16px;
  display: block;
}

.poster-description {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.poster-metrics-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  background-color: var(--c-bg-alt);
  border-radius: 6px;
  border-left: 3px solid var(--c-accent);
}

.poster-metrics-pill .metric {
  display: flex;
  flex-direction: column;
}

.poster-metrics-pill .metric .val {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
}

.poster-metrics-pill .metric .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.poster-metrics-pill .metric-divider {
  width: 1px;
  height: 24px;
  background-color: var(--c-border);
}

.poster-card__media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.poster-card__media .media-wrap {
  aspect-ratio: 16 / 11;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.poster-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-caledonian);
}

.poster-card__media:hover img {
  transform: scale(1.03);
}

.poster-card__media .media-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 15, 0.82) 100%);
  color: #FFFFFF;
  font-family: var(--f-heading);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   08. Flagship Landmark Package Section (.home__masterworks) - High Contrast
   -------------------------------------------------------------------------- */
.home__masterworks {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #0D0D0F;
  color: #FFFFFF;
  overflow: hidden;
  padding: clamp(56px, 6.5vw, 84px) 0;
}

.home__masterworks .background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home__masterworks .background__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.1);
  transition: transform 1.2s var(--ease-caledonian);
}

.home__masterworks .background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 15, 0.94) 0%, rgba(13, 13, 15, 0.82) 55%, rgba(13, 13, 15, 0.45) 100%);
  z-index: 2;
}

.home__masterworks .inner {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.home__masterworks .title {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  margin-bottom: 10px;
  line-height: 1.05;
}

.home__masterworks .subline {
  color: var(--c-accent);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.home__masterworks .wysiwyg {
  color: #D4D4D8;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.masterworks-specs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.spec-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 9999px;
  font-family: var(--f-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   09. Curated Projects Slider & Projects Grid (.home__related / .projects-grid)
   -------------------------------------------------------------------------- */
.home__related {
  padding: clamp(48px, 5.5vw, 72px) 0;
  background-color: var(--c-bg);
}

.home__related .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.home__related .slider-nav {
  display: flex;
  gap: 10px;
}

.home__related .slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.home__related .slider-btn:hover {
  background-color: var(--c-accent);
  border-color: var(--c-accent);
  color: #FFFFFF;
}

.slider-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 16px;
  align-items: stretch;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3.5vw, 40px);
}

.promotion-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 310px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-caledonian), box-shadow 0.4s ease;
}

.projects-grid .promotion-card {
  flex: none;
  min-width: 0;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.promotion-card .card-media {
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
  background-color: #141416;
}

.promotion-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-caledonian);
}

.promotion-card:hover .card-media img {
  transform: scale(1.05);
}

.promotion-card .card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.promotion-card .category-tag {
  font-family: var(--f-heading);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: 6px;
}

.promotion-card .title {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-text);
  margin-bottom: 8px;
}

.promotion-card .description {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.promotion-card .card-meta-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--f-heading);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #71717A;
}

/* --------------------------------------------------------------------------
   09b. Enhanced Projects Portfolio Layout (.project-package-card)
   -------------------------------------------------------------------------- */
.projects-portfolio-section {
  padding: clamp(48px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}

.projects-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(36px, 4.5vw, 54px);
}

.projects-filter-btn {
  font-family: var(--f-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 9px 20px;
  border-radius: 9999px;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.projects-filter-btn:hover,
.projects-filter-btn.active {
  background-color: var(--c-accent);
  border-color: var(--c-accent);
  color: #FFFFFF;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3.5vw, 40px);
}

.project-package-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-caledonian), box-shadow 0.4s ease;
}

.project-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.project-package-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background-color: #141416;
}

.project-package-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-caledonian);
}

.project-package-card:hover .project-package-card__media img {
  transform: scale(1.06);
}

.project-package-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 13, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 9999px;
  color: #FFFFFF;
  font-family: var(--f-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-package-card__body {
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.project-domain-tag {
  font-family: var(--f-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.project-package-title {
  font-family: var(--f-heading);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--c-text);
  margin-bottom: 12px;
}

.project-package-desc {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-locations-box {
  background: var(--c-bg-alt);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-left: 3px solid var(--c-accent);
}

.project-locations-header {
  font-family: var(--f-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-locations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-loc-tag {
  font-size: 0.74rem;
  font-family: var(--f-heading);
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #27272A;
  padding: 3px 9px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.project-loc-tag::before {
  content: "📍";
  font-size: 0.68rem;
}

.project-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Metro Stations Grid Layout */
.metro-stations-box {
  background: linear-gradient(135deg, #141417 0%, #0D0D0F 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  margin-top: clamp(40px, 5vw, 60px);
  color: #FFFFFF;
}

.metro-stations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.metro-station-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.metro-station-pill:hover {
  background: rgba(255, 94, 30, 0.15);
  border-color: var(--c-accent);
  transform: translateY(-2px);
}

.metro-station-name {
  font-family: var(--f-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.metro-station-name::before {
  content: "🚇";
  font-size: 0.85rem;
}

.metro-station-scope {
  font-size: 0.78rem;
  color: #A1A1AA;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .projects-showcase-grid {
    grid-template-columns: 1fr;
  }
  .metro-stations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .metro-stations-grid {
    grid-template-columns: 1fr;
  }
  .projects-filter-nav {
    gap: 6px;
  }
  .projects-filter-btn {
    font-size: 0.72rem;
    padding: 7px 14px;
  }
}

/* --------------------------------------------------------------------------
   10. ADCO "Our Story" Scroll Timeline System
   -------------------------------------------------------------------------- */
.story-nav-holder {
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  transition: top var(--transition-normal);
}

.story-nav {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.story-nav::-webkit-scrollbar {
  display: none;
}

.story-nav-link {
  font-family: var(--f-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-muted);
  padding: 6px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.story-nav-link:hover,
.story-nav-link.active {
  color: #FFFFFF;
  background-color: var(--c-accent);
}

.story-container {
  transition: background-color 0.8s var(--ease-caledonian);
}

.story-row {
  padding: clamp(40px, 4.5vw, 60px) 0;
  position: relative;
}

.story-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5.5vw, 72px);
  align-items: center;
}

.story-row--reversed .story-row-inner {
  direction: rtl;
}

.story-row--reversed .story-row-inner > * {
  direction: ltr;
}

.story-media {
  position: relative;
}

.story-media-inner {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.story-shard {
  position: absolute;
  width: 36px;
  height: 36px;
  z-index: 5;
  background-color: var(--c-accent);
  opacity: 0.85;
}

.story-shard--top-right {
  top: -10px;
  right: -10px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.story-shard--bottom-left {
  bottom: -10px;
  left: -10px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--f-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-accent);
}

.story-badge .year {
  background: var(--c-accent-light);
  padding: 4px 10px;
  border-radius: 9999px;
}

.story-metrics-grid {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.story-metric-item {
  display: flex;
  flex-direction: column;
}

.story-metric-value {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}

.story-metric-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-top: 4px;
}

/* Dark Theme State for Story Container */
.story-container.is-dark .story-content .title--section,
.story-container.is-dark .story-content .wysiwyg p {
  color: #F4F4F5 !important;
}

.story-container.is-dark .story-content .wysiwyg {
  color: #A1A1AA !important;
}

/* --------------------------------------------------------------------------
   10b. Visual Gallery Spotlight Strip (.home__gallery-spotlight)
   -------------------------------------------------------------------------- */
.home__gallery-spotlight {
  padding: clamp(54px, 6.5vw, 84px) 0;
  background-color: var(--c-bg);
}

.gallery-spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(28px, 4vw, 40px);
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.spotlight-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: #141416;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-caledonian), box-shadow 0.4s ease;
  display: block;
}

.spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-caledonian);
}

.spotlight-card:hover img {
  transform: scale(1.08);
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 15, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #FFFFFF;
}

.spotlight-tag {
  font-family: var(--f-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  margin-bottom: 2px;
}

.spotlight-title {
  font-family: var(--f-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .gallery-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-spotlight-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   11. Recognitions & Certifications Strip (.home__awards)
   -------------------------------------------------------------------------- */
.home__awards {
  padding: clamp(40px, 4.5vw, 60px) 0;
  background-color: var(--c-bg-alt);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.award-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--c-accent);
  padding-left: 18px;
}

.award-item .award-title {
  font-family: var(--f-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text);
}

.award-item .award-desc {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. Slide-Out Information Drawer (#info.info)
   -------------------------------------------------------------------------- */
.info-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(680px, 100vw);
  height: 100vh;
  background-color: var(--c-bg);
  z-index: 600;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.info-drawer.open {
  transform: translateX(0);
}

.info-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 590;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.info-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.info-drawer-header {
  padding: 28px 36px;
  display: flex;
  justify-content: flex-end;
}

.info-drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.info-drawer-close:hover {
  background-color: var(--c-accent);
  border-color: var(--c-accent);
  color: #FFFFFF;
}

.info-drawer-content {
  padding: 0 36px 50px;
}

.info-drawer .form-group {
  margin-bottom: 20px;
}

.info-drawer .form-label {
  display: block;
  font-family: var(--f-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.info-drawer .form-input,
.info-drawer .form-select,
.info-drawer .form-textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--c-border);
  background: transparent;
  font-family: var(--f-body);
  font-size: 0.98rem;
  color: var(--c-text);
  outline: none;
  transition: border-color var(--transition-fast);
}

.info-drawer .form-input:focus,
.info-drawer .form-select:focus,
.info-drawer .form-textarea:focus {
  border-bottom-color: var(--c-accent);
}

/* --------------------------------------------------------------------------
   13. Video Modal Player
   -------------------------------------------------------------------------- */
.video-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  max-width: 960px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-modal-close:hover {
  background-color: var(--c-accent);
  border-color: var(--c-accent);
}

/* --------------------------------------------------------------------------
   14. Ultra-Luxury Architectural Footer (.home__footer)
   -------------------------------------------------------------------------- */
.home__footer {
  background: radial-gradient(circle at 50% 0%, #16161B 0%, #070709 80%);
  color: var(--c-text-light);
  padding: clamp(56px, 6.5vw, 84px) 0 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle Background Monumental Watermark */
.home__footer::before {
  content: "GS CONSTRUCTION";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-heading);
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.015);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.home__footer .container {
  position: relative;
  z-index: 2;
}

/* Pre-Footer Horizon Consultation CTA Card */
.footer-cta-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(40px, 5.5vw, 60px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.footer-cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.footer-cta-title {
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.footer-cta-title strong {
  color: var(--c-accent);
}

.footer-cta-sub {
  font-size: 0.95rem;
  color: #A1A1AA;
  line-height: 1.5;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-btn-primary {
  background: var(--c-accent);
  color: #FFFFFF;
  padding: 13px 26px;
  border-radius: 9999px;
  font-family: var(--f-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 24px var(--c-accent-glow);
}

.footer-btn-primary:hover {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--c-accent-glow);
}

.footer-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 9999px;
  font-family: var(--f-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-btn-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

/* 3-Column Structured Footer Content */
.home__footer .footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 1.05fr;
  gap: clamp(32px, 4.5vw, 56px);
  align-items: flex-start;
  margin-bottom: 44px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col .footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-col .footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: #A1A1AA;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 380px;
}

.footer-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-trust-pill {
  font-family: var(--f-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #E4E4E7;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 4px;
}

.footer-col-title {
  font-family: var(--f-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item {
  font-size: 0.92rem;
  color: #D4D4D8;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item:hover {
  color: var(--c-accent);
  transform: translateX(4px);
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact-row .label-micro {
  font-family: var(--f-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #71717A;
}

.footer-contact-row p,
.footer-contact-row a {
  font-size: 0.92rem;
  color: #E4E4E7;
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.footer-contact-row a:hover {
  color: var(--c-accent);
}

.footer-phone-highlight {
  color: inherit;
  font-weight: inherit;
}

.home__footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #71717A;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .editorial-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .editorial-row--reversed .editorial-media {
    order: 1;
  }
  .editorial-row--reversed .editorial-content {
    order: 2;
  }
  .poster-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
  }
  .story-row-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .division-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .division-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promotion-card {
    flex: 0 0 calc(50% - 14px);
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home__footer .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nav-overlay-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    height: 68px;
  }
  .header.scrolled {
    height: 62px;
  }
  .header .menu-desktop {
    display: none;
  }
  .header .btn-info-trigger {
    display: none;
  }
  .header .logo img {
    height: 34px;
    max-width: 170px;
  }
  .header .right-actions {
    gap: 0;
  }
  .header .trigger {
    padding: 6px 0;
    gap: 8px;
  }
  .header .trigger .text {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }
  .header .trigger .icon {
    width: 24px;
    height: 12px;
  }
  .hero-landscape {
    min-height: auto;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 48px;
  }
  .hero-landscape .title--hero {
    font-size: clamp(2rem, 7.5vw, 3rem);
  }
  .hero-divisions-strip {
    gap: 8px;
  }
  .hero-division-tag {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .division-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-filter-nav {
    gap: 6px;
  }
  .gallery-filter-btn {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .promotion-card {
    flex: 0 0 100%;
    min-width: 280px;
  }
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .poster-card {
    padding: 24px 16px;
  }
  .poster-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .poster-metrics-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .poster-metrics-pill .metric-divider {
    display: none;
  }
  .footer-cta-card {
    padding: 24px 18px;
    gap: 20px;
    margin-bottom: 36px;
  }
  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .footer-btn-primary,
  .footer-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .home__footer {
    padding: 44px 0 28px;
  }
  .home__footer .footer-top {
    gap: 32px;
    margin-bottom: 36px;
  }
  .home__footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .nav-overlay {
    padding: 80px 20px 36px;
    justify-content: flex-start;
  }
  .nav-overlay-grid {
    gap: 28px;
  }
  .nav-overlay-link {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    gap: 14px;
  }
  .nav-overlay-info {
    border-left: none;
    border-top: 1px solid var(--c-border-dark);
    padding-left: 0;
    padding-top: 20px;
    gap: 16px;
  }
  .info-drawer {
    width: 100vw;
  }
  .info-drawer-content {
    padding: 0 20px 40px;
  }
}

/* --------------------------------------------------------------------------
   Floating Back-To-Top Trigger
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(13, 13, 15, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px var(--c-accent-glow);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Quick Connect Button
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 400;
  transition: all var(--transition-fast);
}

.whatsapp-float:hover {
  background: #20BA56;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 12px;
    bottom: 20px;
    left: 20px;
    border-radius: 50%;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}
