.artistern-contact-page {
  --artistern-contact-bg: #fff;
  --artistern-contact-surface: #fafafa;
  --artistern-contact-border: #e6e6e6;
  --artistern-contact-text: #1d1d1d;
  --artistern-contact-muted: #777;
  --artistern-contact-gold: #c8a45c;
  overflow: hidden;
  background: var(--artistern-contact-bg);
  color: var(--artistern-contact-text);
  font-size: 14px;
  line-height: 1.5;
}

.artistern-contact-page,
.artistern-contact-page * {
  box-sizing: border-box;
}

.artistern-contact-page h1,
.artistern-contact-page h2,
.artistern-contact-page p {
  margin-top: 0;
}

.artistern-contact-head {
  padding-top: 64px;
}

.artistern-contact-head-copy {
  max-width: 720px;
}

.artistern-contact-eyebrow {
  margin-bottom: 16px;
  color: var(--artistern-contact-gold);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.artistern-contact-head h1 {
  margin-bottom: 16px;
  color: var(--artistern-contact-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

.artistern-contact-lede {
  margin-bottom: 0;
  color: #3a3a3a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.75;
}

.artistern-contact-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  padding-top: 56px;
}

.artistern-contact-form-side,
.artistern-contact-routes {
  flex: 1 1 46%;
  min-width: 0;
}

.artistern-contact-form-side h2,
.artistern-contact-connect-text h2 {
  margin-bottom: 14px;
  color: var(--artistern-contact-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.artistern-contact-form-side form {
  max-width: none;
  margin: 22px 0 0;
}

.artistern-contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.artistern-contact-field {
  display: block;
  margin-bottom: 18px;
  color: var(--artistern-contact-text);
  font-size: 13px;
  font-weight: 500;
}

.artistern-contact-optional {
  color: var(--artistern-contact-muted);
  font-weight: 400;
}

.artistern-contact-field input,
.artistern-contact-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin-top: 7px;
  padding: 13px 15px;
  border: 1px solid var(--artistern-contact-border);
  border-radius: 0;
  outline: none;
  background: var(--artistern-contact-surface);
  color: var(--artistern-contact-text);
  font: inherit;
  font-size: 14px;
  box-shadow: none;
  appearance: none;
  transition: border-color .15s ease, background .15s ease;
}

.artistern-contact-field input {
  height: 48px;
}

.artistern-contact-field textarea {
  min-height: 138px;
  resize: vertical;
}

.artistern-contact-field input:focus,
.artistern-contact-field textarea:focus {
  border-color: var(--artistern-contact-gold);
  background: #fff;
  box-shadow: none;
}

.artistern-contact-send-button,
.artistern-contact-send-button:hover,
.artistern-contact-send-button:focus {
  min-height: 49px;
  padding: 13px 34px;
  border: 1px solid var(--artistern-contact-text);
  border-radius: 0;
  background: var(--artistern-contact-text);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  box-shadow: none;
}

.artistern-contact-send-button:hover,
.artistern-contact-send-button:focus {
  background: #000;
}

.artistern-contact-send-button:disabled {
  opacity: .6;
  cursor: wait;
}

.artistern-contact-form-note {
  margin: 14px 0 0;
  color: var(--artistern-contact-muted);
  font-size: 11.5px;
}

.artistern-contact-form-side .artistern-form-status {
  min-height: 22px;
  margin: 8px 0 0;
}

.artistern-contact-routes-label {
  margin: 6px 0 18px;
  color: var(--artistern-contact-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.artistern-contact-route,
.artistern-contact-route:visited {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 2px 16px;
  align-items: baseline;
  padding: 20px 4px;
  border-top: 1px solid var(--artistern-contact-border);
  color: var(--artistern-contact-text);
  text-decoration: none;
  transition: padding-left .2s ease;
}

.artistern-contact-route:last-of-type {
  border-bottom: 1px solid var(--artistern-contact-border);
}

.artistern-contact-route:hover,
.artistern-contact-route:focus {
  padding-left: 10px;
  color: var(--artistern-contact-text);
}

.artistern-contact-route-name {
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.3;
}

.artistern-contact-route-description {
  grid-column: 1;
  color: var(--artistern-contact-muted);
  font-size: 13px;
}

.artistern-contact-route-email {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--artistern-contact-text);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease;
}

.artistern-contact-route:hover .artistern-contact-route-email,
.artistern-contact-route:focus .artistern-contact-route-email {
  color: #8a6a28;
}

.artistern-contact-route-arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 6px;
  color: var(--artistern-contact-gold);
  transition: transform .2s ease;
}

.artistern-contact-route:hover .artistern-contact-route-arrow,
.artistern-contact-route:focus .artistern-contact-route-arrow {
  transform: translateX(4px);
}

.artistern-contact-connect {
  margin-top: 84px;
  border-top: 1px solid var(--artistern-contact-border);
  border-bottom: 1px solid var(--artistern-contact-border);
  background: var(--artistern-contact-surface);
}

.artistern-contact-connect-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 44px;
}

.artistern-contact-connect-text h2 {
  margin-bottom: 4px;
}

.artistern-contact-connect-text p {
  margin-bottom: 0;
  color: var(--artistern-contact-muted);
  font-size: 13.5px;
}

.artistern-contact-connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.artistern-contact-whatsapp-button,
.artistern-contact-whatsapp-button:visited,
.artistern-contact-whatsapp-button:hover,
.artistern-contact-whatsapp-button:focus {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid var(--artistern-contact-border);
  border-radius: 0;
  background: #fff;
  color: var(--artistern-contact-text);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

.artistern-contact-whatsapp-button:hover,
.artistern-contact-whatsapp-button:focus {
  border-color: var(--artistern-contact-text);
  background: var(--artistern-contact-text);
  color: #fff;
}

.artistern-contact-whatsapp-icon {
  width: 18px;
  height: 18px;
}

.artistern-contact-whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.artistern-contact-socials {
  display: flex;
  gap: 6px;
}

.artistern-contact-social,
.artistern-contact-social:visited {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--artistern-contact-border);
  border-radius: 0;
  background: #fff;
  color: var(--artistern-contact-text);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.artistern-contact-social:hover,
.artistern-contact-social:focus {
  border-color: var(--artistern-contact-text);
  background: var(--artistern-contact-text);
  color: #fff;
}

.artistern-contact-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .artistern-contact-head {
    padding-top: 40px;
  }

  .artistern-contact-head h1 {
    font-size: 44px;
  }

  .artistern-contact-grid {
    flex-direction: column;
    gap: 44px;
    padding-top: 40px;
  }

  .artistern-contact-form-side,
  .artistern-contact-routes {
    width: 100%;
  }

  .artistern-contact-field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .artistern-contact-connect-actions {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .artistern-contact-head h1 {
    font-size: 36px;
  }

  .artistern-contact-route {
    grid-template-columns: minmax(0, 1fr);
  }

  .artistern-contact-route-email {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
  }

  .artistern-contact-connect-actions {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .artistern-contact-page *,
  .artistern-contact-page *::before,
  .artistern-contact-page *::after {
    transition: none !important;
    animation: none !important;
  }
}
