:root {
  --ink: #0f1b2e;
  --ink-soft: #1b2d4a;
  --mist: #eef3fb;
  --gold: #4c92ff;
  --gold-strong: #2b6fe6;
  --steel: #6b7f9d;
  --hero-overlay: rgba(10, 20, 35, 0.6);
  --hero-overlay-strong: rgba(8, 16, 30, 0.78);
  --shadow: 0 25px 60px rgba(10, 20, 35, 0.35);
  --radius: 22px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink-soft);
  background: radial-gradient(circle at top, #f2f6fb 0%, #e3eaf5 55%, #d3deee 100%);
  min-height: 100vh;
}

.section__eyebrow {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}

.hero {
  position: relative;
  color: var(--mist);
  min-height: 100vh;
  padding: 38px clamp(24px, 5vw, 90px) 70px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.9) contrast(1.1) brightness(0.7);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--hero-overlay-strong) 10%, var(--hero-overlay) 60%);
  z-index: 1;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(16px, 1.4vw, 20px);
}
.nav__brand img {
  height: 100px;
  width: auto;
}
.nav__links {
  list-style: none;
  display: flex;
  gap: clamp(18px, 2.6vw, 40px);
  align-items: center;
}

.nav__links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
  transition: var(--transition);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__links a:hover::after,
.nav__links a:focus::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 10, 15, 0.5);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mist);
  transition: var(--transition);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: grid;
  gap: 24px;
  margin-top: 16vh;
  animation: fadeRise 0.9s ease forwards;
}

.hero__eyebrow {
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 1.05;
}

.hero__subtitle {
  color: rgba(246, 243, 239, 0.85);
  font-size: clamp(16px, 2.1vw, 22px);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--secondary {
  border: 1px solid rgba(16, 23, 34, 0.2);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
}

.btn--secondary:hover {
  border-color: var(--gold-strong);
  color: var(--gold-strong);
}

.btn--ghost {
  border: 1px solid rgba(246, 243, 239, 0.45);
  color: var(--mist);
  background: rgba(7, 10, 15, 0.35);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__scroll {
  position: relative;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.7);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__scroll::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(246, 243, 239, 0.4);
}

.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(60px, 10vw, 110px) clamp(24px, 5vw, 90px);
  background: radial-gradient(circle at 20% 20%, rgba(76, 146, 255, 0.14), transparent 55%),
    #edf1f7;
  border-top: 1px solid rgba(12, 16, 22, 0.08);
}

.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(9, 12, 18, 0.2));
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__content {
  display: grid;
  gap: 20px;
  align-content: center;
}

.about__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
}

.about__content p {
  color: rgba(27, 36, 48, 0.78);
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}

.services {
  padding: clamp(60px, 10vw, 110px) clamp(24px, 5vw, 90px);
  background: radial-gradient(circle at 10% 10%, rgba(76, 146, 255, 0.18), transparent 55%),
    linear-gradient(120deg, #f4f7fb 0%, #eaf0f7 100%);
  border-top: 1px solid rgba(12, 16, 22, 0.08);
}

.services__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 2.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.services__header {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.services__header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
}

.services__lead {
  color: rgba(27, 36, 48, 0.78);
  line-height: 1.7;
  text-align: justify;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(215, 176, 107, 0.2), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(76, 146, 255, 0.2), rgba(255, 255, 255, 0));
  color: var(--gold-strong);
  border: 1px solid rgba(76, 146, 255, 0.25);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p {
  color: rgba(27, 36, 48, 0.78);
  line-height: 1.7;
}

.success {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(60px, 10vw, 110px) clamp(24px, 5vw, 90px);
  background: #edf1f7;
  border-top: 1px solid rgba(12, 16, 22, 0.08);
}

.success__content {
  display: grid;
  gap: 18px;
  align-content: center;
}

.success__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
}

.success__content p {
  color: rgba(27, 36, 48, 0.8);
  line-height: 1.75;
}

.success__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0c1016;
  min-height: 320px;
  max-height: 600px;
}

