* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4f0e8;
  font-family: Arial, sans-serif;
  color: white;
}

.project-visual {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px;
}

.featured-image {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  border-radius: 10px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.88)
  );
}

.featured-text {
  position: absolute;
  left: 60px;
  bottom: 55px;
  z-index: 2;
  max-width: 850px;
}

.featured-text span {
  color: #d6b56d;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
}

.featured-text h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 400;
  margin: 18px 0 25px;
}

.featured-text p {
  font-size: 21px;
  line-height: 1.45;
  margin-bottom: 22px;
  color: #f7f2ea;
}

.gallery-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* LOCATION & CONTACT */

.location-contact {
  min-height: 90vh;
  background:
    linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.75)
    ),
    url("images/location-bg.jpg");
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
}

.contact-overlay {
  width: 100%;
  max-width: 950px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 50px;
  border-radius: 18px;
  border: 1px solid rgba(214,181,109,0.25);
  text-align: center;
}

.footer-logo {
  width: 110px;
  height: auto;
  display: block;
  margin: 0 auto 25px auto;
}

.footer-label {
  color: #d6b56d;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
}

.location-contact h2 {
  font-size: 60px;
  line-height: 1.1;
  margin: 30px 0;
}

.location-contact p {
  font-size: 22px;
  color: #e4ddcf;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 50px;
}

.contact-details p {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.contact-links a {
  color: #d6b56d;
  background: rgba(0,0,0,0.45);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(214,181,109,0.65);
  border-radius: 40px;
  padding: 14px 20px;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-links a:hover {
  color: #111;
  background: #d6b56d;
  border-color: #d6b56d;
}

.watermark-logo {
  width: 360px;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.final-text {
  position: absolute;
  left: 70px;
  bottom: 30px;
}

.final-text h1 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 30px;
}

.final-text p {
  font-size: 24px;
  line-height: 1.5;
}



/* MOBILE */

@media (max-width: 800px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .project-visual {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .featured-image {
    width: 100%;
    height: 720px;
    border-radius: 0;
  }

  .featured-text {
    left: 22px;
    right: 22px;
    bottom: 35px;
  }

  .featured-text h1 {
    font-size: 38px;
  }

  .featured-text p {
    font-size: 17px;
  }

  .gallery-row {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .gallery-row img {
    height: 260px;
  }

  .location-contact {
    width: 100%;
    min-height: auto;
    padding: 45px 12px;
  }

  .contact-overlay {
    width: 100%;
    max-width: 100%;
    padding: 25px 12px;
    border-radius: 12px;
  }

  .footer-logo {
    width: 80px;
  }

  .footer-label {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .location-contact h2 {
    font-size: 30px;
    line-height: 1.1;
    word-break: break-word;
  }

  .location-contact p,
  .contact-details p {
    font-size: 15px;
    line-height: 1.4;
  }

  .contact-details {
    margin-top: 30px;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 14px;
    margin-top: 25px;
  }

  .contact-links a {
    width: 100%;
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 1px;
    padding: 13px 8px;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .watermark-logo {
    width: 210px;
    top: 25px;
  }

  .final-text {
    left: 20px;
    right: 20px;
    bottom: 25px;
  }

  .final-text h1 {
    font-size: 38px;
  }

  .final-text p {
    font-size: 16px;
  }
  .contact-section {
  width: 100%;
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.75)),
    url("images/location-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 25px;
}

.contact-box {
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.contact-logo {
  width: 320px;
  max-width: 100%;
  margin-bottom: 70px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.contact-links a {
  display: block;
  width: 100%;
  color: #d6b56d;
  background: rgba(0,0,0,0.45);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(214,181,109,0.65);
  border-radius: 50px;
  padding: 22px 28px;
  text-align: center;
  line-height: 1.4;
  word-break: break-word;
}

@media (max-width: 800px) {
  .contact-section {
    min-height: 100vh;
    padding: 60px 18px;
  }

  .contact-logo {
    width: 260px;
    margin-bottom: 60px;
  }

  .contact-links a {
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 18px 12px;
  }
}
}