@font-face {
  font-family: "TT Norms";
  src: url("../fonts/tt-norms-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --primary: #111827;
  --secondary: #4b5563;
  --accent: #c5a059;
  --accent-light: #dfc185;
  --light: #f9fafb;
  --lighter: #ffffff;
  --off-white: #fafafa;
  --text: #111827;
  --gray: #6b7280;
  --border: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "TT Norms", sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TT Norms", sans-serif;
  font-weight: normal;
  line-height: 1.2;
}

a,
button,
input,
textarea {
  font-family: "TT Norms", sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.carousel-wrapper,
.carousel-slide {
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
}

.carousel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
  color: #e5e7eb;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--light);
  width: 30px;
  border-radius: 6px;
}

.about-section {
  padding: 120px 0;
  background: var(--lighter);
  color: var(--primary);
  overflow: hidden;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: nowrap;
}

.about-text {
  flex: 1;
  max-width: 450px;
  text-align: left;
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 30px;
}

.about-visual {
  flex: 1.5;
  min-width: 550px;
}

.flipbook-wrapper {
  position: relative;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.flipbook-wrapper:hover {
  transform: scale(1.02);
  border-color: var(--accent);
}

.flipbook-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.flipbook-hint {
  text-align: center;
  margin-top: 20px;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.gold-label {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.projects-section {
  padding: 100px 0;
  background: var(--off-white);
}

.section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.section-subtitle {
  text-align: center;
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.project-card {
  background: var(--lighter);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: left;
  border-radius: 0;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-info {
  padding: 25px 20px;
}

.project-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary);
  transition: color 0.3s;
}

.project-card:hover .project-info h3 {
  color: var(--accent);
}

.project-location {
  color: var(--secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-year {
  color: var(--accent);
  font-weight: 700;
  margin-top: 5px;
}

.btn-gold {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.btn-gold:hover {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9) !important;
}

.btn-gold-dark {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.btn-gold-dark:hover {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9) !important;
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: 50px;
}

.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--lighter) !important;
}

.project-detail {
  padding: 60px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.project-header {
  margin-bottom: 40px;
  text-align: center;
}

.project-header h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}

.project-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-item {
  font-weight: 600;
  color: var(--accent);
}

.project-main-image {
  margin-bottom: 50px;
  overflow: hidden;
}

.project-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.project-description h2,
.project-gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.project-description p {
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-link {
  letter-spacing: 1px;
  font-size: 14px !important;
}

.cta-section {
  padding: 120px 0;
  background:
    linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9)),
    url("../images/hero-2.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: white;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  background: var(--secondary);
  color: white;
  padding: 80px 0 0 0;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.8));
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  max-width: 320px;
}

.footer-section h4 {
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 15px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
  transform: translateX(8px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-wa-global {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
  z-index: 9999;
  transition: all 0.3s ease;
}

.btn-wa-global:hover {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px) scale(1.05);
}

.btn-wa-global svg {
  width: 35px;
  height: 35px;
  fill: #25d366;
}

.spacer {
  width: 100%;
  height: 10vh;
}

.arch-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title-dark {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: var(--primary);
  text-align: center;
}

.section-title-dark::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.arch {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  position: relative;
}

.arch__left {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.arch__info {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.arch__right {
  width: 55%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
}

.img-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 65vh;
  border-radius: 0px !important;
  overflow: visible !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.arch__info h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--primary);
  line-height: 1.2;
}

.arch__info p.meta {
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.arch__info p.desc {
  font-size: 20px;
  color: var(--primary);
  line-height: 1.8;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .about-text {
    text-align: center;
    max-width: 100%;
  }
  .about-visual {
    width: 100%;
    min-width: 100%;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }
  .footer-tagline {
    margin: 0 auto;
  }
  .footer-section a:hover {
    transform: translateY(-3px);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .carousel-content h1 {
    font-size: 32px !important;
    letter-spacing: 5px !important;
    margin-bottom: 10px;
    padding: 0 10px;
  }
  .carousel-content p {
    font-size: 13px !important;
    letter-spacing: 2px !important;
  }
  .projects-grid {
    margin-top: 0;
    padding-top: 10px;
  }
  .arch {
    gap: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .arch__left {
    width: 50%;
  }
  .arch__right {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  .arch__info {
    min-height: 100vh;
    justify-content: center;
  }
  .arch__info h2 {
    font-size: 25px;
    margin-bottom: 10px;
    word-wrap: break-word;
  }
  .arch__info p.meta {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .arch__info p.desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .img-wrapper {
    height: 45vh;
    border-radius: 0px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .arch__info .btn-gold-dark {
    padding: 8px 16px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .carousel-content h1 {
    font-size: 24px !important;
    letter-spacing: 3px !important;
  }
  .arch__info h2 {
    font-size: 14px;
  }
  .arch__info p.desc {
    font-size: 11px;
    -webkit-line-clamp: 8;
  }
  .arch__info p.meta {
    font-size: 8px;
    margin-bottom: 5px;
  }
  .img-wrapper {
    height: 40vh;
  }
  .btn-gold-dark {
    padding: 5px;
    font-size: small;
  }
  .about-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 15px;
  }
  .about-text {
    width: 100%;
  }
  .about-text .gold-label {
    font-size: 10px;
    margin-bottom: 8px;
    display: block;
  }
  .about-text h2 {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .about-text p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .about-text .btn-gold {
    font-size: 14px;
    padding: 10px 24px;
  }
  .about-visual {
    min-width: 0 !important;
    width: 100%;
    padding: 0 10px;
    display: block;
  }
  .flipbook-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 0;
    padding-bottom: 65%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
  }
  .flipbook-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .flipbook-hint {
    font-size: 12px;
    margin-top: 12px;
    color: #888;
    text-align: center;
  }
}