/* ===============================
   CONTACT — INTRO
================================ */

.contact-intro {
  padding: 180px 8% 120px;
  background: #f8f7f4;
}

.contact-intro-inner {
  max-width: 900px;
}

/* Label */
.contact-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  color: #777;
  margin-bottom: 32px;
}

/* Title */
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 32px;
}

/* Subtext */
.contact-subtext {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-intro {
    padding: 140px 6% 100px;
  }
}


/* ===============================
   CONTACT — DETAILS
================================ */

.contact-details {
  padding: 120px 8%;
  background: #ffffff;
}

.contact-details-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 64px;
}

/* Block */
.contact-block {
  max-width: 420px;
}

/* Label */
.contact-block-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Text */
.contact-block-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
}

.contact-block-text a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  transition: border-color 0.3s ease;
}

.contact-block-text a:hover {
  border-color: rgba(0,0,0,0.6);
}

/* Mobile */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}


/* ===============================
   CONTACT — FORM
================================ */

.contact-form {
  padding: 140px 8%;
  background: #f8f7f4;
}

.contact-form-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.contact-form-header {
  margin-bottom: 80px;
}

.contact-label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.contact-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

/* Form */
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Rows */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding: 14px 4px;
  font-size: 15px;
  background: transparent;
  color: #1a1a1a;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
}

/* Button */
.contact-submit {
  align-self: flex-start;
  margin-top: 24px;
  padding: 14px 42px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-submit:hover {
  background: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 120px 6%;
  }
}

/* ===============================
   CONTACT — LOCATION
================================ */

.contact-location {
  padding: 140px 8%;
  background: #ffffff;
}

.contact-location-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Info */
.location-info {
  max-width: 480px;
}

.location-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  margin: 24px 0 32px;
  color: #1a1a1a;
}

.location-address {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

.location-contact a {
  display: inline-block;
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 12px;
}

.location-contact a:hover {
  opacity: 0.6;
}

/* Map */
.location-map {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 2px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.05);
}

/* Mobile */
@media (max-width: 900px) {
  .contact-location-inner {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 360px;
  }

  .contact-location {
    padding: 120px 6%;
  }
}


/* ===============================
   CONTACT — FINAL CTA
================================ */

.contact-closing {
  padding: 160px 8%;
  background: #f8f7f4;
  text-align: center;
}

.contact-closing-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.contact-closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin: 32px 0;
  color: #f8f7f4;
}

/* Text */
.contact-closing-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 620px;
  margin: 0 auto 56px;
}

/* Actions */
.contact-closing-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.closing-btn {
  padding: 14px 40px;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Primary */
.closing-btn.primary {
  background: #1a1a1a;
  color: #ffffff;
}

.closing-btn.primary:hover {
  background: #ffffff;
  color: #1a1a1a;;
}

/* Secondary */
.closing-btn.secondary {
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}

.closing-btn.secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-closing {
    padding: 120px 6%;
  }
}


/* =========================
   CONTACT — LUXURY POLISH
========================= */

.contact-intro {
  padding: 180px 8% 140px;
  background: #f8f7f4;
}

.contact-intro-inner {
  max-width: 1100px;
}

.contact-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  color: #777;
  margin-bottom: 32px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.contact-subtext {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* DETAILS */
.contact-details {
  padding: 140px 8%;
  background: #ffffff;
}

.contact-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 64px;
}

.contact-block-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  display: block;
  margin-bottom: 12px;
}

.contact-block-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.contact-block-text a {
  color: inherit;
  text-decoration: none;
}

.contact-block-text a:hover {
  color: #1a1a1a;
}

/* FORM */
.contact-form {
  padding: 160px 8%;
  background: #f8f7f4;
}

.contact-form-inner {
  max-width: 760px;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-row textarea {
  grid-column: span 2;
}

.contact-form-fields input,
.contact-form-fields textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  border: 1px solid #ddd;
  background: #fff;
}

.contact-submit {
  margin-top: 24px;
  padding: 14px 36px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  letter-spacing: 2px;
  cursor: pointer;
}

/* MAP */
.contact-location {
  padding: 140px 8%;
  background: #ffffff;
}

.contact-location-inner {
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* FINAL CTA */
.contact-closing {
  padding: 160px 8%;
  background: #121212;
  color: #e8e5df;
  text-align: center;
}

.contact-closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 24px;
}

.contact-closing-text {
  color: #bfbdb8;
  margin-bottom: 48px;
}

.closing-btn {
  display: inline-block;
  margin: 0 12px;
  padding: 14px 36px;
  text-decoration: none;
  letter-spacing: 2px;
}

.closing-btn.primary {
  background: #ffffff;
  color: #121212;
}

.closing-btn.secondary {
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid,
  .contact-location-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}