@font-face {
  font-family: 'Akkurat';
  src: url('../assets/fonts/Akkurat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Akkurat';
  src: url('../assets/fonts/Akkurat-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Akkurat';
  src: url('../assets/fonts/Akkurat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Akkurat';
  src: url('../assets/fonts/Akkurat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Akkurat';
  src: url('../assets/fonts/Akkurat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Akkurat';
  src: url('../assets/fonts/Akkurat-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Lust Pro Demi';
  src: url('../assets/fonts/LustProDemi.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

:root {
  --navy: #143c89;
  --gold: #a48f69;
  --gray: #706f6f;
  --cream: #f6f4ef;
  --font-sans: 'Akkurat', sans-serif;
  --font-serif: 'Lust Pro Demi', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  overflow-x: hidden;
}

/* header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 0 60px;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 0;
  height: 1px;
  background: #c2ad80;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-reach {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(22, 48, 92, 0.35);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--navy);
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
}

.site-header--static {
  position: relative;
  background: #fff;
}

/* side nav */
.side-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.side-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38.5%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-nav.is-open {
  pointer-events: auto;
}

.side-nav.is-open .side-nav-panel {
  transform: translateX(0);
}

.side-nav-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  height: 96px;
  padding: 0 60px;
  border-bottom: 1px solid #c2ad80;
}

.side-nav-exit {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 15px;
}

.side-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 52px;
  padding: 110px 60px 0;
}

.side-nav-links a {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s ease;
}

.side-nav-links a:hover {
  color: var(--gold);
}

.side-nav-social {
  display: flex;
  gap: 20px;
  padding: 0 60px 48px;
  justify-content: flex-end;
  color: var(--navy);
}

.side-nav-social a {
  color: var(--navy);
  display: flex;
  transition: color 0.25s ease;
}

.side-nav-social a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .side-nav-panel {
    width: 100%;
  }
  .side-nav-top {
    height: 74px;
    padding: 0 24px;
  }
  .side-nav-links {
    padding: 64px 24px 0;
    gap: 36px;
  }
  .side-nav-links a {
    font-size: 22px;
  }
  .side-nav-social {
    padding: 0 24px 32px;
  }
}

/* about header */
.about-header {
  background: #f5f4f2 url('../assets/images/about-header-bg.jpg') top right / cover no-repeat;
  padding: 130px 60px;
}

.about-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-header-left {
  display: flex;
  align-items: center;
  gap: 44px;
}

.about-header-eyebrow {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 12px;
}

.about-header-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-header-title-navy {
  color: var(--navy);
}

.about-header-title-gold {
  color: var(--gold);
}

.about-header-desc {
  flex: 0 0 auto;
  max-width: 340px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

@media (max-width: 900px) {
  .about-header {
    padding: 60px 24px;
  }
  .about-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .about-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .about-header-title {
    font-size: 34px;
  }
}

/* hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(to bottom, rgba(10, 20, 45, 0), rgba(8, 16, 38, 0.85));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 240px 0 0 60px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 110px;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.hero-title .line span,
.hero-title .line {
  color: var(--navy);
}

.hero-title .line-2 {
  color: var(--gold);
}

.hero-desc {
  margin-top: 28px;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* brief */
.brief {
  position: relative;
  background: #181f36;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 170px 24px 200px;
}

.brief-pattern {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  background-image: url('../assets/images/brief-pattern.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  mix-blend-mode: overlay;
  opacity: 0;
}

.brief-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.brief-title {
  font-size: 52px;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.from-left,
.from-right {
  display: inline-block;
}

.w-white {
  font-family: var(--font-sans);
  font-weight: 400;
  color: #fff;
}

.w-gold {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold);
}

.brief-desc {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .brief-title {
    font-size: 30px;
  }
  .brief-desc {
    bottom: 40px;
    padding: 0 24px;
    text-align: center;
  }
}

/* mixed-use */
.mixed-use {
  position: relative;
  background: #f3f2f0 url('../assets/images/mixed-use-bg.jpg') center/cover no-repeat;
  padding: 100px 24px;
}

.mu-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.mu-building {
  position: relative;
  flex: 0 0 auto;
  width: 42%;
  max-width: 500px;
}

.mu-building-img {
  display: block;
  width: 100%;
  height: auto;
}

.mu-anchor {
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mu-anchor.is-active {
  opacity: 1;
}

.mu-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.mu-line polyline {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.3;
}

.mu-line circle {
  fill: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mu-line.is-ready circle {
  opacity: 1;
}

.mu-content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-width: 0;
}

.mu-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.mu-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.mu-title-navy {
  color: var(--navy);
}

.mu-title-gold {
  color: var(--gold);
}

.mu-accordion {
  border-top: 1px solid rgba(166, 138, 91, 0.35);
}

.mu-item {
  border-bottom: 1px solid rgba(166, 138, 91, 0.35);
}

.mu-item-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: var(--navy);
  text-align: left;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mu-item.is-active .mu-item-head {
  background: var(--navy);
  color: #fff;
}

.mu-icon {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.mu-item.is-active .mu-icon {
  border-color: #fff;
}

.mu-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mu-icon i:nth-child(1) {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.mu-icon i:nth-child(2) {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.mu-item.is-active .mu-icon i {
  background: #fff;
}

.mu-item.is-active .mu-icon i:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.mu-item-body {
  display: grid;
  grid-template-rows: 0fr;
  padding-left: 20px;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mu-item.is-active .mu-item-body {
  grid-template-rows: 1fr;
}

.mu-item-body-inner {
  overflow: hidden;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
}

.mu-item-body p {
  align-self: center;
  padding: 20px 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.mu-item-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .mu-inner {
    flex-direction: column;
  }
  .mu-building {
    width: 70%;
    max-width: 320px;
  }
  .mu-line,
  .mu-anchor {
    display: none;
  }
  .mu-title {
    font-size: 32px;
  }
  .mu-item-body-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 74px;
    padding: 0 24px;
  }
  .site-header::after {
    left: 24px;
    right: 24px;
  }
  .hero-content {
    padding: 180px 24px 0;
  }
  .hero-title {
    font-size: 48px;
  }
  .nav .btn-reach {
    display: none;
  }
}

/* our development */
.dev {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.dev-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.dev-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.dev-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.15;
  text-transform: uppercase;
}

.dev-title-navy {
  color: var(--navy);
}

.dev-title-gold {
  color: var(--gold);
}

.dev-nav {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.dev-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.dev-arrow:hover {
  background: var(--navy);
  color: #fff;
}

.dev-track {
  --dev-inset: max(24px, calc((100vw - 1240px) / 2 + 24px));
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  margin-top: 56px;
  padding-right: 0;
}

.dev-track::-webkit-scrollbar {
  display: none;
}

.dev-card {
  position: relative;
  flex: 0 0 calc((100% - var(--dev-inset) - 72px) / 3.3);
  height: 548px;
  overflow: hidden;
}

.dev-card:first-child {
  margin-left: var(--dev-inset);
}

.dev-card-media {
  position: absolute;
  inset: 0;
}

.dev-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.dev-card:hover .dev-card-media img {
  transform: scale(1);
}

.dev-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #f2f2f2;
  border: 1px solid transparent;
  padding: 28px 28px 24px;
  transition: background 0.45s ease, border-color 0.45s ease;
}

.dev-card:hover .dev-card-info {
  background: #1c3b82 url('../assets/images/development/hover-bg.jpg') center/cover;
  border-color: #c2ad80;
}

.dev-card-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.35s ease;
}

.dev-card:hover .dev-card-title {
  color: #fff;
}

.dev-card-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gold);
  margin-top: 6px;
  transition: color 0.35s ease;
}

.dev-card:hover .dev-card-sub {
  color: #c2ad80;
}

.dev-card-cta-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.dev-card:hover .dev-card-cta-wrap {
  grid-template-rows: 1fr;
  margin-top: 20px;
}

.dev-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #c2ad80;
  color: #c2ad80;
  text-decoration: none;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.dev-card:hover .dev-card-cta {
  opacity: 1;
}

@media (max-width: 900px) {
  .dev-title {
    font-size: 30px;
  }
  .dev-track {
    margin-top: 32px;
  }
  .dev-card {
    flex-basis: calc((100% - var(--dev-inset) - 24px) / 1.15);
    height: auto;
    aspect-ratio: 384 / 548;
  }
}

/* about */
.about {
  position: relative;
  height: 220vh;
}

.about-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.about-frame {
  --about-inset-x: 7.9vw;
  --about-inset-y: 12vh;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: var(--about-inset-y) var(--about-inset-x);
}

.about-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.about-media {
  flex: 0 0 56.4%;
  position: relative;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  flex: 0 0 43.6%;
  position: relative;
  background: #153c89 url('../assets/images/about-right-bg.jpg') center/cover;
  padding: 90px 60px 60px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.about-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
}

.about-desc {
  margin-top: 28px;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.about-cta {
  margin-top: auto;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 40px;
  border: 1px solid #c2ad80;
  color: #c2ad80;
  text-decoration: none;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
}

@media (max-width: 900px) {
  .about {
    height: auto;
  }
  .about-sticky {
    position: static;
    height: auto;
  }
  .about-frame {
    padding: 0;
  }
  .about-box {
    flex-direction: column;
  }
  .about-media,
  .about-content {
    flex-basis: auto;
  }
  .about-media {
    height: 340px;
  }
  .about-content {
    padding: 48px 24px;
  }
  .about-title {
    font-size: 28px;
  }
  .about-cta {
    margin-top: 32px;
  }
}

/* awards */
.awards {
  padding: 110px 24px;
  background: #fff;
}

.awards-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.awards-left {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 8px;
}

.awards-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.awards-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.awards-title-navy {
  color: var(--navy);
}

.awards-title-gold {
  color: var(--gold);
}

.awards-list {
  list-style: none;
}

.awards-item-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 20px;
  border-radius: 2px;
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.awards-item-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #8a8a8a;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.awards-item-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #8a8a8a;
  display: none;
}

.awards-item.is-active .awards-item-btn {
  background: #f2f2f2;
  padding-left: 40px;
}

.awards-item.is-active .awards-item-title {
  color: var(--navy);
  font-size: 19px;
}

.awards-item.is-active .awards-item-sub {
  display: block;
}

.awards-right {
  flex: 0 0 508px;
}

.awards-right img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
}

@media (max-width: 900px) {
  .awards {
    padding: 64px 24px;
  }
  .awards-inner {
    flex-direction: column;
    gap: 40px;
  }
  .awards-title {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .awards-right {
    flex-basis: auto;
  }
}

/* news & events */
.news {
  padding: 110px 0 120px;
  background: #fff;
}

.news-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  text-transform: uppercase;
}

.news-title-navy {
  color: var(--navy);
}

.news-title-gold {
  color: var(--gold);
}

.news-nav {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.news-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.news-arrow:hover {
  background: var(--navy);
  color: #fff;
}

.news-track {
  --news-inset: max(24px, calc((100vw - 1240px) / 2 + 24px));
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  margin-top: 48px;
  padding-right: 0;
}

.news-track::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 calc((100% - var(--news-inset) - 72px) / 3.3);
  padding: 16px;
  margin: -16px;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.news-card:first-child {
  margin-left: calc(var(--news-inset) - 16px);
}

.news-card:hover {
  background: #f2f2f2;
}

.news-card-media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 7px 16px;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.08);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #8a8a8a;
}

.news-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-meta-dot {
  color: #c2ad80;
}

.news-card-title {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--navy);
}

.news-card-title a {
  color: inherit;
  text-decoration: none;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 3px;
}

.news-plus {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 900px) {
  .news {
    padding: 64px 0 80px;
  }
  .news-title {
    font-size: 30px;
  }
  .news-track {
    margin-top: 32px;
  }
  .news-card {
    flex-basis: calc((100% - var(--news-inset) - 24px) / 1.15);
  }
  .news-card-title {
    font-size: 16px;
  }
}

/* footer */
.footer {
  position: relative;
  background: #181f36 url('../assets/images/footer-bg.jpg') left top / 1440px 540px no-repeat;
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-logo {
  flex: 0 0 auto;
  display: block;
  margin-right: auto;
}

.footer-logo img {
  height: 68px;
  width: auto;
}

.footer-cols {
  display: flex;
  gap: 80px;
}

.footer-col {
  flex: 0 0 auto;
  max-width: 260px;
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 2px;
}

.footer-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.footer-text + .footer-text {
  margin-top: 16px;
}

.footer-top-btn {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.3px;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 40px;
  color: #fff;
}

.footer-social a {
  color: #fff;
  display: flex;
  transition: color 0.25s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(194, 173, 128, 0.35);
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
}

.footer-privacy {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .footer {
    background-size: 200% auto;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer-cols {
    flex-direction: column;
    gap: 28px;
  }
  .footer-top-btn {
    align-self: flex-start;
    flex-direction: row;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* about reveal */
.about-reveal {
  position: relative;
  height: 200vh;
}

.about-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.about-reveal-frame {
  --reveal-inset-x: 8.3vw;
  --reveal-inset-y: 12vh;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: var(--reveal-inset-y) var(--reveal-inset-x);
}

.about-reveal-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-reveal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-reveal,
  .about-reveal-sticky {
    height: auto;
  }
  .about-reveal-sticky {
    position: static;
  }
  .about-reveal-frame {
    padding: 0;
  }
}

/* architect title */
.architect-title {
  background: #fff url('../assets/images/architect-title-bg.jpg') right center / cover no-repeat;
  padding: 130px 60px;
}

.architect-title-heading {
  max-width: 1400px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.15;
  text-transform: uppercase;
}

.architect-title-navy {
  color: var(--navy);
}

.architect-title-gold {
  color: var(--gold);
}

@media (max-width: 900px) {
  .architect-title {
    padding: 64px 24px;
    background-size: 220% auto;
  }
  .architect-title-heading {
    font-size: 28px;
  }
}

/* architect detail */
.architect-detail {
  position: relative;
  height: 200vh;
}

.architect-detail-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.architect-detail-frame {
  --detail-inset-x: 5.3vw;
  --detail-inset-y: 6vh;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: var(--detail-inset-y) var(--detail-inset-x);
}

.architect-detail-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.architect-detail-media {
  flex: 0 0 56.25%;
  position: relative;
  overflow: hidden;
}

.architect-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.architect-detail-content {
  flex: 0 0 43.75%;
  position: relative;
  background: #153c89 url('../assets/images/architect-detail-bg.jpg') center/cover;
  padding: 70px 60px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #fff;
}

.architect-detail-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.architect-detail-text strong {
  font-weight: 700;
}

.architect-detail-credit {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.architect-detail-credit-label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gold);
}

.architect-detail-logos {
  display: flex;
  gap: 12px;
}

.architect-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 14px 22px;
  border-radius: 2px;
}

.architect-logo-kpf {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
}

.architect-logo-watg {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: #b5121b;
}

@media (max-width: 900px) {
  .architect-detail,
  .architect-detail-sticky {
    height: auto;
  }
  .architect-detail-sticky {
    position: static;
  }
  .architect-detail-frame {
    padding: 0;
  }
  .architect-detail-box {
    flex-direction: column;
  }
  .architect-detail-media,
  .architect-detail-content {
    flex-basis: auto;
  }
  .architect-detail-media {
    height: 320px;
  }
  .architect-detail-content {
    padding: 40px 24px;
  }
}

/* location */
.location {
  padding: 110px 60px;
  background: #fff;
}

.location-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.location-left {
  flex: 0 0 460px;
}

.location-right {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.location-right img {
  max-width: 100%;
  height: auto;
}

.location-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.location-title-navy {
  color: var(--navy);
}

.location-title-gold {
  color: var(--gold);
}

.location-item {
  margin-bottom: 4px;
}

.location-item-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 17px;
  text-align: left;
}

.location-chevron {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.location-item.is-active .location-chevron {
  transform: rotate(180deg);
}

.location-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-item.is-active .location-item-body {
  grid-template-rows: 1fr;
}

.location-item-body-inner {
  overflow: hidden;
}

.location-fact {
  padding: 18px 0;
  border-bottom: 1px solid rgba(194, 173, 128, 0.4);
  font-family: var(--font-sans);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--navy);
}

@media (max-width: 900px) {
  .location {
    padding: 64px 24px;
  }
  .location-inner {
    flex-direction: column;
    gap: 40px;
  }
  .location-left {
    flex-basis: auto;
  }
  .location-title {
    font-size: 30px;
    margin-bottom: 32px;
  }
}

/* moments (building) */
.moments {
  position: relative;
  height: 200vh;
}

.moments-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0c1420;
}

.moments-media {
  position: absolute;
  inset: 0;
}

.moments-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moments-img {
  transform: scale(1);
}

.moments-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.moments-subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.moments-title {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
}

.moments-title-base {
  color: rgba(255, 255, 255, 0.22);
}

.moments-title-fill {
  position: absolute;
  inset: 0;
  color: var(--gold);
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .moments {
    height: 100vh;
  }
  .moments-sticky {
    position: static;
  }
  .moments-title {
    font-size: 34px;
  }
  .moments-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .moments-img {
    transform: scale(1.1);
  }
  .moments-title-fill {
    clip-path: inset(0 0 0 0);
  }
}

/* tower */
.tower {
  position: relative;
  aspect-ratio: 1440 / 1030;
}

.tower-group {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.tower-group.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.tower-group--blue {
  background: var(--navy) url('../assets/images/tower/bg-autograph.jpg') center/cover no-repeat;
}

.tower-group--gold {
  background: var(--gold) url('../assets/images/tower/bg-luminary.jpg') center/cover no-repeat;
}

.tower-group .tower-visual-img,
.tower-group .tower-left {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.tower-group:not(.is-active) .tower-left {
  opacity: 0;
  transform: translateY(16px);
}

.tower-group[data-tower="autograph"]:not(.is-active) .tower-visual-img {
  opacity: 0;
  transform: translateX(-90px) scale(0.92);
}

.tower-group[data-tower="luminary"]:not(.is-active) .tower-visual-img {
  opacity: 0;
  transform: translateX(90px) scale(0.92);
}

.tower-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  box-sizing: border-box;
  padding: 90px 60px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.tower-left {
  flex: 0 0 453px;
}

.tower-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.tower-title-white {
  color: #fff;
}

.tower-group--blue .tower-title-accent {
  color: var(--gold);
}

.tower-group--gold .tower-title-accent {
  color: var(--navy);
}

.tower-card {
  width: 100%;
  aspect-ratio: 453 / 554;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  position: relative;
}

.tower-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.tower-facility {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.tower-facility-name {
  font-family: var(--font-sans);
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: opacity 0.25s ease;
}

.tower-facility-metric {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.tower-nav {
  flex: 0 0 auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tower-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.tower-arrow:hover {
  background: #fff;
}

.tower-group--blue .tower-arrow:hover {
  color: var(--navy);
}

.tower-group--gold .tower-arrow:hover {
  color: var(--gold);
}

.tower-visual {
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tower-visual-img {
  height: 82vh;
  max-height: 860px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.tower-switch {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
}

.tower-group--blue .tower-switch {
  color: var(--gold);
}

.tower-group--gold .tower-switch {
  color: var(--navy);
  right: auto;
  left: 60px;
}

.tower-group--gold .tower-left {
  order: 2;
}

.tower-group--gold .tower-nav {
  order: 3;
}

.tower-group--gold .tower-visual {
  order: 1;
}

@media (max-width: 900px) {
  .tower {
    aspect-ratio: auto;
    min-height: 0;
  }
  .tower-group {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .tower-group.is-active {
    display: block;
  }
  .tower-group--gold .tower-left,
  .tower-group--gold .tower-nav,
  .tower-group--gold .tower-visual {
    order: initial;
  }
  .tower-group--gold .tower-switch {
    left: auto;
    right: auto;
  }
  .tower-group:not(.is-active) .tower-left,
  .tower-group .tower-left {
    opacity: 1;
    transform: none;
  }
  .tower-group[data-tower="autograph"]:not(.is-active) .tower-visual-img,
  .tower-group[data-tower="luminary"]:not(.is-active) .tower-visual-img,
  .tower-group .tower-visual-img {
    opacity: 1;
    transform: none;
  }
  .tower-inner {
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 60px;
    gap: 20px;
  }
  .tower-left {
    flex-basis: auto;
    width: 100%;
    max-width: 340px;
  }
  .tower-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .tower-nav {
    flex-direction: row;
    align-self: center;
  }
  .tower-visual-img {
    height: auto;
    width: 80%;
    max-width: 300px;
  }
  .tower-switch {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

/* pgw */
.pgw {
  display: flex;
  min-height: 100vh;
}

.pgw-media {
  flex: 0 0 42%;
}

.pgw-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pgw-content {
  flex: 1 1 auto;
  min-width: 0;
  background: #e4e4e6 url('../assets/images/pgw-bg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px;
}

.pgw-logo {
  width: 110px;
  height: auto;
}

.pgw-text {
  max-width: 640px;
}

.pgw-eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.pgw-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
}

.pgw-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

@media (max-width: 900px) {
  .pgw {
    flex-direction: column;
    min-height: 0;
  }
  .pgw-media {
    flex-basis: auto;
    height: 320px;
  }
  .pgw-content {
    padding: 48px 24px;
    gap: 40px;
  }
  .pgw-title {
    font-size: 20px;
  }
}

/* facilities */
.facilities {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.facilities-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.facilities-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.facilities-title-navy {
  color: var(--navy);
}

.facilities-title-gold {
  color: var(--gold);
}

.facilities-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.facilities-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: facilities-scroll 22s linear infinite;
}

.facilities-marquee:hover .facilities-track {
  animation-play-state: paused;
}

.facility-card {
  position: relative;
  flex: 0 0 auto;
  width: 420px;
  aspect-ratio: 1812 / 1140;
  overflow: hidden;
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facility-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
}

.facility-label span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@keyframes facilities-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .facilities {
    padding: 64px 0;
  }
  .facilities-inner {
    padding: 0 24px;
  }
  .facilities-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .facility-card {
    width: 280px;
  }
}

/* news header variants */
.about-header--compact {
  padding: 90px 60px;
}

.about-header-title--inline {
  white-space: nowrap;
}

/* news list */
.news-list {
  background: #fff;
  padding: 90px 0 120px;
}

.news-list-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-tabs {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid rgba(22, 48, 92, 0.15);
  margin-bottom: 48px;
}

.news-tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #8a8a8a;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.news-tab:hover {
  color: var(--navy);
}

.news-tab.is-active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.news-list-card.is-hidden {
  display: none;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
}

.news-page-count {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.news-page-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.news-page-arrow:hover:not(:disabled) {
  background: var(--navy);
  color: #fff;
}

.news-page-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 900px) {
  .news-tabs {
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* article */
.article-header {
  background: var(--navy);
  padding: 70px 60px;
}

.article-header-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.article-header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: background 0.25s ease;
}

.article-back:hover {
  background: rgba(255, 255, 255, 0.1);
}

.article-header .news-badge {
  position: static;
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
}

.article-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-meta {
  color: rgba(255, 255, 255, 0.7);
}

.article-meta .news-meta-dot {
  color: #c2ad80;
}

.article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px 110px;
  font-family: var(--font-sans);
  color: #2a2a2a;
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 2px;
  margin-bottom: 36px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--navy);
  text-transform: uppercase;
  margin: 48px 0 24px;
}

.article-body ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-body li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--navy);
}

@media (max-width: 900px) {
  .article-header {
    padding: 48px 24px;
  }
  .article-title {
    font-size: 24px;
  }
  .article-body {
    padding: 48px 24px 70px;
  }
  .article-body h2 {
    font-size: 21px;
  }
}
