body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-text);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

@media (min-width: 1440px) {
  .container {
    padding: 0;
  }
}

/* ==============================
   HEADER / NAV
   ============================== */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 40px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 42px;
  width: auto;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-nav);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-nav);
  transition: color 0.3s;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--color-gold);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background-color: var(--color-gold);
  color: var(--color-nav);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: #c48a3e;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  padding: 4px 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 6, 19, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    gap: 16px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ==============================
   HERO
   ============================== */

.hero {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero-tagline {
  position: absolute;
  top: 243px;
  left: 0;
  width: 578px;
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

.hero-title {
  position: absolute;
  top: 630px;
  left: 0;
  width: 100%;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 95px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transform: scaleY(1.74);
  transform-origin: left top;
}

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

.hero-title .hero-title-line {
  color: var(--color-text);
  display: block;
  font-size: 1em;
}

.hero-subtitle {
  position: absolute;
  top: 840px;
  left: 508px;
  width: 590px;
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

.btn-cta-hero {
  display: none;
}

.mobile-lang-switcher {
  display: none;
}

/* ==============================
   ABOUT SECTION
   ============================== */

.about {
  padding: 120px 0 82px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 70px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 50px;
}

.section-title em {
  font-style: normal;
}

.about-block {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.about-text {
  width: 590px;
  flex-shrink: 0;
}

.about-text h3 {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-text p {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}

.about-image {
  width: 590px;
  height: 400px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.about-block-reverse {
  display: flex;
  gap: 22px;
  align-items: center;
}

.about-images-group {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-shrink: 0;
}

.about-img-large {
  width: 387px;
  height: 362px;
  overflow: hidden;
}

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

.about-img-small {
  width: 184px;
  height: 184px;
  overflow: hidden;
}

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

.about-text-right {
  width: 587px;
  flex-shrink: 0;
}

.about-text-right h3 {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-text-right p {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}

/* ==============================
   SERVICES SECTION
   ============================== */

.services {
  padding: 82px 0 120px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.services-row {
  display: flex;
  gap: 21px;
  width: 100%;
}

.services-row-2 {
  gap: 22px;
}

.service-card {
  position: relative;
  flex: 1;
  min-height: 309px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  overflow: hidden;
}

.service-card--purple {
  background-color: var(--color-purple);
}

.service-card--gold {
  background-color: var(--color-gold);
}

.service-card--image {
  background-size: cover;
  background-position: center;
}

.service-card--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.service-card--image-dark::before {
  background: rgba(0, 0, 0, 0.5);
}

.service-card--center {
  width: 587px;
  flex: none;
}

.service-card .service-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
}

.service-card .service-icon img {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  text-transform: uppercase;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
}

/* ==============================
   RECENT WORKS
   ============================== */

.works {
  padding: 120px 0 80px;
}

.works-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 61px;
  margin-top: 50px;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}

.carousel-arrow:hover {
  opacity: 0.7;
}

.carousel-arrow img {
  width: 100%;
  height: 100%;
}

.carousel-track {
  width: 794px;
  height: 445px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, 0.2);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-white);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
}

.carousel-dot.active {
  opacity: 1;
}

/* ==============================
   CONTACT / CONSULTATION
   ============================== */

.consultation {
  padding: 120px 0;
}

.consultation-inner {
  display: flex;
  gap: 23px;
  align-items: stretch;
}

.consultation-image {
  flex: 1;
  min-width: 0;
  height: 466px;
  overflow: hidden;
}

.consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-form {
  flex: 1;
  min-width: 0;
  background-color: var(--color-gold);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.consultation-form h2 {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
  text-transform: uppercase;
  text-align: center;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  width: 100%;
  height: 62px;
  padding: 16px 20px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
}

.form-field::placeholder {
  color: var(--color-black);
  opacity: 1;
}

.form-submit {
  width: 100%;
  height: 62px;
  padding: 16px 20px;
  background: var(--color-purple);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-submit:hover {
  background-color: #5a2d6f;
}

/* ==============================
   FOOTER
   ============================== */

.footer {
  background-color: var(--color-purple);
  padding: 120px 0 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

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

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

.footer-nav a {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-nav);
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 25px;
  height: 25px;
  display: block;
}

.footer-social a img {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  margin-top: 50px;
  width: 100%;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--color-white);
}

.footer-credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: underline;
  color: var(--color-white);
  transition: color 0.3s;
}

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

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1280px) {
  .hero {
    height: 800px;
  }

  .hero-tagline {
    top: 180px;
    width: 50%;
    font-size: 26px;
  }

  .hero-title {
    top: 420px;
  }

  .hero-subtitle {
    top: 600px;
    left: auto;
    right: 0;
    width: 50%;
    font-size: 26px;
  }

  .section-title {
    font-size: 60px;
  }

  .about-block,
  .about-block-reverse {
    flex-direction: column;
  }

  .about-text,
  .about-image,
  .about-text-right {
    width: 100%;
  }

  .about-image {
    height: 350px;
  }

  .about-images-group {
    width: 100%;
  }

  .about-img-large {
    flex: 2;
    height: 300px;
  }

  .about-img-small {
    flex: 1;
    height: 184px;
    align-self: flex-end;
  }

  .carousel-track {
    width: 60vw;
    height: 380px;
  }

  .works-carousel {
    gap: 30px;
  }
}

@media (max-width: 960px) {
  .services-row {
    flex-direction: column;
  }

  .service-card--center {
    width: 100%;
  }

  .consultation-inner {
    flex-direction: column;
  }

  .consultation-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* --- HEADER mobile --- */
  .header {
    padding: 20px 0;
  }

  .nav-links,
  .nav-right .lang-switcher,
  .nav-right .btn-cta {
    display: none;
  }

  .nav-links.open .btn-cta {
    display: inline-flex;
  }

  .nav-links.open .mobile-lang-switcher {
    display: flex;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-lang-switcher a {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-nav);
    transition: color 0.3s;
  }

  .mobile-lang-switcher a:hover,
  .mobile-lang-switcher a.active {
    color: var(--color-gold);
  }

  .menu-toggle {
    display: flex;
    width: 18px;
    gap: 4px;
  }

  .menu-toggle span {
    height: 1.5px;
  }

  .nav-right {
    gap: 0;
  }

  .header-logo img {
    height: 17px;
    width: 75px;
  }

  /* --- HERO mobile --- */
  .hero {
    height: 700px;
  }

  .hero-tagline {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 154px;
    height: auto;
  }

  .hero-title {
    position: relative;
    top: auto;
    left: auto;
    font-size: clamp(40px, 13.6vw, 49px);
    transform: scaleY(1.55);
    transform-origin: left top;
    line-height: 1.05;
    letter-spacing: -0.01em;
    width: 100%;
    margin-bottom: 95px;
  }

  .hero-subtitle {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .hero-content .btn-cta-hero {
    display: inline-flex;
    align-self: flex-start;
    padding: 10px 15px;
    background-color: var(--color-gold);
    color: var(--color-nav);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
  }

  /* --- ABOUT mobile --- */
  .about {
    padding: 80px 0 60px;
  }

  .section-title {
    font-size: 50px;
    margin-bottom: 24px;
    line-height: 1;
  }

  .about-block {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .about-text,
  .about-text-right {
    width: 100%;
  }

  .about-text h3,
  .about-text-right h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .about-text p,
  .about-text-right p {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-image {
    width: 100%;
    height: 148px;
  }

  .about-block-reverse {
    flex-direction: column;
    gap: 10px;
  }

  .about-block-reverse .about-text-right {
    order: -1;
  }

  .about-text-right h3 {
    margin-bottom: 20px;
  }

  .about-images-group {
    width: 100%;
    gap: 3%;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .about-img-large {
    width: 74.4%;
    height: auto;
    aspect-ratio: 244 / 148;
    flex: none;
  }

  .about-img-small {
    width: 22.6%;
    height: auto;
    aspect-ratio: 1;
    flex: none;
  }

  /* --- SERVICES mobile --- */
  .services {
    padding: 60px 0 80px;
  }

  .services-row {
    flex-direction: column;
    gap: 10px;
  }

  .service-card {
    min-height: 215px;
    padding: 10px;
    gap: 20px;
  }

  .service-card--center {
    width: 100%;
  }

  .service-card .service-icon {
    width: 25px;
    height: 25px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 16px;
  }

  .services-grid {
    gap: 10px;
  }

  /* --- CAROUSEL / WORKS mobile --- */
  .works {
    padding: 80px 0 60px;
  }

  .works .section-title {
    text-align: center;
  }

  .works-carousel {
    gap: 10px;
    margin-top: 24px;
  }

  .carousel-arrow {
    width: 21px;
    height: 21px;
  }

  .carousel-track {
    width: 264px;
    height: 148px;
    flex-shrink: 0;
  }

  .carousel-dots {
    margin-top: 10px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  /* --- CONSULTATION mobile --- */
  .consultation {
    padding: 60px 0;
  }

  .consultation-inner {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .consultation-image {
    height: 148px;
    flex: none;
  }

  .consultation-form {
    padding: 20px;
    gap: 24px;
    flex: none;
  }

  .consultation-form h2 {
    font-size: 20px;
    text-align: center;
  }

  .form-fields {
    gap: 10px;
  }

  .form-field {
    height: auto;
    padding: 10px 15px;
    font-size: 16px;
  }

  .form-submit {
    height: auto;
    padding: 10px 15px;
    font-size: 16px;
  }

  /* --- FOOTER mobile --- */
  .footer {
    padding: 60px 0 20px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo img {
    height: 36px;
    width: 159px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
  }

  .footer-nav a {
    font-size: 16px;
  }

  .footer-social {
    margin-top: 0;
  }

  .footer-bottom {
    margin-top: 25px;
  }

  .footer-credits {
    font-size: 16px;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .footer-credits > span {
    width: 155px;
    flex-shrink: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    text-align: right;
  }

  .footer-links a {
    font-size: 16px;
  }
}
