/* Landmark Find the Studio + message form */
.landmark-contact {
  background: #ffffff;
  color: #0d0d0d;
  padding: clamp(64px, 8vw, 100px) 0;
}

.landmark-contact__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px 48px;
  align-items: stretch;
}

.landmark-contact__eyebrow {
  margin: 0 0 16px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c6a062;
}

.landmark-contact__title {
  margin: 0 0 36px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  color: #0d0d0d;
}

.landmark-contact__title em {
  font-style: italic;
  color: #c6a062;
  font-weight: 500;
}

.landmark-contact__rows {
  display: flex;
  flex-direction: column;
}

.landmark-contact__row {
  padding: 18px 0;
  border-top: 1px solid rgba(198, 160, 98, 0.35);
}

.landmark-contact__row:last-child {
  border-bottom: 1px solid rgba(198, 160, 98, 0.35);
}

.landmark-contact__label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #c6a062;
}

.landmark-contact__value {
  display: block;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.55;
  color: #0d0d0d;
  text-decoration: none;
}

a.landmark-contact__value:hover {
  color: #c6a062;
}

.landmark-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.landmark-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.landmark-contact__btn--solid {
  background: #c6a062;
  color: #0d0d0d;
  border: 1px solid #c6a062;
}

.landmark-contact__btn--solid:hover {
  background: #d4b078;
  border-color: #d4b078;
  color: #0d0d0d;
}

.landmark-contact__btn--ghost {
  background: transparent;
  color: #c6a062;
  border: 1px solid rgba(198, 160, 98, 0.7);
}

.landmark-contact__btn--ghost:hover {
  background: rgba(198, 160, 98, 0.12);
  color: #c6a062;
}

.landmark-contact__form-wrap {
  background: #0d0d0d;
  color: #0d0d0d;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(198, 160, 98, 0.4);
}

.landmark-contact__form-eyebrow {
  margin: 0 0 10px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #c6a062;
}

.landmark-contact__form-title {
  margin: 0 0 28px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}

.landmark-contact__form-title span {
  color: #c6a062;
}

.landmark-contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.landmark-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landmark-contact__field--full {
  grid-column: 1 / -1;
}

.landmark-contact__field span {
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(247, 243, 243, 0.5);
}

.landmark-contact__field span i {
  color: #c6a062;
  font-style: normal;
}

.landmark-contact__field input,
.landmark-contact__field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(198, 160, 98, 0.4);
  border-radius: 0;
  background: transparent;
  padding: 8px 0 10px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 15px;
  color: #fff;
  outline: none;
  resize: vertical;
}

.landmark-contact__field input::placeholder,
.landmark-contact__field textarea::placeholder {
  color: rgba(238, 229, 229, 0.38);
}

.landmark-contact__field input:focus,
.landmark-contact__field textarea:focus {
  border-bottom-color: #c6a062;
}

.landmark-contact__submit {
  margin-top: 28px;
  width: 100%;
  min-height: 52px;
  border: 0;
  background: #c6a062;
  color: #0d0d0d;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.landmark-contact__submit:hover {
  background: #d4b078;
  color: #0d0d0d;
}

@media (max-width: 900px) {
  .landmark-contact__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .landmark-contact__fields {
    grid-template-columns: 1fr;
  }
}

/* ——— Standalone Contact page ——— */
.landmark-contact-page {
  background: #0d0d0d;
  color: #f5f0ea;
}

.landmark-contact-page a {
  color: inherit;
}

.lc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.55);
}

.lc-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #c6a062;
}

.lc-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(480px, 70vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #e8e6e2;
}

.lc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../../../../landmark/Frame%20238.png") center center / cover no-repeat;
}

.lc-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 42%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

.lc-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  max-width: 560px;
  margin-left: max(24px, calc((100% - 1180px) / 2));
  padding: 140px 0 72px;
}

.lc-hero__title {
  margin: 0 0 18px;
  max-width: 520px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: clamp(42px, 6.5vw, 74px);
  font-weight: 600;
  line-height: 1.05;
  color: #0d0d0d;
}

.lc-hero__title span {
  color: #c6a062;
}

.lc-hero__lead {
  margin: 0;
  max-width: 460px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(13, 13, 13, 0.72);
}

.landmark-contact-page .landmark-contact {
  padding-top: clamp(56px, 7vw, 88px);
}

.lc-visit {
  padding: 0 0 clamp(72px, 9vw, 110px);
}

.lc-visit__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px 48px;
  align-items: stretch;
}

.lc-visit__title {
  margin: 0 0 18px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
}

.lc-visit__title em {
  font-style: italic;
  color: #c6a062;
  font-weight: 500;
}

.lc-visit__text {
  margin: 0 0 24px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 234, 0.72);
}

.lc-visit__points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.lc-visit__points li {
  padding: 14px 0;
  border-top: 1px solid rgba(198, 160, 98, 0.24);
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 240, 234, 0.82);
}

.lc-visit__points li:last-child {
  border-bottom: 1px solid rgba(198, 160, 98, 0.24);
}

.lc-visit__points strong {
  color: #c6a062;
  font-weight: 600;
  margin-right: 6px;
}

.lc-visit__points a {
  color: #f5f0ea;
  text-decoration: none;
}

.lc-visit__points a:hover {
  color: #c6a062;
}

.lc-visit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  background: #c6a062;
  color: #0d0d0d !important;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.lc-visit__btn:hover {
  background: #d4b078;
}

.lc-visit__map {
  min-height: 420px;
  border: 1px solid rgba(198, 160, 98, 0.28);
  background: #111;
  overflow: hidden;
}

.lc-visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

@media (max-width: 900px) {
  .lc-visit__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .lc-hero__inner {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 120px 0 56px;
  }

  .lc-hero__bg {
    background-position: 68% center;
  }

  .lc-visit__map,
  .lc-visit__map iframe {
    min-height: 280px;
  }
}