.success__media video {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.partners {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(60px, 10vw, 110px) clamp(24px, 5vw, 90px);
  background: #f3f6fb;
  border-top: 1px solid rgba(12, 16, 22, 0.08);
}

.partners__content {
  display: grid;
  gap: 18px;
  align-content: center;
}

.partners__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
}

.partners__content p {
  color: rgba(27, 36, 48, 0.78);
  line-height: 1.7;
}

.partners__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(12, 16, 22, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 0;
}

.partners__media img {
  width: 100%;
  height: auto;
  display: block;
}

.presence {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(60px, 10vw, 110px) clamp(24px, 5vw, 90px);
  background: #eef3f9;
  border-top: 1px solid rgba(12, 16, 22, 0.08);
}

.presence__header {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.presence__header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
}

.presence__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(12, 16, 22, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.presence__media img {
  width: 100%;
  height: auto;
  display: block;
}

.footer {
  background: #0b1626;
  color: #eef3fb;
  padding: clamp(50px, 8vw, 90px) clamp(24px, 5vw, 90px) 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(246, 243, 239, 0.12);
}

.footer__col h3 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer__links a {
  color: rgba(246, 243, 239, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__top {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.18em;
}

.footer__top:hover {
  color: #ffffff;
}

.contact-hero {
  padding: 32px clamp(24px, 5vw, 90px) 60px;
  background: linear-gradient(120deg, rgba(76, 146, 255, 0.12), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(12, 16, 22, 0.08);
}

.contact-hero__content {
  margin-top: 10vh;
  max-width: 640px;
  display: grid;
  gap: 12px;
}

.contact-hero__content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
}

.contact-page {
  padding: clamp(50px, 8vw, 100px) clamp(24px, 5vw, 90px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
}

.contact-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: stretch;
}

.contact-item__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 16, 22, 0.08);
  background: #ffffff;
  min-height: 320px;
}

.contact-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
  display: grid;
  gap: 14px;
}

.contact-card h2 {
  font-size: 22px;
  font-family: "Playfair Display", serif;
}

.contact-card p {
  color: rgba(27, 36, 48, 0.7);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form__row {
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 23, 34, 0.12);
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(199, 154, 71, 0.6);
  box-shadow: 0 0 0 3px rgba(199, 154, 71, 0.18);
}

.contact-form .alert {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid transparent;
}

.contact-form .alert--success {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.35);
  color: #1b5e20;
}

.contact-form .alert--error {
  background: rgba(198, 40, 40, 0.12);
  border-color: rgba(198, 40, 40, 0.35);
  color: #b71c1c;
}

.projects {
  padding: clamp(60px, 10vw, 110px) clamp(24px, 5vw, 90px);
  background: #f3f6fb;
  border-top: 1px solid rgba(12, 16, 22, 0.08);
}

.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.projects__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.projects__controls {
  display: flex;
  gap: 10px;
}

.projects__button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(16, 23, 34, 0.2);
  background: #ffffff;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.projects__button:hover {
  border-color: var(--gold-strong);
  color: var(--gold-strong);
}

.projects__header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
}

.projects__slider {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.projects__track {
  display: flex;
  gap: clamp(12px, 1.6vw, 18px);
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.projects__track::-webkit-scrollbar {
  display: none;
}

.project-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(12, 16, 22, 0.08);
  box-shadow: 0 22px 50px rgba(12, 16, 22, 0.08);
  display: grid;
  flex: 0 0 calc((100% - clamp(12px, 1.6vw, 18px) * 2) / 3);
  scroll-snap-align: start;
}

.project-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.04);
}

.project-card__content {
  padding: 14px 16px 16px;
  display: grid;
  gap: 12px;
}

.project-card__content h3 {
  font-size: 16px;
}

.project-card__content p {
  color: rgba(27, 36, 48, 0.78);
  line-height: 1.55;
  font-size: 12px;
}

