/* =========================================================
   CONTACT SECTION 01
   ========================================================= */

.contact-sec-1 {
  position: relative;

  width: 100%;

  background: #f4efe3;

  overflow: hidden;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.contact-sec-1-container {
  max-width: 1500px;
  width: 90%;
  margin: auto;

  padding: 150px 0 120px;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */

.contact-sec-1-header {
  display: flex;
  align-items: center;

  gap: 28px;

  margin-bottom: 100px;
}

.contact-sec-1-label {
  color: #927342;

  font-family: "Inter", sans-serif;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.28em;

  text-transform: uppercase;
}

/* =========================================================
   MAIN GRID
   ========================================================= */

.contact-sec-1-grid {
  display: grid;

  grid-template-columns: minmax(400px, 0.85fr) minmax(500px, 1.15fr);

  gap: clamp(80px, 10vw, 170px);

  align-items: start;
}

/* =========================================================
   INFORMATION
   ========================================================= */

.contact-sec-1-info {
  max-width: 600px;
}

/* Kicker */

.contact-sec-1-kicker {
  display: block;

  margin-bottom: 20px;

  color: #b28a32;

  font-family: "Inter", sans-serif;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.3em;

  text-transform: uppercase;
}

/* =========================================================
   TITLE
   ========================================================= */

.contact-sec-1-title {
  margin: 0;

  color: #7b4e22;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(70px, 8vw, 115px);

  font-weight: 400;

  line-height: 0.82;

  letter-spacing: -0.045em;
}

.contact-sec-1-title span {
  display: block;

  color: #bd9136;

  margin-bottom: 32px;

  font-style: italic;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.contact-sec-1-description {
  max-width: 530px;

  margin: 45px 0 55px;

  color: #6f6253;

  font-family: "Inter", sans-serif;

  font-size: 15px;
  font-weight: 300;

  line-height: 1.95;
}

/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-sec-1-detail {
  display: flex;
  flex-direction: column;

  gap: 8px;

  padding: 22px 0;

  border-top: 1px solid rgba(178, 138, 50, 0.25);
}

.contact-sec-1-detail-label {
  color: #9a7a43;

  font-family: "Inter", sans-serif;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}

.contact-sec-1-detail-value {
  color: #51483d;

  font-family: "Inter", sans-serif;

  font-size: 14px;
  font-weight: 400;

  line-height: 1.7;

  text-decoration: none;

  transition: color 0.25s ease;
}

a.contact-sec-1-detail-value:hover {
  color: #a27728;
}

address.contact-sec-1-detail-value {
  font-style: normal;
}

/* =========================================================
   GST
   ========================================================= */

.contact-sec-1-gst {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 15px;

  margin-top: 10px;
}

.contact-sec-1-gst-label {
  color: #9a7a43;

  font-family: "Inter", sans-serif;

  font-size: 8px;
  font-weight: 500;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.contact-sec-1-gst-value {
  color: #766a5c;

  font-family: "Inter", sans-serif;

  font-size: 10px;

  letter-spacing: 0.08em;
}

/* =========================================================
   FORM WRAPPER
   ========================================================= */

.contact-sec-1-form-wrap {
  padding: 45px;

  background: #1b1c1a;

  border: 1px solid rgba(208, 177, 106, 0.12);
}

/* Form Header */

.contact-sec-1-form-header {
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 50px;
}

.contact-sec-1-form-label {
  color: #a69c8c;

  font-family: "Inter", sans-serif;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.25em;

  text-transform: uppercase;
}

/* =========================================================
   FORM
   ========================================================= */

.contact-sec-1-form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px 25px;
}

/* =========================================================
   FIELD
   ========================================================= */

.contact-sec-1-field {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.contact-sec-1-field-label {
  color: #b4aa9a;

  font-family: "Inter", sans-serif;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.contact-sec-1-field-input {
  width: 100%;

  box-sizing: border-box;

  padding: 14px 0;

  color: #f4efe3;

  font-family: "Inter", sans-serif;

  font-size: 13px;
  font-weight: 300;

  background: transparent;

  border: 0;

  border-bottom: 1px solid rgba(208, 177, 106, 0.3);

  border-radius: 0;

  outline: none;

  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.contact-sec-1-field-input::placeholder {
  color: #69645c;
}

.contact-sec-1-field-input:focus {
  border-bottom-color: #d0b16a;
}

/* Select */

.contact-sec-1-field-select {
  cursor: pointer;

  appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #a28a61 50%),
    linear-gradient(135deg, #a28a61 50%, transparent 50%);

  background-position:
    calc(100% - 8px) 20px,
    calc(100% - 3px) 20px;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

.contact-sec-1-field-select option {
  color: #222;

  background: #f4efe3;
}

/* =========================================================
   MESSAGE
   ========================================================= */

.contact-sec-1-field-message {
  grid-column: 1 / -1;
}

.contact-sec-1-field-textarea {
  resize: vertical;

  min-height: 120px;

  line-height: 1.7;
}

/* =========================================================
   SUBMIT
   ========================================================= */

.contact-sec-1-submit {
  grid-column: 1 / -1;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  margin-top: 15px;

  padding: 17px 20px;

  color: #1b1c1a;

  font-family: "Inter", sans-serif;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  background: #d0b16a;

  border: 1px solid #d0b16a;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.contact-sec-1-submit:hover {
  color: #f4efe3;

  background: transparent;

  border-color: #d0b16a;
}

.contact-sec-1-submit-arrow {
  font-size: 20px;
  font-weight: 300;

  line-height: 1;

  transition: transform 0.3s ease;
}

.contact-sec-1-submit:hover .contact-sec-1-submit-arrow {
  transform: translateX(5px);
}

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

.contact-sec-1-footer {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 25px;

  margin-top: 120px;
}

.contact-sec-1-footer-line {
  width: 100px;
  height: 1px;

  background: rgba(178, 138, 50, 0.45);
}

.contact-sec-1-footer-text {
  color: #9a7a43;

  font-family: "Inter", sans-serif;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.25em;

  text-transform: uppercase;

  white-space: nowrap;
}

/* =========================================================
   DECORATIVE BACKGROUND
   ========================================================= */

.contact-sec-1::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -300px;
  top: 35%;

  border: 1px solid rgba(178, 138, 50, 0.08);

  border-radius: 50%;

  pointer-events: none;
}

.contact-sec-1::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  left: -170px;
  bottom: -150px;

  border: 1px solid rgba(178, 138, 50, 0.07);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .contact-sec-1-container {
    padding: 120px 0 100px;
  }

  .contact-sec-1-grid {
    gap: 70px;
  }

  .contact-sec-1-form-wrap {
    padding: 35px;
  }

  .contact-sec-1-title {
    font-size: clamp(40px, 6vw, 60px);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {
  .contact-sec-1-container {
    padding: 100px 0 85px;
  }

  .contact-sec-1-header {
    margin-bottom: 70px;
  }

  .contact-sec-1-grid {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .contact-sec-1-info {
    max-width: 700px;
  }

  .contact-sec-1-form-wrap {
    max-width: 750px;
  }

  .contact-sec-1-footer {
    margin-top: 90px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .contact-sec-1-container {
    width: 88%;

    padding: 80px 0 70px;
  }

  .contact-sec-1-header {
    gap: 18px;

    margin-bottom: 55px;
  }

  .contact-sec-1-label {
    font-size: 8px;

    letter-spacing: 0.2em;
  }

  .contact-sec-1-grid {
    gap: 55px;
  }

  .contact-sec-1-kicker {
    margin-bottom: 15px;

    font-size: 8px;

    letter-spacing: 0.22em;
  }

  .contact-sec-1-title {
    font-size: clamp(52px, 16vw, 72px);

    line-height: 0.88;
  }

  .contact-sec-1-description {
    margin: 35px 0 40px;

    font-size: 13px;

    line-height: 1.85;
  }

  .contact-sec-1-detail {
    padding: 18px 0;
  }

  .contact-sec-1-detail-value {
    font-size: 13px;
  }

  .contact-sec-1-form-wrap {
    padding: 28px 22px;
  }

  .contact-sec-1-form-header {
    margin-bottom: 35px;
  }

  .contact-sec-1-form {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .contact-sec-1-field-message {
    grid-column: auto;
  }

  .contact-sec-1-submit {
    grid-column: auto;

    margin-top: 8px;
  }

  .contact-sec-1-footer {
    gap: 12px;

    margin-top: 65px;
  }

  .contact-sec-1-footer-line {
    width: 50px;
  }

  .contact-sec-1-footer-text {
    font-size: 7px;

    letter-spacing: 0.16em;
  }
}








/* =========================================================
   CONTACT SECTION 02
   ========================================================= */

.contact-sec-2 {
  position: relative;

  width: 100%;

  background: #171817;

  color: #f4efe3;

  overflow: hidden;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.contact-sec-2-container {
  max-width: 1500px;
  width: 90%;
  margin: auto;

  padding: 140px 0 130px;
}

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

.contact-sec-2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 80px;

  margin-bottom: 70px;
}

.contact-sec-2-heading-wrap {
  flex-shrink: 0;
}

.contact-sec-2-label {
  display: block;

  margin-bottom: 18px;

  color: #d0b16a;

  font-family: "Inter", sans-serif;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.3em;

  text-transform: uppercase;
}

.contact-sec-2-title {
  margin: 0;

  color: #f4efe3;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(70px, 8vw, 115px);

  font-weight: 400;

  line-height: 0.8;

  letter-spacing: -0.045em;
}

.contact-sec-2-description {
  max-width: 500px;

  margin: 0;

  color: #9f988d;

  font-family: "Inter", sans-serif;

  font-size: 14px;
  font-weight: 300;

  line-height: 1.9;
}

/* =========================================================
   MAP
   ========================================================= */

.contact-sec-2-map-wrap {
  position: relative;

  width: 100%;

  height: 600px;

  overflow: hidden;

  background: #242522;

  border: 1px solid rgba(208, 177, 106, 0.15);
}

/* Google Map */

.contact-sec-2-map {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;

  filter: grayscale(100%) contrast(0.9);

  opacity: 0.82;
}

/* =========================================================
   LOCATION CARD
   ========================================================= */

.contact-sec-2-location-card {
  position: absolute;

  left: 40px;
  bottom: 40px;

  width: min(380px, calc(100% - 80px));

  padding: 35px;

  background: rgba(23, 24, 23, 0.96);

  border: 1px solid rgba(208, 177, 106, 0.25);

  backdrop-filter: blur(10px);
}

/* Label */

.contact-sec-2-location-label {
  display: block;

  margin-bottom: 16px;

  color: #d0b16a;

  font-family: "Inter", sans-serif;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.25em;

  text-transform: uppercase;
}

/* Title */

.contact-sec-2-location-title {
  margin: 0;

  color: #f4efe3;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 38px;
  font-weight: 400;

  line-height: 1;
}

/* Address */

.contact-sec-2-location-address {
  margin: 22px 0 25px;

  color: #a8a095;

  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-weight: 300;

  line-height: 1.8;
}

/* Directions */

.contact-sec-2-location-link {
  display: inline-flex;
  align-items: center;

  gap: 15px;

  color: #d0b16a;

  font-family: "Inter", sans-serif;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  text-decoration: none;

  transition: color 0.25s ease;
}

.contact-sec-2-location-link span {
  font-size: 18px;
  font-weight: 300;

  transition: transform 0.25s ease;
}

.contact-sec-2-location-link:hover {
  color: #f0d38e;
}

.contact-sec-2-location-link:hover span {
  transform: translateX(5px);
}

/* =========================================================
   DECORATIVE LINE
   ========================================================= */

.contact-sec-2-map-wrap::after {
  content: "";

  position: absolute;

  top: 30px;
  right: 30px;

  width: 70px;
  height: 70px;

  border-top: 1px solid rgba(208, 177, 106, 0.45);
  border-right: 1px solid rgba(208, 177, 106, 0.45);

  pointer-events: none;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {
  .contact-sec-2-container {
    padding: 100px 0 90px;
  }

  .contact-sec-2-header {
    flex-direction: column;
    align-items: flex-start;

    gap: 30px;

    margin-bottom: 50px;
  }

  .contact-sec-2-title {
    font-size: clamp(60px, 13vw, 90px);
  }

  .contact-sec-2-description {
    max-width: 600px;
  }

  .contact-sec-2-map-wrap {
    height: 520px;
  }

  .contact-sec-2-location-card {
    display: none;
    left: 25px;
    bottom: 25px;

    width: min(360px, calc(100% - 50px));

    padding: 28px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .contact-sec-2-container {
    width: 88%;

    padding: 80px 0 70px;
  }

  .contact-sec-2-label {
    margin-bottom: 14px;

    font-size: 8px;

    letter-spacing: 0.22em;
  }

  .contact-sec-2-title {
    font-size: clamp(52px, 16vw, 72px);
  }

  .contact-sec-2-description {
    font-size: 13px;

    line-height: 1.85;
  }

  .contact-sec-2-map-wrap {
    height: 500px;
  }

  .contact-sec-2-location-card {
    left: 15px;
    bottom: 15px;

    width: calc(100% - 30px);

    padding: 24px;
  }

  .contact-sec-2-location-label {
    font-size: 8px;
  }

  .contact-sec-2-location-title {
    font-size: 31px;
  }

  .contact-sec-2-location-address {
    margin: 18px 0 22px;

    font-size: 11px;
  }

  .contact-sec-2-map-wrap::after {
    top: 15px;
    right: 15px;

    width: 45px;
    height: 45px;
  }
}