.project-card__link {
  color: var(--gold-strong);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav--light .nav__links a {
  color: var(--ink-soft);
}

.nav--light .nav__links a::after {
  background: var(--gold-strong);
}

.nav--light .nav__toggle {
  border-color: rgba(16, 23, 34, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.nav--light .nav__toggle span {
  background: var(--ink-soft);
}

.nav--light .nav__brand img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(19%) saturate(1110%) hue-rotate(183deg)
    brightness(92%) contrast(90%);
}

.about-hero {
  padding: 32px clamp(24px, 5vw, 90px) 70px;
  background: linear-gradient(120deg, rgba(76, 146, 255, 0.12), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(12, 16, 22, 0.08);
}

.about-hero__content {
  margin-top: 10vh;
  max-width: 680px;
  display: grid;
  gap: 14px;
}

.about-hero__content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.about-page {
  padding: clamp(50px, 8vw, 100px) clamp(24px, 5vw, 90px);
  display: grid;
  gap: clamp(50px, 9vw, 110px);
}

.about-page--refined > section {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  padding: clamp(26px, 4vw, 50px);
  box-shadow: 0 24px 55px rgba(12, 16, 22, 0.08);
  overflow: hidden;
}

.about-page--refined > section.interviews {
  overflow: visible;
}

.about-page--refined > section > * {
  position: relative;
  z-index: 1;
}

.about-page--refined > section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(76, 146, 255, 0.18), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.about-split__content {
  display: grid;
  gap: 16px;
  color: rgba(27, 36, 48, 0.82);
  line-height: 1.75;
  text-align: justify;
}

.about-split__content p {
  max-width: 62ch;
}

.about-split--chairman .about-split__content {
  position: relative;
  z-index: 1;
}

.about-split__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.8vw, 32px);
  margin-top: 6px;
}

.about-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.about-list--cols {
  column-count: 2;
  column-gap: 22px;
}

.about-list--cols li {
  break-inside: avoid;
  margin-bottom: 6px;
}

.about-split__side {
  display: grid;
  gap: 24px;
}

.about-split__panel {
    padding: 15px 0px;
    max-width: 100%;
    margin-left: auto;
    display: grid;
    gap: 0px;
    color: rgba(27, 36, 48, 0.82);
    line-height: 1.4;
    text-align: left;
}

.about-split__panel .about-list {
  gap: 0px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.3;
}

.about-split__media,
.vision__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 16, 22, 0.08);
  background: #ffffff;
}

.about-split__media img,
.vision__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.vision__content {
  display: grid;
  gap: 16px;
  color: rgba(27, 36, 48, 0.82);
  line-height: 1.75;
}

.vision__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
}

.timeline {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.timeline__header {
  display: grid;
  gap: 12px;
  max-width: 720px;
  color: rgba(27, 36, 48, 0.82);
}

.timeline__header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.2;
}

.timeline__track {
  position: relative;
  overflow: hidden;
  padding: 6px 0 0;
}

.timeline__list {
  list-style: none;
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  position: relative;
  padding: 0;
}

.timeline__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(199, 154, 71, 0.35), rgba(199, 154, 71, 0.95));
  border-radius: 999px;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(24px, 4vw, 60px);
  padding: 10px 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid rgba(199, 154, 71, 0.95);
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(199, 154, 71, 0.12);
  transform: translate(-50%, -50%);
  animation: timelinePulse 2.6s ease-in-out infinite;
}

.timeline__year {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.timeline__title {
  font-size: 14px;
  color: rgba(27, 36, 48, 0.82);
  line-height: 1.6;
}

.interviews {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  overflow: visible;
}

.interviews__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 16, 22, 0.08);
  background: #ffffff;
  min-height: 320px;
  position: sticky;
  top: 24px;
}

.interviews__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interviews__content {
  display: grid;
  gap: 16px;
  color: rgba(27, 36, 48, 0.82);
  line-height: 1.7;
}

.interviews__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.2;
}

.interviews__list {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.interviews__item {
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  box-shadow: 0 16px 35px rgba(12, 16, 22, 0.08);
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.interviews__item:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 146, 255, 0.45);
  box-shadow: 0 20px 45px rgba(12, 16, 22, 0.12);
}

.interviews__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.interviews__title {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(27, 36, 48, 0.85);
}

.timeline__item > .timeline__year,
.timeline__item > .timeline__title {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  box-shadow: 0 16px 35px rgba(12, 16, 22, 0.08);
  padding: 12px 16px;
  animation: timelineFloat 700ms ease both, timelineGlow 4s ease-in-out infinite;
}

.timeline__item:nth-child(odd) > .timeline__year,
.timeline__item:nth-child(odd) > .timeline__title {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.timeline__item:nth-child(even) > .timeline__year,
.timeline__item:nth-child(even) > .timeline__title {
  grid-column: 2;
  justify-self: start;
  text-align: left;
}

.timeline__item:nth-child(odd) > .timeline__title {
  margin-top: 6px;
}

.timeline__item:nth-child(even) > .timeline__title {
  margin-top: 6px;
}

@keyframes timelineFloat {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes timelineGlow {
  0%,
  100% {
    box-shadow: 0 16px 35px rgba(12, 16, 22, 0.08);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 20px 45px rgba(12, 16, 22, 0.12);
    transform: translateY(-2px);
  }
}

@keyframes timelinePulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(199, 154, 71, 0.12);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(199, 154, 71, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline__item::before,
  .timeline__item > .timeline__year,
  .timeline__item > .timeline__title {
    animation: none;
  }
}

.projects-hero {
  padding: 32px clamp(24px, 5vw, 90px) 60px;
  background: linear-gradient(120deg, rgba(76, 146, 255, 0.12), rgba(255, 255, 255, 0.85));
  border-bottom: 1px solid rgba(12, 16, 22, 0.08);
}

.projects-hero__content {
  max-width: 720px;
  margin-top: 10vh;
  display: grid;
  gap: 16px;
}

.projects-hero__content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 56px);
}

.projects-hero__content p {
  color: rgba(27, 36, 48, 0.75);
}

.projects-page {
  padding: clamp(50px, 8vw, 100px) clamp(24px, 5vw, 90px);
}

.projects-page__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.projects-page__header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 40px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.projects-empty {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 16, 22, 0.08);
  padding: 28px;
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.project-details {
  padding: clamp(50px, 8vw, 100px) clamp(24px, 5vw, 90px);
  display: grid;
  gap: clamp(40px, 8vw, 90px);
}

.project-details__overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.project-details__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 16, 22, 0.08);
  background: #ffffff;
  min-height: 320px;
}

.project-details__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-details__content {
  display: grid;
  gap: 18px;
}

.project-details__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.15;
}

.project-details__description {
  color: rgba(27, 36, 48, 0.82);
  line-height: 1.75;
  display: grid;
  gap: 12px;
}

.project-details__description ul,
.project-details__description ol {
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.project-details__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.project-details__gallery {
  display: grid;
  gap: 18px;
}

.project-details__gallery-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 40px);
}

.project-details__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.project-details__gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
}


.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.stat {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(12, 16, 22, 0.08);
  box-shadow: 0 18px 35px rgba(11, 15, 20, 0.08);
  display: grid;
  gap: 6px;
}

.stat__value {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--ink);
}

.stat__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(27, 36, 48, 0.7);
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__media {
    min-height: 280px;
  }

  .about__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__inner {
    grid-template-columns: 1fr;
  }

  .services__header {
    position: static;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .success {
    grid-template-columns: 1fr;
  }

  .about-split,
  .vision {
    grid-template-columns: 1fr;
  }

  .about-split__panel {
    max-width: none;
    margin-left: 0;
  }

  .about-list--cols {
    column-count: 1;
  }

  .interviews {
    grid-template-columns: 1fr;
  }

  .contact-item {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-details__overview {
    grid-template-columns: 1fr;
  }

  .project-details__gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav__links {
    position: absolute;
    top: 64px;
    right: 0;
    background: rgba(8, 12, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    min-width: 220px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav--light .nav__links a {
    color: var(--mist);
  }

  .nav--light .nav__links a::after {
    background: rgba(255, 255, 255, 0.7);
  }

  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    box-shadow: 0 12px 24px rgba(8, 16, 30, 0.35);
    backdrop-filter: blur(6px);
    gap: 6px;
  }

  .nav__toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(76, 146, 255, 0.45);
  }

  .nav__toggle:active {
    transform: translateY(1px) scale(0.98);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 28px 20px 56px;
  }

  .hero__content {
    margin-top: 12vh;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-card {
    flex: 0 0 80%;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-details__gallery-grid {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }
}
